summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2015-05-12 01:32:11 -0400
committerAustin Ziegler <austin@zieglers.ca>2015-05-25 10:22:53 -0400
commit98a75c089dd1eed71022644af0be3beb394d3052 (patch)
treefb248f4389cd2e1d03f6b2d5202b93f55e466909
parent31b101475128ef22043f454132f67197ecb5da82 (diff)
downloadmime-types-98a75c089dd1eed71022644af0be3beb394d3052.tar.gz
mime-types 2.6 release ready code.
- Extend documentation. - Add a logger and logger configuration. - Add more tests to Travis. - Update MIME registry.
-rw-r--r--.gitignore1
-rw-r--r--.travis.yml10
-rw-r--r--Contributing.rdoc90
-rw-r--r--History-Types.rdoc11
-rw-r--r--History.rdoc32
-rw-r--r--Manifest.txt19
-rw-r--r--README.rdoc203
-rw-r--r--Rakefile63
-rw-r--r--data/mime-types.json2
-rw-r--r--data/mime.content_type.column1955
-rw-r--r--data/mime.docs.column1
-rw-r--r--data/mime.encoding.column1
-rw-r--r--data/mime.friendly.column1
-rw-r--r--data/mime.obsolete.column1
-rw-r--r--data/mime.references.column11
-rw-r--r--data/mime.registered.column1
-rw-r--r--data/mime.signature.column1
-rw-r--r--data/mime.system.column1
-rw-r--r--data/mime.use_instead.column1
-rw-r--r--data/mime.xrefs.column21
-rw-r--r--lib/mime/type.rb311
-rw-r--r--lib/mime/types.rb45
-rw-r--r--lib/mime/types/cache.rb76
-rw-r--r--lib/mime/types/columnar.rb19
-rw-r--r--lib/mime/types/deprecations.rb76
-rw-r--r--lib/mime/types/loader.rb16
-rw-r--r--lib/mime/types/logger.rb35
-rw-r--r--mime-types.gemspec13
-rw-r--r--support/apache_mime_types.rb9
-rw-r--r--support/benchmarks/load.rb16
-rw-r--r--support/benchmarks/load_allocations.rb12
-rw-r--r--support/benchmarks/object_counts.rb4
-rw-r--r--support/convert.rb24
-rw-r--r--support/convert/columnar.rb2
-rw-r--r--support/iana_registry.rb26
-rw-r--r--test/minitest_helper.rb9
-rw-r--r--test/test_mime_type.rb62
-rw-r--r--test/test_mime_types.rb22
-rw-r--r--test/test_mime_types_class.rb28
-rw-r--r--test/test_mime_types_loader.rb6
-rw-r--r--type-lists/application.yaml53
-rw-r--r--type-lists/audio.yaml4
42 files changed, 1831 insertions, 1463 deletions
diff --git a/.gitignore b/.gitignore
index 051f986..597a659 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,4 @@ html
pkg
publish
test/cache.tst
+tmp/
diff --git a/.travis.yml b/.travis.yml
index f9369ca..f83fe83 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,18 +1,24 @@
---
language: ruby
rvm:
- - 2.1.0
+ - 2.2.2
+ - 2.1.6
- 2.0.0
- 1.9.3
- - ruby-head
+ - jruby-1.7
+ - jruby-9.0.0.0.pre2
- jruby-19mode
- jruby-head
+ - ruby-head
+ - ruby-head-clang
- rbx-2
matrix:
allow_failures:
- rvm: rbx-2
- rvm: jruby-head
+ - rvm: jruby-9.0.0.0.pre2
- rvm: ruby-head
+ - rvm: ruby-head-clang
gemfile:
- Gemfile
before_script:
diff --git a/Contributing.rdoc b/Contributing.rdoc
index 1cb2663..c88632c 100644
--- a/Contributing.rdoc
+++ b/Contributing.rdoc
@@ -3,7 +3,7 @@
I value any contribution to mime-types you can provide: a bug report, a feature
request, or code contributions.
-As mime-types is a mature codebase, there are a few guidelines:
+There are a few guidelines for contributing to mime-types:
* Code changes *will* *not* be accepted without tests. The test suite is
written with {Minitest}[https://github.com/seattlerb/minitest].
@@ -18,9 +18,12 @@ As mime-types is a mature codebase, there are a few guidelines:
=== Adding or Modifying MIME Types
-The mime-types registry is loaded from a JSON file in +data+, but this file is
-not considered editable and cannot be compared in a pull request. New or
-modified MIME types should be edited in the appropriate YAML file under
+The mime-types registry is loaded from encoded files in +data+. These are not
+editable and cannot be compared meaningfully in a pull request; pull requests
+that include changes to these files will require amendment to revert these
+files.
+
+New or modified MIME types should be edited in the appropriate YAML file under
+type-lists+. The format is as shown below for the +application/xml+ MIME type
in +type-lists/application.yml+.
@@ -46,7 +49,20 @@ to verify that the JSON matches the YAML changes, which is why it is not
necessary to convert for the pull request.
If you are making a change for a private fork, use <tt>rake
-convert:yaml:json</tt> to convert the YAML to JSON.
+convert:yaml:json</tt> to convert the YAML to JSON, or <tt>rake
+convert:yaml:columnar</tt> to convert it to the new columnar format.
+
+==== Updating Types from the IANA or Apache Lists
+
+If you are maintaining a private fork and wish to update your copy of the MIME
+types registry used by this gem, you can do this with the rake tasks:
+
+ $ rake mime:iana
+ $ rake mime:apache
+
+Both of these require
+{Nokogiri}[http://www.nokogiri.org/tutorials/installing_nokogiri.html], which
+is not installed by default. Install it in the usual way for your Ruby.
=== Test Dependencies
@@ -77,6 +93,35 @@ can accomplish the same thing with:
This task will install any missing dependencies, run the tests/specs, and
generate the RDoc.
+You can run tests with code coverage analysis by running:
+
+ $ rake test:coverage
+
+=== Benchmarks
+
+mime-types offers several benchmark tasks to measure different measures of
+performance.
+
+There is a repeated load test, measuring how long it takes to start and load
+mime-types with its full registry. By default, it runs fifty loops and uses the
+built-in benchmark library.
+
+ $ rake benchmark:load
+
+There are two allocation tracing benchmarks (for normal and columnar loads).
+These can only be run on Ruby 2.1 or better and requires the
+{allocation_tracer}[https://github.com/ko1/allocation_tracer] gem (not
+installed by default).
+
+ $ rake benchmark:allocations
+ $ rake benchmark:allocations:columnar
+
+There are two loaded object count benchmarks (for normal and columnar loads).
+These use <tt>ObjectSpace.count_objects</tt>.
+
+ $ rake benchmark:objects
+ $ rake benchmark:objects:columnar
+
=== Workflow
Here's the most direct way to get your work merged into the project:
@@ -97,24 +142,31 @@ Here's the most direct way to get your work merged into the project:
Thanks to everyone else who has contributed to mime-types:
+* Aaron Patterson
+* Aggelos Avgerinos
* Andre Pankratz
-* Mauricio Linhares
-* Richard Hirner
-* Todd Carrico
+* Andy Brody
+* Arnaud Meuret
+* Brandon Galbraith
+* Chris Gat
+* David Genord
+* Eric Marden
* Garret Alfert
+* Godfrey Chan
+* Greg Brockman
* Hans de Graaff
* Henrik Hodne
-* Martin d'Allens
-* Chris Gat
-* Greg Brockman
-* Łukasz Śliwa (for the friendly names)
+* Jeremy Evans
+* Juanito Fatas
+* Łukasz Śliwa
* Keerthi Siva
-* Aaron Patterson
-* Godfrey Chan
-* Tibor Szolár
* Ken Ip
-* David Genord
-* Juanito Fatas
-* Andy Brody
-* Aggelow Avgerinos
+* Martin d'Allens
+* Mauricio Linhares
+* nycvotes-dev
+* Postmodern
+* Richard Hirner
+* Richard Hurt
* Richard Schneeman
+* Tibor Szolár
+* Todd Carrico
diff --git a/History-Types.rdoc b/History-Types.rdoc
index f6ebb92..7310a1a 100644
--- a/History-Types.rdoc
+++ b/History-Types.rdoc
@@ -1,5 +1,16 @@
= MIME Types Changes by Version
+== 2.6 / 2015-05-25
+
+* Steven Michael Thomas (@stevenmichaelthomas) added +woff2+ as an extension to
+ application/font-woff,
+ {#99}[https://github.com/mime-types/ruby-mime-types/pull/99].
+* Updated the IANA media registry entries as of release date:
+ * Updated metadata for application/jose, application/jose\+json,
+ application/jwk\+json, applicatoin/jwk-set\+json, application/jwt to
+ reflect the adoption of RFC7519.
+ * Added application/vnd.balsamiq.bmpr.
+
== 2.5 / 2015-04-25
* Updated the IANA media registry entries as of release date:
diff --git a/History.rdoc b/History.rdoc
index fef9833..513c129 100644
--- a/History.rdoc
+++ b/History.rdoc
@@ -1,7 +1,37 @@
+== 2.6 / 2015-05-25
+
+* New Feature:
+ * Columnar data storage for the MIME::Types registry, contributed by Jeremy
+ Evans (@jeremyevans). Reduces default memory use substantially (the mail
+ gem drops from 19 Mib to about 3 Mib). Resolves
+ {#96}[https://github.com/mime-types/ruby-mime-types/pull/96],
+ {#94}[https://github.com/mime-types/ruby-mime-types/issues/94],
+ {#83}[https://github.com/mime-types/ruby-mime-types/issues/83]. Partially
+ addresses {#64}[https://github.com/mime-types/ruby-mime-types/issues/64]
+ and {#62}[https://github.com/mime-types/ruby-mime-types/issues/62].
+* Development:
+ * Removed caching of deprecation messages in preparation for mime-types 3.0.
+ Now, deprecated methods will always warn their deprecation instead of only
+ warning once.
+ * Added a logger for deprecation messages.
+ * Renamed <tt>lib/mime.rb</tt> to <tt>lib/mime/deprecations.rb</tt> to not
+ conflict with the {mime}[https://rubygems.org/gems/mime] gem on behalf of
+ the maintainers of the {Praxis Framework}[http://praxis-framework.io/].
+ Provided by Josep M. Blanquer (@blanquer),
+ {#100}[https://github.com/mime-types/ruby-mime-types/pull/100].
+ * Added the columnar data conversion tool, also provided by Jeremy Evans.
+* Documentation:
+ * Improved documentation and ensured that all deprecated methods are marked
+ as such in the documentation.
+* Development:
+ * Added more Ruby variants to Travis CI.
+ * Silenced deprecation messages for internal tools. Noisy deprecations are
+ noisy, but that's the point.
+
== 2.5 / 2015-04-25
* Bugs:
- * David Genord (@albus522) fixed a bug in loading MIME::types cache where a
+ * David Genord (@albus522) fixed a bug in loading MIME::Types cache where a
container loaded from cache did not have the expected +default_proc+,
{#86}[https://github.com/mime-types/ruby-mime-types/pull/86].
* Richard Schneeman (@schneems) provided a patch that substantially reduces
diff --git a/Manifest.txt b/Manifest.txt
index 7a507b0..d9a0ab8 100644
--- a/Manifest.txt
+++ b/Manifest.txt
@@ -10,18 +10,35 @@ Manifest.txt
README.rdoc
Rakefile
data/mime-types.json
+data/mime.content_type.column
+data/mime.docs.column
+data/mime.encoding.column
+data/mime.friendly.column
+data/mime.obsolete.column
+data/mime.references.column
+data/mime.registered.column
+data/mime.signature.column
+data/mime.system.column
+data/mime.use_instead.column
+data/mime.xrefs.column
docs/COPYING.txt
docs/artistic.txt
lib/mime-types.rb
lib/mime/type.rb
+lib/mime/type/columnar.rb
lib/mime/types.rb
lib/mime/types/cache.rb
+lib/mime/types/columnar.rb
+lib/mime/types/deprecations.rb
lib/mime/types/loader.rb
lib/mime/types/loader_path.rb
-lib/mime/types/deprecations.rb
+lib/mime/types/logger.rb
support/apache_mime_types.rb
support/benchmarks/load.rb
+support/benchmarks/load_allocations.rb
+support/benchmarks/object_counts.rb
support/convert.rb
+support/convert/columnar.rb
support/iana_registry.rb
test/bad-fixtures/malformed
test/fixture/json.json
diff --git a/README.rdoc b/README.rdoc
index 45a423d..2e5f9ae 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -18,33 +18,43 @@ MIME content types are used in MIME-compliant communications, as in e-mail or
HTTP traffic, to indicate the type of content which is transmitted. The
mime-types library provides the ability for detailed information about MIME
entities (provided as an enumerable collection of MIME::Type objects) to be
-determined and used programmatically. There are many types defined by RFCs and
-vendors, so the list is long but by definition incomplete; don't hesitate to
-add additional type definitions (see Contributing.rdoc). The primary sources
-for MIME type definitions found in mime-types is the
-{IANA Media Types registry}[https://www.iana.org/assignments/media-types/media-types.xhtml],
-RFCs, and W3C recommendations. It conforms to RFCs 2045 and 2231.
-
-This is release 2.5 with a couple of bug fixes, updating to the latest IANA
-type registry, and adding a user-contributed type. mime-types 2.x supports Ruby
-1.9.2 or later.
+determined and used. There are many types defined by RFCs and vendors, so the
+list is long but by definition incomplete; don't hesitate to add additional
+type definitions. MIME type definitions found in mime-types are from RFCs, W3C
+recommendations, the {IANA Media Types
+registry}[https://www.iana.org/assignments/media-types/media-types.xhtml], and
+user contributions. It conforms to RFCs 2045 and 2231.
+
+This is release 2.6 with two new experimental features. The first new feature
+is a new default registry storage format that greatly reduces the initial
+memory use of the mime-types library. This feature is enabled by requiring
++mime/types/columnar+ instead of +mime/types+ with a small performance cost and
+no change in *total* memory use if certain methods are called (see {Columnar
+Store}[#columnar-store] for more details). The second new feature is a logger
+interface that conforms to the expectations of an ActiveSupport::Logger so that
+warnings can be written to an application's log rather than the default
+location for +warn+. This interface may be used for other logging purposes in
+the future.
+
+mime-types 2.6 is the last planned version of mime-types 2.x, so deprecation
+warnings are no longer cached but provided every time the method is called.
+mime-types 2.6 supports Ruby 1.9.2 or later.
=== mime-types 1.x End of Life
mime-types 2.0 was released in late 2013, and as of early 2015 there have been
no reported security issues for mime-types 1.x. With the release of mime-types
-2.5, I setting the formal End of Life for mime-types 1.x for 2015-10-27 (the
-second anniversary of the release of mime-types 2.0). After this date,
-absolutely no pull requests for mime-types 1.x will be accepted.
+2.5, I set the formal End of Life for mime-types 1.x for 2015-10-27 (the second
+anniversary of the release of mime-types 2.0). After this date, absolutely no
+pull requests for mime-types 1.x will be accepted.
=== mime-types Future
-Even though there are a number of issues open, it is clear to me that there are
-some fundamental changes that need to happen to both the data representation
-and the API provided by mime-types. This cannot happen under the current
-release, so all new development is focussing on an upcoming 3.0 release. The
-target for the release is on or before the beginning of RubyConf 2015
-(2015-11-15).
+There are a number of issues open that make clear to me that there are some
+fundamental changes that need to happen to both the data representation and the
+API provided by mime-types. This cannot happen under the current release, so
+all new development is focussing on an upcoming 3.0 release. The target for the
+release is on or before the beginning of RubyConf 2015 (2015-11-15).
When 3.0 is released, mime-types 2.x will receive regular updates of the IANA
registry for two years following the release. It will also receive security
@@ -52,9 +62,15 @@ updates, if needed, for the same period. There will be no further feature
development on mime-types 2.x following the 3.0 release.
Coincident with the 3.0 release, I will release mime-types 2.99.0 that no
-longer imports the data to fields that have been deprecated. If they work
-because they derive data from that which is imported, they will continue to
-work. The quarterly updates will be against 2.99.x.
+longer imports the data to fields that have been deprecated, or exports it if
+it is present. If they work because they derive data from the data that is
+still present, the will continue to work. The quarterly updates will be against
+2.99.x.
+
+If the possible loss of this deprecated data matters, be sure to set your
+dependency appropriately:
+
+ gem 'mime-types', '~> 2.6, < 2.99'
== Synopsis
@@ -62,44 +78,109 @@ MIME types are used in MIME entities, as in email or HTTP traffic. It is useful
at times to have information available about MIME types (or, inversely, about
files). A MIME::Type stores the known information about one MIME type.
- require 'mime/types'
-
- plaintext = MIME::Types['text/plain'] # => [ text/plain ]
- text = plaintext.first
- puts text.media_type # => 'text'
- puts text.sub_type # => 'plain'
-
- puts text.extensions.join(" ") # => 'txt asc c cc h hh cpp hpp dat hlp'
- puts text.preferred_extension # => 'txt'
- puts text.friendly # => 'Text Document'
- puts text.i18n_key # => 'text.plain'
-
- puts text.encoding # => quoted-printable
- puts text.binary? # => false
- puts text.ascii? # => true
- puts text.obsolete? # => false
- puts text.registered? # => true
- puts text == 'text/plain' # => true
- puts 'text/plain' == text # => true
- puts MIME::Type.simplified('x-appl/x-zip')
- # => 'appl/zip'
-
- puts MIME::Types.any? { |type|
- type.content_type == 'text/plain'
- } # => true
- puts MIME::Types.all?(&:registered?)
- # => false
-
- # Various string representations of MIME types
-
- qcelp = MIME::Types['audio/QCELP'].first # => audio/QCELP
- puts qcelp.content_type # => 'audio/QCELP'
- puts qcelp.simplified # => 'audio/qcelp'
-
- xwingz = MIME::Types['application/x-Wingz'].first # => application/x-Wingz
- puts xwingz.content_type # => 'application/x-Wingz'
- puts xwingz.simplified # => 'application/wingz'
-
+ require 'mime/types'
+
+ plaintext = MIME::Types['text/plain'] # => [ text/plain ]
+ text = plaintext.first
+ puts text.media_type # => 'text'
+ puts text.sub_type # => 'plain'
+
+ puts text.extensions.join(' ') # => 'txt asc c cc h hh cpp hpp dat hlp'
+ puts text.preferred_extension # => 'txt'
+ puts text.friendly # => 'Text Document'
+ puts text.i18n_key # => 'text.plain'
+
+ puts text.encoding # => quoted-printable
+ puts text.default_encoding # => quoted-printable
+ puts text.binary? # => false
+ puts text.ascii? # => true
+ puts text.obsolete? # => false
+ puts text.registered? # => true
+ puts text.complete? # => true
+
+ puts text # => 'text/plain'
+
+ puts text == 'text/plain' # => true
+ puts 'text/plain' == text # => true
+ puts text == 'text/x-plain' # => false
+ puts 'text/x-plain' == text # => false
+
+ puts MIME::Type.simplified('x-appl/x-zip') # => 'appl/zip'
+ puts MIME::Type.i18n_key('x-appl/x-zip') # => 'appl.zip'
+
+ puts text.like?('text/x-plain') # => true
+ puts text.like?(MIME::Type.new('x-text/x-plain')) # => true
+
+ puts text.xrefs.inspect # => { "rfc" => [ "rfc2046", "rfc3676", "rfc5147" ] }
+ puts text.urls # => [ "http://www.iana.org/go/rfc2046",
+ # "http://www.iana.org/go/rfc3676",
+ # "http://www.iana.org/go/rfc5147" ]
+
+ xtext = MIME::Type.new('x-text/x-plain')
+ puts xtext.media_type # => 'text'
+ puts xtext.raw_media_type # => 'x-text'
+ puts xtext.sub_type # => 'plain'
+ puts xtext.raw_sub_type # => 'x-plain'
+ puts xtext.complete? # => false
+
+ puts MIME::Types.any? { |type| type.content_type == 'text/plain' } # => true
+ puts MIME::Types.all?(&:registered?) # => false
+
+ # Various string representations of MIME types
+ qcelp = MIME::Types['audio/QCELP'].first # => audio/QCELP
+ puts qcelp.content_type # => 'audio/QCELP'
+ puts qcelp.simplified # => 'audio/qcelp'
+
+ xwingz = MIME::Types['application/x-Wingz'].first # => application/x-Wingz
+ puts xwingz.content_type # => 'application/x-Wingz'
+ puts xwingz.simplified # => 'application/wingz'
+
+=== Columnar Store
+
+mime-types 2.6 has an experimental columnar storage format that reduces the
+default memory footprint. It does this by selectively loading data. When a
+registry is first loaded from a columnar store, only the canonical MIME type
+and registered extensions will be loaded and the MIME type will be connected to
+its registry. When extended data is required (including #registered, #obsolete,
+#use_instead), that data is loaded from its own column file for all types in
+the registry. This load is done with a Mutex to ensure that the types are
+updated safely in a multithreaded environment.
+
+Columnar storage is slated to become the default storage format for mime-types
+3.0, but until that is released, the default is still to use the JSON storage
+format. As such, columnar storage can only currently be loaded at an
+application level with the following specification in the application Gemfile:
+
+ gem 'mime-types', require: 'mime/types/columnar'
+
+Projects that do not use Bundler, and libraries that wish to suggest this
+behaviour to applications are encouraged to require this directly, but only if
+you specify a dependency on mime-types 2.6.
+
+ require 'mime/types/columnar'
+
+Although this require will not be necessary after mime-types 3, it will work
+through at least {version
+4}[https://github.com/mime-types/ruby-mime-types/pull/96#issuecomment-100725400]
+and possibly beyond.
+
+Note that the new Columnar class (MIME::Type::Columnar) and module
+(MIME::Types::Columnar) are considered private variant implementations of
+MIME::Type and MIME::Types and the specific implementation should not be relied
+upon by consumers of the mime-types library. Instead, depend on the public
+implementations only.
+
+=== Cached Storage
+
+Since version 2.0, mime-types has supported a cache of MIME types based on
+<tt>Marshal.dump</tt>. The cache is invalidated for each released version of
+mime-types so that version 2.5 is not reused for version 2.6. If the
+environment variable +RUBY_MIME_TYPES_CACHE+ is set to a cache file, mime-types
+will attempt to load the MIME type registry from the cache file. If it cannot,
+it will load the types normally and then saves the registry to the cache file.
+
+The current mime-types cache is not compatible with the columnar storage
+format. This will be resolved for mime-types 3.
== mime-types Modified Semantic Versioning
@@ -129,7 +210,7 @@ In practical terms, there should be a MINOR release roughly monthly to track
updated or changed MIME types from the official IANA registry. This does not
indicate when new API features have been added, but all minor versions of
mime-types 2.x will be backwards compatible; the interfaces marked deprecated
-will not be removed until at least mime-types 3.x or possibly later.
+will be removed in mime-types 3.x.
:include: Contributing.rdoc
diff --git a/Rakefile b/Rakefile
index 5bc10d2..b26fd44 100644
--- a/Rakefile
+++ b/Rakefile
@@ -15,24 +15,24 @@ spec = Hoe.spec 'mime-types' do
developer('Austin Ziegler', 'halostatue@gmail.com')
self.need_tar = true
- self.require_ruby_version '>= 1.9.2'
+ require_ruby_version '>= 1.9.2'
self.history_file = 'History.rdoc'
self.readme_file = 'README.rdoc'
- self.extra_rdoc_files = FileList["*.rdoc"].to_a
- self.licenses = ["MIT", "Artistic 2.0", "GPL-2"]
-
- self.extra_dev_deps << ['hoe-doofus', '~> 1.0']
- self.extra_dev_deps << ['hoe-gemspec2', '~> 1.1']
- self.extra_dev_deps << ['hoe-git', '~> 1.6']
- self.extra_dev_deps << ['hoe-rubygems', '~> 1.0']
- self.extra_dev_deps << ['hoe-travis', '~> 1.2']
- self.extra_dev_deps << ['minitest', '~> 5.3']
- self.extra_dev_deps << ['minitest-autotest', '~>1.0']
- self.extra_dev_deps << ['minitest-focus', '~>1.0']
- self.extra_dev_deps << ['rake', '~> 10.0']
- self.extra_dev_deps << ['simplecov', '~> 0.7']
- self.extra_dev_deps << ['coveralls', '~> 0.8']
+ self.extra_rdoc_files = FileList['*.rdoc'].to_a
+ self.licenses = ['MIT', 'Artistic 2.0', 'GPL-2']
+
+ extra_dev_deps << ['hoe-doofus', '~> 1.0']
+ extra_dev_deps << ['hoe-gemspec2', '~> 1.1']
+ extra_dev_deps << ['hoe-git', '~> 1.6']
+ extra_dev_deps << ['hoe-rubygems', '~> 1.0']
+ extra_dev_deps << ['hoe-travis', '~> 1.2']
+ extra_dev_deps << ['minitest', '~> 5.3']
+ extra_dev_deps << ['minitest-autotest', '~>1.0']
+ extra_dev_deps << ['minitest-focus', '~>1.0']
+ extra_dev_deps << ['rake', '~> 10.0']
+ extra_dev_deps << ['simplecov', '~> 0.7']
+ extra_dev_deps << ['coveralls', '~> 0.8']
end
task :support do
@@ -45,7 +45,7 @@ task 'support:nokogiri' => :support do
begin
gem 'nokogiri'
rescue Gem::LoadError
- fail "Nokogiri is not installed. Please install it."
+ raise 'Nokogiri is not installed. Please install it.'
end
end
@@ -53,14 +53,15 @@ namespace :benchmark do
desc 'Benchmark Load Times'
task :load, [ :repeats ] => :support do |_, args|
require 'benchmarks/load'
- Benchmarks::Load.report(File.join(Rake.application.original_dir, 'lib'),
- args.repeats)
+ Benchmarks::Load.report(
+ File.join(Rake.application.original_dir, 'lib'),
+ args.repeats
+ )
end
desc 'Allocation counts'
task :allocations, [ :top_x, :mime_types_only ] => :support do |_, args|
require 'benchmarks/load_allocations'
- p args
Benchmarks::LoadAllocations.report(
top_x: args.top_x,
mime_types_only: args.mime_types_only
@@ -115,14 +116,14 @@ namespace :test do
end
namespace :mime do
- desc "Download the current MIME type registrations from IANA."
- task :iana, [ :destination ] => 'support:nokogiri' do |t, args|
+ desc 'Download the current MIME type registrations from IANA.'
+ task :iana, [ :destination ] => 'support:nokogiri' do |_, args|
require 'iana_registry'
IANARegistry.download(to: args.destination)
end
- desc "Download the current MIME type configuration from Apache."
- task :apache, [ :destination ] => 'support:nokogiri' do |t, args|
+ desc 'Download the current MIME type configuration from Apache.'
+ task :apache, [ :destination ] => 'support:nokogiri' do |_, args|
require 'apache_mime_types'
ApacheMIMETypes.download(to: args.destination)
end
@@ -153,26 +154,26 @@ namespace :convert do
end
end
- desc "Convert documentation from RDoc to Markdown"
+ desc 'Convert documentation from RDoc to Markdown'
task docs: 'convert:docs:run'
namespace :yaml do
- desc "Convert from YAML to JSON"
- task :json, [ :source, :destination, :multiple_files ] => :support do |t, args|
+ desc 'Convert from YAML to JSON'
+ task :json, [ :source, :destination, :multiple_files ] => :support do |_, args|
require 'convert'
Convert.from_yaml_to_json(args)
end
- desc "Convert from YAML to Columnar"
- task :columnar, [ :source, :destination ] => :support do |t, args|
+ desc 'Convert from YAML to Columnar'
+ task :columnar, [ :source, :destination ] => :support do |_, args|
require 'convert/columnar'
Convert::Columnar.from_yaml_to_columnar(args)
end
end
namespace :json do
- desc "Convert from JSON to YAML"
- task :yaml, [ :source, :destination, :multiple_files ] => :support do |t, args|
+ desc 'Convert from JSON to YAML'
+ task :yaml, [ :source, :destination, :multiple_files ] => :support do |_, args|
require 'convert'
Convert.from_json_to_yaml(args)
end
@@ -180,6 +181,6 @@ namespace :convert do
end
Rake::Task['travis'].prerequisites.replace(%w(test:coveralls))
-Rake::Task['gem'].prerequisites.unshift("convert:yaml:json")
+Rake::Task['gem'].prerequisites.unshift('convert:yaml:json')
# vim: syntax=ruby
diff --git a/data/mime-types.json b/data/mime-types.json
index 172cef8..b5f4f30 100644
--- a/data/mime-types.json
+++ b/data/mime-types.json
@@ -1 +1 @@
-[{"content-type":"application/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{application/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/application/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["application/1d-interleaved-parityfec"]},"registered":true},{"content-type":"application/3gpdash-qoe-report+xml","encoding":"base64","references":["IANA","[Ozgur_Oyman]","[ThreeGPP]","{application/3gpdash-qoe-report+xml=http://www.iana.org/assignments/media-types/application/3gpdash-qoe-report+xml}"],"xrefs":{"person":["Ozgur_Oyman","ThreeGPP"],"template":["application/3gpdash-qoe-report+xml"]},"registered":true},{"content-type":"application/3gpp-ims+xml","encoding":"base64","references":["IANA","[John_M_Meredith]","{application/3gpp-ims+xml=http://www.iana.org/assignments/media-types/application/3gpp-ims+xml}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/3gpp-ims+xml"]},"registered":true},{"content-type":"application/A2L","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/A2L=http://www.iana.org/assignments/media-types/application/A2L}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/A2L"]},"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","references":["IANA","[Ehud_Shapiro]","{application/activemessage=http://www.iana.org/assignments/media-types/application/activemessage}"],"xrefs":{"person":["Ehud_Shapiro"],"template":["application/activemessage"]},"registered":true},{"content-type":"application/alto-costmap+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-costmap+json=http://www.iana.org/assignments/media-types/application/alto-costmap+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-costmap+json"]},"registered":true},{"content-type":"application/alto-costmapfilter+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-costmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-costmapfilter+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-costmapfilter+json"]},"registered":true},{"content-type":"application/alto-directory+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-directory+json=http://www.iana.org/assignments/media-types/application/alto-directory+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-directory+json"]},"registered":true},{"content-type":"application/alto-endpointcost+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointcost+json=http://www.iana.org/assignments/media-types/application/alto-endpointcost+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointcost+json"]},"registered":true},{"content-type":"application/alto-endpointcostparams+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointcostparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointcostparams+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointcostparams+json"]},"registered":true},{"content-type":"application/alto-endpointprop+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointprop+json=http://www.iana.org/assignments/media-types/application/alto-endpointprop+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointprop+json"]},"registered":true},{"content-type":"application/alto-endpointpropparams+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointpropparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointpropparams+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointpropparams+json"]},"registered":true},{"content-type":"application/alto-error+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-error+json=http://www.iana.org/assignments/media-types/application/alto-error+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-error+json"]},"registered":true},{"content-type":"application/alto-networkmap+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-networkmap+json=http://www.iana.org/assignments/media-types/application/alto-networkmap+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-networkmap+json"]},"registered":true},{"content-type":"application/alto-networkmapfilter+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-networkmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-networkmapfilter+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-networkmapfilter+json"]},"registered":true},{"content-type":"application/AML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/AML=http://www.iana.org/assignments/media-types/application/AML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/AML"]},"registered":true},{"content-type":"application/andrew-inset","friendly":{"en":"Andrew Toolkit"},"encoding":"base64","extensions":["ez"],"references":["IANA","[Nathaniel_Borenstein]","{application/andrew-inset=http://www.iana.org/assignments/media-types/application/andrew-inset}"],"xrefs":{"person":["Nathaniel_Borenstein"],"template":["application/andrew-inset"]},"registered":true},{"content-type":"application/appledouble","encoding":"base64","registered":false},{"content-type":"application/applefile","encoding":"base64","references":["IANA","[Patrik_Faltstrom]","{application/applefile=http://www.iana.org/assignments/media-types/application/applefile}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["application/applefile"]},"registered":true},{"content-type":"application/applixware","friendly":{"en":"Applixware"},"encoding":"base64","extensions":["aw"],"registered":false},{"content-type":"application/ATF","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATF=http://www.iana.org/assignments/media-types/application/ATF}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATF"]},"registered":true},{"content-type":"application/ATFX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATFX=http://www.iana.org/assignments/media-types/application/ATFX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATFX"]},"registered":true},{"content-type":"application/atom+xml","friendly":{"en":"Atom Syndication Format"},"encoding":"8bit","extensions":["atom"],"references":["IANA","RFC4287","RFC5023","{application/atom+xml=http://www.iana.org/assignments/media-types/application/atom+xml}"],"xrefs":{"rfc":["rfc4287","rfc5023"],"template":["application/atom+xml"]},"registered":true},{"content-type":"application/atomcat+xml","friendly":{"en":"Atom Publishing Protocol"},"encoding":"8bit","extensions":["atomcat"],"references":["IANA","RFC5023","{application/atomcat+xml=http://www.iana.org/assignments/media-types/application/atomcat+xml}"],"xrefs":{"rfc":["rfc5023"],"template":["application/atomcat+xml"]},"registered":true},{"content-type":"application/atomdeleted+xml","encoding":"8bit","references":["IANA","RFC6721","{application/atomdeleted+xml=http://www.iana.org/assignments/media-types/application/atomdeleted+xml}"],"xrefs":{"rfc":["rfc6721"],"template":["application/atomdeleted+xml"]},"registered":true},{"content-type":"application/atomicmail","encoding":"base64","references":["IANA","[Nathaniel_Borenstein]","{application/atomicmail=http://www.iana.org/assignments/media-types/application/atomicmail}"],"xrefs":{"person":["Nathaniel_Borenstein"],"template":["application/atomicmail"]},"registered":true},{"content-type":"application/atomsvc+xml","friendly":{"en":"Atom Publishing Protocol Service Document"},"encoding":"8bit","extensions":["atomsvc"],"references":["IANA","RFC5023","{application/atomsvc+xml=http://www.iana.org/assignments/media-types/application/atomsvc+xml}"],"xrefs":{"rfc":["rfc5023"],"template":["application/atomsvc+xml"]},"registered":true},{"content-type":"application/ATXML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATXML=http://www.iana.org/assignments/media-types/application/ATXML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATXML"]},"registered":true},{"content-type":"application/auth-policy+xml","encoding":"8bit","references":["IANA","RFC4745","{application/auth-policy+xml=http://www.iana.org/assignments/media-types/application/auth-policy+xml}"],"xrefs":{"rfc":["rfc4745"],"template":["application/auth-policy+xml"]},"registered":true},{"content-type":"application/bacnet-xdd+zip","encoding":"base64","references":["IANA","[ASHRAE]","[Dave_Robin]","{application/bacnet-xdd+zip=http://www.iana.org/assignments/media-types/application/bacnet-xdd+zip}"],"xrefs":{"person":["ASHRAE","Dave_Robin"],"template":["application/bacnet-xdd+zip"]},"registered":true},{"content-type":"application/batch-SMTP","encoding":"base64","references":["IANA","RFC2442","{application/batch-SMTP=http://www.iana.org/assignments/media-types/application/batch-SMTP}"],"xrefs":{"rfc":["rfc2442"],"template":["application/batch-SMTP"]},"registered":true},{"content-type":"application/beep+xml","encoding":"base64","references":["IANA","RFC3080","{application/beep+xml=http://www.iana.org/assignments/media-types/application/beep+xml}"],"xrefs":{"rfc":["rfc3080"],"template":["application/beep+xml"]},"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","references":["IANA","RFC7265","{application/calendar+json=http://www.iana.org/assignments/media-types/application/calendar+json}"],"xrefs":{"rfc":["rfc7265"],"template":["application/calendar+json"]},"registered":true},{"content-type":"application/calendar+xml","encoding":"base64","references":["IANA","RFC6321","{application/calendar+xml=http://www.iana.org/assignments/media-types/application/calendar+xml}"],"xrefs":{"rfc":["rfc6321"],"template":["application/calendar+xml"]},"registered":true},{"content-type":"application/call-completion","encoding":"base64","references":["IANA","RFC6910","{application/call-completion=http://www.iana.org/assignments/media-types/application/call-completion}"],"xrefs":{"rfc":["rfc6910"],"template":["application/call-completion"]},"registered":true},{"content-type":"application/cals-1840","encoding":"base64","references":["IANA","RFC1895","{application/cals-1840=http://www.iana.org/assignments/media-types/application/cals-1840}"],"xrefs":{"rfc":["rfc1895"],"template":["application/cals-1840"]},"registered":true},{"content-type":"application/cals1840","encoding":"base64","obsolete":true,"use-instead":"application/cals-1840","registered":false},{"content-type":"application/cbor","encoding":"base64","references":["IANA","RFC7049","{application/cbor=http://www.iana.org/assignments/media-types/application/cbor}"],"xrefs":{"rfc":["rfc7049"],"template":["application/cbor"]},"registered":true},{"content-type":"application/ccmp+xml","encoding":"base64","references":["IANA","RFC6503","{application/ccmp+xml=http://www.iana.org/assignments/media-types/application/ccmp+xml}"],"xrefs":{"rfc":["rfc6503"],"template":["application/ccmp+xml"]},"registered":true},{"content-type":"application/ccxml+xml","friendly":{"en":"Voice Browser Call Control"},"encoding":"base64","extensions":["ccxml"],"references":["IANA","RFC4267","{application/ccxml+xml=http://www.iana.org/assignments/media-types/application/ccxml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/ccxml+xml"]},"registered":true},{"content-type":"application/CDFX+XML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/CDFX+XML=http://www.iana.org/assignments/media-types/application/CDFX+XML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/CDFX+XML"]},"registered":true},{"content-type":"application/cdmi-capability","friendly":{"en":"Cloud Data Management Interface (CDMI) - Capability"},"encoding":"base64","extensions":["cdmia"],"references":["IANA","RFC6208","{application/cdmi-capability=http://www.iana.org/assignments/media-types/application/cdmi-capability}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-capability"]},"registered":true},{"content-type":"application/cdmi-container","friendly":{"en":"Cloud Data Management Interface (CDMI) - Contaimer"},"encoding":"base64","extensions":["cdmic"],"references":["IANA","RFC6208","{application/cdmi-container=http://www.iana.org/assignments/media-types/application/cdmi-container}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-container"]},"registered":true},{"content-type":"application/cdmi-domain","friendly":{"en":"Cloud Data Management Interface (CDMI) - Domain"},"encoding":"base64","extensions":["cdmid"],"references":["IANA","RFC6208","{application/cdmi-domain=http://www.iana.org/assignments/media-types/application/cdmi-domain}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-domain"]},"registered":true},{"content-type":"application/cdmi-object","friendly":{"en":"Cloud Data Management Interface (CDMI) - Object"},"encoding":"base64","extensions":["cdmio"],"references":["IANA","RFC6208","{application/cdmi-object=http://www.iana.org/assignments/media-types/application/cdmi-object}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-object"]},"registered":true},{"content-type":"application/cdmi-queue","friendly":{"en":"Cloud Data Management Interface (CDMI) - Queue"},"encoding":"base64","extensions":["cdmiq"],"references":["IANA","RFC6208","{application/cdmi-queue=http://www.iana.org/assignments/media-types/application/cdmi-queue}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-queue"]},"registered":true},{"content-type":"application/CEA","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/CEA=http://www.iana.org/assignments/media-types/application/CEA}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/CEA"]},"registered":true},{"content-type":"application/cea-2018+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/cea-2018+xml=http://www.iana.org/assignments/media-types/application/cea-2018+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/cea-2018+xml"]},"registered":true},{"content-type":"application/cellml+xml","encoding":"base64","references":["IANA","RFC4708","{application/cellml+xml=http://www.iana.org/assignments/media-types/application/cellml+xml}"],"xrefs":{"rfc":["rfc4708"],"template":["application/cellml+xml"]},"registered":true},{"content-type":"application/cfw","encoding":"base64","references":["IANA","RFC6230","{application/cfw=http://www.iana.org/assignments/media-types/application/cfw}"],"xrefs":{"rfc":["rfc6230"],"template":["application/cfw"]},"registered":true},{"content-type":"application/clariscad","encoding":"base64","registered":false},{"content-type":"application/cms","encoding":"base64","references":["IANA","RFC7193","{application/cms=http://www.iana.org/assignments/media-types/application/cms}"],"xrefs":{"rfc":["rfc7193"],"template":["application/cms"]},"registered":true},{"content-type":"application/cnrp+xml","encoding":"base64","references":["IANA","RFC3367","{application/cnrp+xml=http://www.iana.org/assignments/media-types/application/cnrp+xml}"],"xrefs":{"rfc":["rfc3367"],"template":["application/cnrp+xml"]},"registered":true},{"content-type":"application/coap-group+json","encoding":"base64","references":["IANA","RFC7390","{application/coap-group+json=http://www.iana.org/assignments/media-types/application/coap-group+json}"],"xrefs":{"rfc":["rfc7390"],"template":["application/coap-group+json"]},"registered":true},{"content-type":"application/commonground","encoding":"base64","references":["IANA","[David_Glazer]","{application/commonground=http://www.iana.org/assignments/media-types/application/commonground}"],"xrefs":{"person":["David_Glazer"],"template":["application/commonground"]},"registered":true},{"content-type":"application/conference-info+xml","encoding":"base64","references":["IANA","RFC4575","{application/conference-info+xml=http://www.iana.org/assignments/media-types/application/conference-info+xml}"],"xrefs":{"rfc":["rfc4575"],"template":["application/conference-info+xml"]},"registered":true},{"content-type":"application/cpl+xml","encoding":"base64","references":["IANA","RFC3880","{application/cpl+xml=http://www.iana.org/assignments/media-types/application/cpl+xml}"],"xrefs":{"rfc":["rfc3880"],"template":["application/cpl+xml"]},"registered":true},{"content-type":"application/csrattrs","encoding":"base64","references":["IANA","RFC7030","{application/csrattrs=http://www.iana.org/assignments/media-types/application/csrattrs}"],"xrefs":{"rfc":["rfc7030"],"template":["application/csrattrs"]},"registered":true},{"content-type":"application/csta+xml","encoding":"base64","references":["IANA","[Ecma_International_Helpdesk]","{application/csta+xml=http://www.iana.org/assignments/media-types/application/csta+xml}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/csta+xml"]},"registered":true},{"content-type":"application/CSTAdata+xml","encoding":"base64","references":["IANA","[Ecma_International_Helpdesk]","{application/CSTAdata+xml=http://www.iana.org/assignments/media-types/application/CSTAdata+xml}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/CSTAdata+xml"]},"registered":true},{"content-type":"application/cu-seeme","friendly":{"en":"CU-SeeMe"},"encoding":"base64","extensions":["cu"],"registered":false},{"content-type":"application/cybercash","encoding":"base64","references":["IANA","[Donald_E._Eastlake_3rd]","{application/cybercash=http://www.iana.org/assignments/media-types/application/cybercash}"],"xrefs":{"person":["Donald_E._Eastlake_3rd"],"template":["application/cybercash"]},"registered":true},{"content-type":"application/dash+xml","encoding":"base64","references":["IANA","[Thomas_Stockhammer]","[ISO-IEC_JTC1]","{application/dash+xml=http://www.iana.org/assignments/media-types/application/dash+xml}"],"xrefs":{"person":["ISO-IEC_JTC1","Thomas_Stockhammer"],"template":["application/dash+xml"]},"registered":true},{"content-type":"application/dashdelta","encoding":"base64","references":["IANA","[David_Furbeck]","{application/dashdelta=http://www.iana.org/assignments/media-types/application/dashdelta}"],"xrefs":{"person":["David_Furbeck"],"template":["application/dashdelta"]},"registered":true},{"content-type":"application/davmount+xml","friendly":{"en":"Web Distributed Authoring and Versioning"},"encoding":"base64","extensions":["davmount"],"references":["IANA","RFC4709","{application/davmount+xml=http://www.iana.org/assignments/media-types/application/davmount+xml}"],"xrefs":{"rfc":["rfc4709"],"template":["application/davmount+xml"]},"registered":true},{"content-type":"application/dca-rft","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/dca-rft=http://www.iana.org/assignments/media-types/application/dca-rft}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/dca-rft"]},"registered":true},{"content-type":"application/DCD","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DCD=http://www.iana.org/assignments/media-types/application/DCD}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DCD"]},"registered":true},{"content-type":"application/dec-dx","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/dec-dx=http://www.iana.org/assignments/media-types/application/dec-dx}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/dec-dx"]},"registered":true},{"content-type":"application/dialog-info+xml","encoding":"base64","references":["IANA","RFC4235","{application/dialog-info+xml=http://www.iana.org/assignments/media-types/application/dialog-info+xml}"],"xrefs":{"rfc":["rfc4235"],"template":["application/dialog-info+xml"]},"registered":true},{"content-type":"application/dicom","encoding":"base64","extensions":["dcm"],"references":["IANA","RFC3240","{application/dicom=http://www.iana.org/assignments/media-types/application/dicom}"],"xrefs":{"rfc":["rfc3240"],"template":["application/dicom"]},"registered":true},{"content-type":"application/DII","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DII=http://www.iana.org/assignments/media-types/application/DII}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DII"]},"registered":true},{"content-type":"application/DIT","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DIT=http://www.iana.org/assignments/media-types/application/DIT}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DIT"]},"registered":true},{"content-type":"application/dns","encoding":"base64","references":["IANA","RFC4027","{application/dns=http://www.iana.org/assignments/media-types/application/dns}"],"xrefs":{"rfc":["rfc4027"],"template":["application/dns"]},"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","references":["IANA","RFC6063","{application/dskpp+xml=http://www.iana.org/assignments/media-types/application/dskpp+xml}"],"xrefs":{"rfc":["rfc6063"],"template":["application/dskpp+xml"]},"registered":true},{"content-type":"application/dssc+der","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["dssc"],"references":["IANA","RFC5698","{application/dssc+der=http://www.iana.org/assignments/media-types/application/dssc+der}"],"xrefs":{"rfc":["rfc5698"],"template":["application/dssc+der"]},"registered":true},{"content-type":"application/dssc+xml","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["xdssc"],"references":["IANA","RFC5698","{application/dssc+xml=http://www.iana.org/assignments/media-types/application/dssc+xml}"],"xrefs":{"rfc":["rfc5698"],"template":["application/dssc+xml"]},"registered":true},{"content-type":"application/dvcs","encoding":"base64","references":["IANA","RFC3029","{application/dvcs=http://www.iana.org/assignments/media-types/application/dvcs}"],"xrefs":{"rfc":["rfc3029"],"template":["application/dvcs"]},"registered":true},{"content-type":"application/dxf","encoding":"base64","registered":false},{"content-type":"application/ecmascript","friendly":{"en":"ECMAScript"},"encoding":"base64","extensions":["ecma"],"references":["IANA","RFC4329","{application/ecmascript=http://www.iana.org/assignments/media-types/application/ecmascript}"],"xrefs":{"rfc":["rfc4329"],"template":["application/ecmascript"]},"registered":true},{"content-type":"application/EDI-consent","encoding":"base64","references":["IANA","RFC1767","{application/EDI-consent=http://www.iana.org/assignments/media-types/application/EDI-consent}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDI-consent"]},"registered":true},{"content-type":"application/EDI-X12","encoding":"base64","references":["IANA","RFC1767","{application/EDI-X12=http://www.iana.org/assignments/media-types/application/EDI-X12}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDI-X12"]},"registered":true},{"content-type":"application/EDIFACT","encoding":"base64","references":["IANA","RFC1767","{application/EDIFACT=http://www.iana.org/assignments/media-types/application/EDIFACT}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDIFACT"]},"registered":true},{"content-type":"application/emma+xml","friendly":{"en":"Extensible MultiModal Annotation"},"encoding":"base64","extensions":["emma"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration"],"text":[null]},"registered":true},{"content-type":"application/emotionml+xml","encoding":"base64","references":["IANA","[W3C]","[Kazuyuki_Ashimura]","{application/emotionml+xml=http://www.iana.org/assignments/media-types/application/emotionml+xml}"],"xrefs":{"person":["Kazuyuki_Ashimura","W3C"],"template":["application/emotionml+xml"]},"registered":true},{"content-type":"application/encaprtp","encoding":"base64","references":["IANA","RFC6849","{application/encaprtp=http://www.iana.org/assignments/media-types/application/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["application/encaprtp"]},"registered":true},{"content-type":"application/epp+xml","encoding":"base64","references":["IANA","RFC5730","{application/epp+xml=http://www.iana.org/assignments/media-types/application/epp+xml}"],"xrefs":{"rfc":["rfc5730"],"template":["application/epp+xml"]},"registered":true},{"content-type":"application/epub+zip","friendly":{"en":"Electronic Publication"},"encoding":"base64","extensions":["epub"],"references":["IANA","[International_Digital_Publishing_Forum]","[William_McCoy]","{application/epub+zip=http://www.iana.org/assignments/media-types/application/epub+zip}"],"xrefs":{"person":["International_Digital_Publishing_Forum","William_McCoy"],"template":["application/epub+zip"]},"registered":true},{"content-type":"application/eshop","encoding":"base64","references":["IANA","[Steve_Katz]","{application/eshop=http://www.iana.org/assignments/media-types/application/eshop}"],"xrefs":{"person":["Steve_Katz"],"template":["application/eshop"]},"registered":true},{"content-type":"application/example","encoding":"base64","references":["IANA","RFC4735","{application/example=http://www.iana.org/assignments/media-types/application/example}"],"xrefs":{"rfc":["rfc4735"],"template":["application/example"]},"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"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration"]},"registered":true},{"content-type":"application/fastinfoset","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/fastinfoset=http://www.iana.org/assignments/media-types/application/fastinfoset}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/fastinfoset"]},"registered":true},{"content-type":"application/fastsoap","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/fastsoap=http://www.iana.org/assignments/media-types/application/fastsoap}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/fastsoap"]},"registered":true},{"content-type":"application/fdt+xml","encoding":"base64","references":["IANA","RFC6726","{application/fdt+xml=http://www.iana.org/assignments/media-types/application/fdt+xml}"],"xrefs":{"rfc":["rfc6726"],"template":["application/fdt+xml"]},"registered":true},{"content-type":"application/fits","encoding":"base64","references":["IANA","RFC4047","{application/fits=http://www.iana.org/assignments/media-types/application/fits}"],"xrefs":{"rfc":["rfc4047"],"template":["application/fits"]},"registered":true},{"content-type":"application/font-sfnt","encoding":"base64","extensions":["otf","ttf"],"references":["IANA","[Levantovsky]","{application/font-sfnt=http://www.iana.org/assignments/media-types/application/font-sfnt}"],"xrefs":{"person":["Levantovsky"],"text":[null],"template":["application/font-sfnt"]},"registered":true},{"content-type":"application/font-tdpfr","friendly":{"en":"Portable Font Resource"},"encoding":"base64","extensions":["pfr"],"references":["IANA","RFC3073","{application/font-tdpfr=http://www.iana.org/assignments/media-types/application/font-tdpfr}"],"xrefs":{"rfc":["rfc3073"],"template":["application/font-tdpfr"]},"registered":true},{"content-type":"application/font-woff","friendly":{"en":"Web Open Font Format"},"encoding":"base64","extensions":["woff"],"references":["IANA","[W3C]","{application/font-woff=http://www.iana.org/assignments/media-types/application/font-woff}"],"xrefs":{"person":["W3C"],"template":["application/font-woff"]},"registered":true},{"content-type":"application/fractals","encoding":"base64","registered":false},{"content-type":"application/framework-attributes+xml","encoding":"base64","references":["IANA","RFC6230","{application/framework-attributes+xml=http://www.iana.org/assignments/media-types/application/framework-attributes+xml}"],"xrefs":{"rfc":["rfc6230"],"template":["application/framework-attributes+xml"]},"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"],"references":["IANA","RFC6713","{application/gzip=http://www.iana.org/assignments/media-types/application/gzip}"],"xrefs":{"rfc":["rfc6713"],"template":["application/gzip"]},"registered":true},{"content-type":"application/H224","encoding":"base64","references":["IANA","RFC4573","{application/H224=http://www.iana.org/assignments/media-types/application/H224}"],"xrefs":{"rfc":["rfc4573"],"template":["application/H224"]},"registered":true},{"content-type":"application/held+xml","encoding":"base64","references":["IANA","RFC5985","{application/held+xml=http://www.iana.org/assignments/media-types/application/held+xml}"],"xrefs":{"rfc":["rfc5985"],"template":["application/held+xml"]},"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","references":["IANA","RFC7230","{application/http=http://www.iana.org/assignments/media-types/application/http}"],"xrefs":{"rfc":["rfc7230"],"template":["application/http"]},"registered":true},{"content-type":"application/hyperstudio","friendly":{"en":"Hyperstudio"},"encoding":"base64","extensions":["stk"],"references":["IANA","[Michael_Domino]","{application/hyperstudio=http://www.iana.org/assignments/media-types/application/hyperstudio}"],"xrefs":{"person":["Michael_Domino"],"template":["application/hyperstudio"]},"registered":true},{"content-type":"application/i-deas","encoding":"base64","registered":false},{"content-type":"application/ibe-key-request+xml","encoding":"base64","references":["IANA","RFC5408","{application/ibe-key-request+xml=http://www.iana.org/assignments/media-types/application/ibe-key-request+xml}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-key-request+xml"]},"registered":true},{"content-type":"application/ibe-pkg-reply+xml","encoding":"base64","references":["IANA","RFC5408","{application/ibe-pkg-reply+xml=http://www.iana.org/assignments/media-types/application/ibe-pkg-reply+xml}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-pkg-reply+xml"]},"registered":true},{"content-type":"application/ibe-pp-data","encoding":"base64","references":["IANA","RFC5408","{application/ibe-pp-data=http://www.iana.org/assignments/media-types/application/ibe-pp-data}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-pp-data"]},"registered":true},{"content-type":"application/iges","encoding":"base64","references":["IANA","[Curtis_Parks]","{application/iges=http://www.iana.org/assignments/media-types/application/iges}"],"xrefs":{"person":["Curtis_Parks"],"template":["application/iges"]},"registered":true},{"content-type":"application/im-iscomposing+xml","encoding":"base64","references":["IANA","RFC3994","{application/im-iscomposing+xml=http://www.iana.org/assignments/media-types/application/im-iscomposing+xml}"],"xrefs":{"rfc":["rfc3994"],"template":["application/im-iscomposing+xml"]},"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","references":["IANA","RFC2652","{application/index=http://www.iana.org/assignments/media-types/application/index}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index"]},"registered":true},{"content-type":"application/index.cmd","encoding":"base64","references":["IANA","RFC2652","{application/index.cmd=http://www.iana.org/assignments/media-types/application/index.cmd}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.cmd"]},"registered":true},{"content-type":"application/index.obj","encoding":"base64","references":["IANA","RFC2652","{application/index.obj=http://www.iana.org/assignments/media-types/application/index.obj}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.obj"]},"registered":true},{"content-type":"application/index.response","encoding":"base64","references":["IANA","RFC2652","{application/index.response=http://www.iana.org/assignments/media-types/application/index.response}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.response"]},"registered":true},{"content-type":"application/index.vnd","encoding":"base64","references":["IANA","RFC2652","{application/index.vnd=http://www.iana.org/assignments/media-types/application/index.vnd}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.vnd"]},"registered":true},{"content-type":"application/inkml+xml","encoding":"base64","extensions":["ink","inkml"],"references":["IANA","[Kazuyuki_Ashimura]","{application/inkml+xml=http://www.iana.org/assignments/media-types/application/inkml+xml}"],"xrefs":{"person":["Kazuyuki_Ashimura"],"template":["application/inkml+xml"]},"registered":true},{"content-type":"application/iotp","encoding":"base64","references":["IANA","RFC2935","{application/IOTP=http://www.iana.org/assignments/media-types/application/IOTP}"],"xrefs":{"rfc":["rfc2935"],"template":["application/IOTP"]},"registered":true},{"content-type":"application/ipfix","friendly":{"en":"Internet Protocol Flow Information Export"},"encoding":"base64","extensions":["ipfix"],"references":["IANA","RFC5655","{application/ipfix=http://www.iana.org/assignments/media-types/application/ipfix}"],"xrefs":{"rfc":["rfc5655"],"template":["application/ipfix"]},"registered":true},{"content-type":"application/ipp","encoding":"base64","references":["IANA","RFC2910","{application/ipp=http://www.iana.org/assignments/media-types/application/ipp}"],"xrefs":{"rfc":["rfc2910"],"template":["application/ipp"]},"registered":true},{"content-type":"application/isup","encoding":"base64","references":["IANA","RFC3204","{application/ISUP=http://www.iana.org/assignments/media-types/application/ISUP}"],"xrefs":{"rfc":["rfc3204"],"template":["application/ISUP"]},"registered":true},{"content-type":"application/its+xml","encoding":"base64","references":["IANA","[W3C]","[ITS-IG-W3C]","{application/its+xml=http://www.iana.org/assignments/media-types/application/its+xml}"],"xrefs":{"person":["ITS-IG-W3C","W3C"],"template":["application/its+xml"]},"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"],"references":["IANA","RFC4329","{application/javascript=http://www.iana.org/assignments/media-types/application/javascript}"],"xrefs":{"rfc":["rfc4329"],"template":["application/javascript"]},"registered":true},{"content-type":"application/jose","encoding":"base64","references":["IANA","DRAFT:draft-ietf-jose-json-web-signature-41","{application/jose=http://www.iana.org/assignments/media-types/application/jose}"],"xrefs":{"draft":["RFC-ietf-jose-json-web-signature-41"],"template":["application/jose"]},"registered":true},{"content-type":"application/jose+json","encoding":"base64","references":["IANA","DRAFT:draft-ietf-jose-json-web-signature-41","{application/jose+json=http://www.iana.org/assignments/media-types/application/jose+json}"],"xrefs":{"draft":["RFC-ietf-jose-json-web-signature-41"],"template":["application/jose+json"]},"registered":true},{"content-type":"application/jrd+json","encoding":"base64","references":["IANA","RFC7033","{application/jrd+json=http://www.iana.org/assignments/media-types/application/jrd+json}"],"xrefs":{"rfc":["rfc7033"],"template":["application/jrd+json"]},"registered":true},{"content-type":"application/json","friendly":{"en":"JavaScript Object Notation (JSON)"},"encoding":"8bit","extensions":["json"],"references":["IANA","RFC7158","{application/json=http://www.iana.org/assignments/media-types/application/json}"],"xrefs":{"rfc":["rfc7158"],"template":["application/json"]},"registered":true},{"content-type":"application/json-patch+json","encoding":"base64","references":["IANA","RFC6902","{application/json-patch+json=http://www.iana.org/assignments/media-types/application/json-patch+json}"],"xrefs":{"rfc":["rfc6902"],"template":["application/json-patch+json"]},"registered":true},{"content-type":"application/json-seq","encoding":"base64","references":["IANA","RFC7464","{application/json-seq=http://www.iana.org/assignments/media-types/application/json-seq}"],"xrefs":{"rfc":["rfc7464"],"template":["application/json-seq"]},"registered":true},{"content-type":"application/jsonml+json","encoding":"base64","extensions":["jsonml"],"registered":false},{"content-type":"application/jwk+json","encoding":"base64","references":["IANA","DRAFT:draft-ietf-jose-json-web-key-41","{application/jwk+json=http://www.iana.org/assignments/media-types/application/jwk+json}"],"xrefs":{"draft":["RFC-ietf-jose-json-web-key-41"],"template":["application/jwk+json"]},"registered":true},{"content-type":"application/jwk-set+json","encoding":"base64","references":["IANA","DRAFT:draft-ietf-jose-json-web-key-41","{application/jwk-set+json=http://www.iana.org/assignments/media-types/application/jwk-set+json}"],"xrefs":{"draft":["RFC-ietf-jose-json-web-key-41"],"template":["application/jwk-set+json"]},"registered":true},{"content-type":"application/jwt","encoding":"base64","references":["IANA","DRAFT:draft-ietf-oauth-json-web-token-32","{application/jwt=http://www.iana.org/assignments/media-types/application/jwt}"],"xrefs":{"draft":["RFC-ietf-oauth-json-web-token-32"],"template":["application/jwt"]},"registered":true},{"content-type":"application/kpml-request+xml","encoding":"base64","references":["IANA","RFC4730","{application/kpml-request+xml=http://www.iana.org/assignments/media-types/application/kpml-request+xml}"],"xrefs":{"rfc":["rfc4730"],"template":["application/kpml-request+xml"]},"registered":true},{"content-type":"application/kpml-response+xml","encoding":"base64","references":["IANA","RFC4730","{application/kpml-response+xml=http://www.iana.org/assignments/media-types/application/kpml-response+xml}"],"xrefs":{"rfc":["rfc4730"],"template":["application/kpml-response+xml"]},"registered":true},{"content-type":"application/ld+json","encoding":"base64","references":["IANA","[W3C]","[Ivan_Herman]","{application/ld+json=http://www.iana.org/assignments/media-types/application/ld+json}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["application/ld+json"]},"registered":true},{"content-type":"application/link-format","encoding":"base64","references":["IANA","RFC6690","{application/link-format=http://www.iana.org/assignments/media-types/application/link-format}"],"xrefs":{"rfc":["rfc6690"],"template":["application/link-format"]},"registered":true},{"content-type":"application/load-control+xml","encoding":"base64","references":["IANA","RFC7200","{application/load-control+xml=http://www.iana.org/assignments/media-types/application/load-control+xml}"],"xrefs":{"rfc":["rfc7200"],"template":["application/load-control+xml"]},"registered":true},{"content-type":"application/lost+xml","encoding":"base64","extensions":["lostxml"],"references":["IANA","RFC5222","{application/lost+xml=http://www.iana.org/assignments/media-types/application/lost+xml}"],"xrefs":{"rfc":["rfc5222"],"template":["application/lost+xml"]},"registered":true},{"content-type":"application/lostsync+xml","encoding":"base64","references":["IANA","RFC6739","{application/lostsync+xml=http://www.iana.org/assignments/media-types/application/lostsync+xml}"],"xrefs":{"rfc":["rfc6739"],"template":["application/lostsync+xml"]},"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","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/LXF=http://www.iana.org/assignments/media-types/application/LXF}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/LXF"]},"registered":true},{"content-type":"application/mac-binhex40","friendly":{"en":"Macintosh BinHex 4.0"},"encoding":"8bit","extensions":["hqx"],"references":["IANA","[Patrik_Faltstrom]","{application/mac-binhex40=http://www.iana.org/assignments/media-types/application/mac-binhex40}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["application/mac-binhex40"]},"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","references":["IANA","[Paul_Lindner]","{application/macwriteii=http://www.iana.org/assignments/media-types/application/macwriteii}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/macwriteii"]},"registered":true},{"content-type":"application/mads+xml","friendly":{"en":"Metadata Authority Description Schema"},"encoding":"base64","extensions":["mads"],"references":["IANA","RFC6207","{application/mads+xml=http://www.iana.org/assignments/media-types/application/mads+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mads+xml"]},"registered":true},{"content-type":"application/marc","friendly":{"en":"MARC Formats"},"encoding":"base64","extensions":["mrc"],"references":["IANA","RFC2220","{application/marc=http://www.iana.org/assignments/media-types/application/marc}"],"xrefs":{"rfc":["rfc2220"],"template":["application/marc"]},"registered":true},{"content-type":"application/marcxml+xml","friendly":{"en":"MARC21 XML Schema"},"encoding":"base64","extensions":["mrcx"],"references":["IANA","RFC6207","{application/marcxml+xml=http://www.iana.org/assignments/media-types/application/marcxml+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/marcxml+xml"]},"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"],"references":["IANA","[Wolfram]","{application/mathematica=http://www.iana.org/assignments/media-types/application/mathematica}"],"xrefs":{"person":["Wolfram"],"template":["application/mathematica"]},"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"],"references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mathml-content+xml","encoding":"base64","references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mathml-presentation+xml","encoding":"base64","references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mbms-associated-procedure-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-associated-procedure-description+xml=http://www.iana.org/assignments/media-types/application/mbms-associated-procedure-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-associated-procedure-description+xml"]},"registered":true},{"content-type":"application/mbms-deregister+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-deregister+xml=http://www.iana.org/assignments/media-types/application/mbms-deregister+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-deregister+xml"]},"registered":true},{"content-type":"application/mbms-envelope+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-envelope+xml=http://www.iana.org/assignments/media-types/application/mbms-envelope+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-envelope+xml"]},"registered":true},{"content-type":"application/mbms-msk+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-msk+xml=http://www.iana.org/assignments/media-types/application/mbms-msk+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-msk+xml"]},"registered":true},{"content-type":"application/mbms-msk-response+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-msk-response+xml=http://www.iana.org/assignments/media-types/application/mbms-msk-response+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-msk-response+xml"]},"registered":true},{"content-type":"application/mbms-protection-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-protection-description+xml=http://www.iana.org/assignments/media-types/application/mbms-protection-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-protection-description+xml"]},"registered":true},{"content-type":"application/mbms-reception-report+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-reception-report+xml=http://www.iana.org/assignments/media-types/application/mbms-reception-report+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-reception-report+xml"]},"registered":true},{"content-type":"application/mbms-register+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-register+xml=http://www.iana.org/assignments/media-types/application/mbms-register+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-register+xml"]},"registered":true},{"content-type":"application/mbms-register-response+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-register-response+xml=http://www.iana.org/assignments/media-types/application/mbms-register-response+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-register-response+xml"]},"registered":true},{"content-type":"application/mbms-schedule+xml","encoding":"base64","references":["IANA","[ThreeGPP]","[Eric_Turcotte]","{application/mbms-schedule+xml=http://www.iana.org/assignments/media-types/application/mbms-schedule+xml}"],"xrefs":{"person":["Eric_Turcotte","ThreeGPP"],"template":["application/mbms-schedule+xml"]},"registered":true},{"content-type":"application/mbms-user-service-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-user-service-description+xml=http://www.iana.org/assignments/media-types/application/mbms-user-service-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-user-service-description+xml"]},"registered":true},{"content-type":"application/mbox","friendly":{"en":"Mbox database files"},"encoding":"base64","extensions":["mbox"],"references":["IANA","RFC4155","{application/mbox+xml=http://www.iana.org/assignments/media-types/application/mbox+xml}"],"xrefs":{"rfc":["rfc4155"],"template":["application/mbox+xml"]},"registered":true},{"content-type":"application/media-policy-dataset+xml","encoding":"base64","references":["IANA","RFC6796","{application/media-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/media-policy-dataset+xml}"],"xrefs":{"rfc":["rfc6796"],"template":["application/media-policy-dataset+xml"]},"registered":true},{"content-type":"application/media_control+xml","encoding":"base64","references":["IANA","RFC5168","{application/media_control+xml=http://www.iana.org/assignments/media-types/application/media_control+xml}"],"xrefs":{"rfc":["rfc5168"],"template":["application/media_control+xml"]},"registered":true},{"content-type":"application/mediaservercontrol+xml","friendly":{"en":"Media Server Control Markup Language"},"encoding":"base64","extensions":["mscml"],"references":["IANA","RFC5022","{application/mediaservercontrol+xml=http://www.iana.org/assignments/media-types/application/mediaservercontrol+xml}"],"xrefs":{"rfc":["rfc5022"],"template":["application/mediaservercontrol+xml"]},"registered":true},{"content-type":"application/merge-patch+json","encoding":"base64","references":["IANA","RFC7396","{application/merge-patch+json=http://www.iana.org/assignments/media-types/application/merge-patch+json}"],"xrefs":{"rfc":["rfc7396"],"template":["application/merge-patch+json"]},"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"],"references":["IANA","RFC5854","{application/metalink4+xml=http://www.iana.org/assignments/media-types/application/metalink4+xml}"],"xrefs":{"rfc":["rfc5854"],"template":["application/metalink4+xml"]},"registered":true},{"content-type":"application/mets+xml","friendly":{"en":"Metadata Encoding and Transmission Standard"},"encoding":"base64","extensions":["mets"],"references":["IANA","RFC6207","{application/mets+xml=http://www.iana.org/assignments/media-types/application/mets+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mets+xml"]},"registered":true},{"content-type":"application/MF4","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/MF4=http://www.iana.org/assignments/media-types/application/MF4}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/MF4"]},"registered":true},{"content-type":"application/mikey","encoding":"base64","references":["IANA","RFC3830","{application/mikey=http://www.iana.org/assignments/media-types/application/mikey}"],"xrefs":{"rfc":["rfc3830"],"template":["application/mikey"]},"registered":true},{"content-type":"application/mods+xml","friendly":{"en":"Metadata Object Description Schema"},"encoding":"base64","extensions":["mods"],"references":["IANA","RFC6207","{application/mods+xml=http://www.iana.org/assignments/media-types/application/mods+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mods+xml"]},"registered":true},{"content-type":"application/moss-keys","encoding":"base64","references":["IANA","RFC1848","{application/moss-keys=http://www.iana.org/assignments/media-types/application/moss-keys}"],"xrefs":{"rfc":["rfc1848"],"template":["application/moss-keys"]},"registered":true},{"content-type":"application/moss-signature","encoding":"base64","references":["IANA","RFC1848","{application/moss-signature=http://www.iana.org/assignments/media-types/application/moss-signature}"],"xrefs":{"rfc":["rfc1848"],"template":["application/moss-signature"]},"registered":true},{"content-type":"application/mosskey-data","encoding":"base64","references":["IANA","RFC1848","{application/mosskey-data=http://www.iana.org/assignments/media-types/application/mosskey-data}"],"xrefs":{"rfc":["rfc1848"],"template":["application/mosskey-data"]},"registered":true},{"content-type":"application/mosskey-request","encoding":"base64","references":["IANA","RFC1848","{application/mosskey-request=http://www.iana.org/assignments/media-types/application/mosskey-request}"],"xrefs":{"rfc":["rfc1848"],"template":["application/mosskey-request"]},"registered":true},{"content-type":"application/mp21","friendly":{"en":"MPEG-21"},"encoding":"base64","extensions":["m21","mp21"],"references":["IANA","RFC6381","[David_Singer]","{application/mp21=http://www.iana.org/assignments/media-types/application/mp21}"],"xrefs":{"rfc":["rfc6381"],"person":["David_Singer"],"template":["application/mp21"]},"registered":true},{"content-type":"application/mp4","friendly":{"en":"MPEG4"},"encoding":"base64","extensions":["mp4","mpg4","mp4s"],"references":["IANA","RFC4337","RFC6381","{application/mp4=http://www.iana.org/assignments/media-types/application/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["application/mp4"]},"registered":true},{"content-type":"application/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","{application/mpeg4-generic=http://www.iana.org/assignments/media-types/application/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640"],"template":["application/mpeg4-generic"]},"registered":true},{"content-type":"application/mpeg4-iod","encoding":"base64","references":["IANA","RFC4337","{application/mpeg4-iod=http://www.iana.org/assignments/media-types/application/mpeg4-iod}"],"xrefs":{"rfc":["rfc4337"],"template":["application/mpeg4-iod"]},"registered":true},{"content-type":"application/mpeg4-iod-xmt","encoding":"base64","references":["IANA","RFC4337","{application/mpeg4-iod-xmt=http://www.iana.org/assignments/media-types/application/mpeg4-iod-xmt}"],"xrefs":{"rfc":["rfc4337"],"template":["application/mpeg4-iod-xmt"]},"registered":true},{"content-type":"application/mrb-consumer+xml","encoding":"base64","references":["IANA","RFC6917","{application/mrb-consumer+xml=http://www.iana.org/assignments/media-types/application/mrb-consumer+xml}"],"xrefs":{"rfc":["rfc6917"],"template":["application/mrb-consumer+xml"]},"registered":true},{"content-type":"application/mrb-publish+xml","encoding":"base64","references":["IANA","RFC6917","{application/mrb-publish+xml=http://www.iana.org/assignments/media-types/application/mrb-publish+xml}"],"xrefs":{"rfc":["rfc6917"],"template":["application/mrb-publish+xml"]},"registered":true},{"content-type":"application/msc-ivr+xml","encoding":"base64","references":["IANA","RFC6231","{application/msc-ivr+xml=http://www.iana.org/assignments/media-types/application/msc-ivr+xml}"],"xrefs":{"rfc":["rfc6231"],"template":["application/msc-ivr+xml"]},"registered":true},{"content-type":"application/msc-mixer+xml","encoding":"base64","references":["IANA","RFC6505","{application/msc-mixer+xml=http://www.iana.org/assignments/media-types/application/msc-mixer+xml}"],"xrefs":{"rfc":["rfc6505"],"template":["application/msc-mixer+xml"]},"registered":true},{"content-type":"application/msword","friendly":{"en":"Microsoft Word"},"encoding":"base64","extensions":["doc","dot","wrd"],"references":["IANA","[Paul_Lindner]","{application/msword=http://www.iana.org/assignments/media-types/application/msword}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/msword"]},"registered":true},{"content-type":"application/mxf","friendly":{"en":"Material Exchange Format"},"encoding":"base64","extensions":["mxf"],"references":["IANA","RFC4539","{application/mxf=http://www.iana.org/assignments/media-types/application/mxf}"],"xrefs":{"rfc":["rfc4539"],"template":["application/mxf"]},"registered":true},{"content-type":"application/nasdata","encoding":"base64","references":["IANA","RFC4707","{application/nasdata=http://www.iana.org/assignments/media-types/application/nasdata}"],"xrefs":{"rfc":["rfc4707"],"template":["application/nasdata"]},"registered":true},{"content-type":"application/netcdf","encoding":"base64","extensions":["nc","cdf"],"registered":false},{"content-type":"application/news-checkgroups","encoding":"base64","references":["IANA","RFC5537","{application/news-checkgroups=http://www.iana.org/assignments/media-types/application/news-checkgroups}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-checkgroups"]},"registered":true},{"content-type":"application/news-groupinfo","encoding":"base64","references":["IANA","RFC5537","{application/news-groupinfo=http://www.iana.org/assignments/media-types/application/news-groupinfo}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-groupinfo"]},"registered":true},{"content-type":"application/news-message-id","encoding":"base64","obsolete":true,"references":["IANA","RFC1036","[Spencer]"],"registered":false},{"content-type":"application/news-transmission","encoding":"base64","references":["IANA","RFC5537","{application/news-transmission=http://www.iana.org/assignments/media-types/application/news-transmission}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-transmission"]},"registered":true},{"content-type":"application/nlsml+xml","encoding":"base64","references":["IANA","RFC6787","{application/nlsml+xml=http://www.iana.org/assignments/media-types/application/nlsml+xml}"],"xrefs":{"rfc":["rfc6787"],"template":["application/nlsml+xml"]},"registered":true},{"content-type":"application/nss","encoding":"base64","references":["IANA","[Michael_Hammer]","{application/nss=http://www.iana.org/assignments/media-types/application/nss}"],"xrefs":{"person":["Michael_Hammer"],"template":["application/nss"]},"registered":true},{"content-type":"application/ocsp-request","encoding":"base64","references":["IANA","RFC6960","{application/ocsp-request=http://www.iana.org/assignments/media-types/application/ocsp-request}"],"xrefs":{"rfc":["rfc6960"],"template":["application/ocsp-request"]},"registered":true},{"content-type":"application/ocsp-response","encoding":"base64","references":["IANA","RFC6960","{application/oscp-response=http://www.iana.org/assignments/media-types/application/oscp-response}"],"xrefs":{"rfc":["rfc6960"],"template":["application/oscp-response"]},"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"],"references":["IANA","RFC2045","RFC2046","{application/octet-stream=http://www.iana.org/assignments/media-types/application/octet-stream}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/octet-stream"]},"registered":true},{"content-type":"application/oda","friendly":{"en":"Office Document Architecture"},"encoding":"base64","extensions":["oda"],"references":["IANA","RFC2045","RFC2046","{application/ODA=http://www.iana.org/assignments/media-types/application/ODA}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/ODA"]},"registered":true},{"content-type":"application/ODX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ODX=http://www.iana.org/assignments/media-types/application/ODX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ODX"]},"registered":true},{"content-type":"application/oebps-package+xml","friendly":{"en":"Open eBook Publication Structure"},"encoding":"base64","extensions":["opf"],"references":["IANA","RFC4839","{application/oebps-package+xml=http://www.iana.org/assignments/media-types/application/oebps-package+xml}"],"xrefs":{"rfc":["rfc4839"],"template":["application/oebps-package+xml"]},"registered":true},{"content-type":"application/ogg","friendly":{"en":"Ogg"},"encoding":"base64","extensions":["ogx"],"references":["IANA","RFC5334","{application/ogg=http://www.iana.org/assignments/media-types/application/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["application/ogg"]},"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"],"references":["IANA","[Ecma_International_Helpdesk]","{application/oxps=http://www.iana.org/assignments/media-types/application/oxps}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/oxps"]},"registered":true},{"content-type":"application/p2p-overlay+xml","encoding":"base64","references":["IANA","RFC6940","{application/p2p-overlay+xml=http://www.iana.org/assignments/media-types/application/p2p-overlay+xml}"],"xrefs":{"rfc":["rfc6940"],"template":["application/p2p-overlay+xml"]},"registered":true},{"content-type":"application/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"application/patch-ops-error+xml","friendly":{"en":"XML Patch Framework"},"encoding":"base64","extensions":["xer"],"references":["IANA","RFC5261","{application/patch-ops-error+xml=http://www.iana.org/assignments/media-types/application/patch-ops-error+xml}"],"xrefs":{"rfc":["rfc5261"],"template":["application/patch-ops-error+xml"]},"registered":true},{"content-type":"application/pdf","friendly":{"en":"Adobe Portable Document Format"},"encoding":"base64","extensions":["pdf"],"references":["IANA","RFC3778","{application/pdf=http://www.iana.org/assignments/media-types/application/pdf}"],"xrefs":{"rfc":["rfc3778"],"template":["application/pdf"]},"registered":true},{"content-type":"application/PDX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/PDX=http://www.iana.org/assignments/media-types/application/PDX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/PDX"]},"registered":true},{"content-type":"application/pgp-encrypted","friendly":{"en":"Pretty Good Privacy"},"encoding":"7bit","extensions":["pgp"],"references":["IANA","RFC3156","{application/pgp-encrypted=http://www.iana.org/assignments/media-types/application/pgp-encrypted}"],"xrefs":{"rfc":["rfc3156"],"template":["application/pgp-encrypted"]},"registered":true},{"content-type":"application/pgp-keys","encoding":"7bit","references":["IANA","RFC3156"],"xrefs":{"rfc":["rfc3156"]},"registered":true,"signature":true},{"content-type":"application/pgp-signature","friendly":{"en":"Pretty Good Privacy - Signature"},"encoding":"base64","extensions":["asc","sig"],"references":["IANA","RFC3156","{application/pgp-signature=http://www.iana.org/assignments/media-types/application/pgp-signature}"],"xrefs":{"rfc":["rfc3156"],"template":["application/pgp-signature"]},"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","references":["IANA","RFC3863","{application/pidf+xml=http://www.iana.org/assignments/media-types/application/pidf+xml}"],"xrefs":{"rfc":["rfc3863"],"template":["application/pidf+xml"]},"registered":true},{"content-type":"application/pidf-diff+xml","encoding":"base64","references":["IANA","RFC5262","{application/pidf-diff+xml=http://www.iana.org/assignments/media-types/application/pidf-diff+xml}"],"xrefs":{"rfc":["rfc5262"],"template":["application/pidf-diff+xml"]},"registered":true},{"content-type":"application/pkcs10","friendly":{"en":"PKCS #10 - Certification Request Standard"},"encoding":"base64","extensions":["p10"],"references":["IANA","RFC5967","{application/pkcs10=http://www.iana.org/assignments/media-types/application/pkcs10}"],"xrefs":{"rfc":["rfc5967"],"template":["application/pkcs10"]},"registered":true,"signature":true},{"content-type":"application/pkcs7-mime","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7m","p7c"],"references":["IANA","RFC5751","RFC7114","{application/pkcs7-mime=http://www.iana.org/assignments/media-types/application/pkcs7-mime}"],"xrefs":{"rfc":["rfc5751","rfc7114"],"template":["application/pkcs7-mime"]},"registered":true,"signature":true},{"content-type":"application/pkcs7-signature","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7s"],"references":["IANA","RFC5751","{application/pkcs7-signature=http://www.iana.org/assignments/media-types/application/pkcs7-signature}"],"xrefs":{"rfc":["rfc5751"],"template":["application/pkcs7-signature"]},"registered":true,"signature":true},{"content-type":"application/pkcs8","friendly":{"en":"PKCS #8 - Private-Key Information Syntax Standard"},"encoding":"base64","extensions":["p8"],"references":["IANA","RFC5958","{application/pkcs8=http://www.iana.org/assignments/media-types/application/pkcs8}"],"xrefs":{"rfc":["rfc5958"],"template":["application/pkcs8"]},"registered":true},{"content-type":"application/pkix-attr-cert","friendly":{"en":"Attribute Certificate"},"encoding":"base64","extensions":["ac"],"references":["IANA","RFC5877","{application/pkix-attr-cert=http://www.iana.org/assignments/media-types/application/pkix-attr-cert}"],"xrefs":{"rfc":["rfc5877"],"template":["application/pkix-attr-cert"]},"registered":true},{"content-type":"application/pkix-cert","friendly":{"en":"Internet Public Key Infrastructure - Certificate"},"encoding":"base64","extensions":["cer"],"references":["IANA","RFC2585","{application/pkix-cert=http://www.iana.org/assignments/media-types/application/pkix-cert}"],"xrefs":{"rfc":["rfc2585"],"template":["application/pkix-cert"]},"registered":true},{"content-type":"application/pkix-crl","friendly":{"en":"Internet Public Key Infrastructure - Certificate Revocation Lists"},"encoding":"base64","extensions":["crl"],"references":["IANA","RFC2585","{application/pkix-crl=http://www.iana.org/assignments/media-types/application/pkix-crl}"],"xrefs":{"rfc":["rfc2585"],"template":["application/pkix-crl"]},"registered":true},{"content-type":"application/pkix-pkipath","friendly":{"en":"Internet Public Key Infrastructure - Certification Path"},"encoding":"base64","extensions":["pkipath"],"references":["IANA","RFC6066","{application/pkix-pkipath=http://www.iana.org/assignments/media-types/application/pkix-pkipath}"],"xrefs":{"rfc":["rfc6066"],"template":["application/pkix-pkipath"]},"registered":true},{"content-type":"application/pkixcmp","friendly":{"en":"Internet Public Key Infrastructure - Certificate Management Protocole"},"encoding":"base64","extensions":["pki"],"references":["IANA","RFC2510","{application/pkixcmp=http://www.iana.org/assignments/media-types/application/pkixcmp}"],"xrefs":{"rfc":["rfc2510"],"template":["application/pkixcmp"]},"registered":true},{"content-type":"application/pls+xml","friendly":{"en":"Pronunciation Lexicon Specification"},"encoding":"base64","extensions":["pls"],"references":["IANA","RFC4267","{application/pls+xml=http://www.iana.org/assignments/media-types/application/pls+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/pls+xml"]},"registered":true},{"content-type":"application/poc-settings+xml","encoding":"base64","references":["IANA","RFC4354","{application/poc-settings+xml=http://www.iana.org/assignments/media-types/application/poc-settings+xml}"],"xrefs":{"rfc":["rfc4354"],"template":["application/poc-settings+xml"]},"registered":true},{"content-type":"application/postscript","friendly":{"en":"PostScript"},"encoding":"8bit","extensions":["ai","eps","ps"],"references":["IANA","RFC2045","RFC2046","{application/postscript=http://www.iana.org/assignments/media-types/application/postscript}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/postscript"]},"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","references":["IANA","[W3C]","[Ivan_Herman]","{application/provenance+xml=http://www.iana.org/assignments/media-types/application/provenance+xml}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["application/provenance+xml"]},"registered":true},{"content-type":"application/prs.alvestrand.titrax-sheet","encoding":"base64","references":["IANA","[Harald_T._Alvestrand]","{application/prs.alvestrand.titrax-sheet=http://www.iana.org/assignments/media-types/application/prs.alvestrand.titrax-sheet}"],"xrefs":{"person":["Harald_T._Alvestrand"],"template":["application/prs.alvestrand.titrax-sheet"]},"registered":true},{"content-type":"application/prs.cww","friendly":{"en":"CU-Writer"},"encoding":"base64","extensions":["cw","cww"],"references":["IANA","[Khemchart_Rungchavalnont]","{application/prs.cww=http://www.iana.org/assignments/media-types/application/prs.cww}"],"xrefs":{"person":["Khemchart_Rungchavalnont"],"template":["application/prs.cww"]},"registered":true},{"content-type":"application/prs.hpub+zip","encoding":"base64","references":["IANA","[Giulio_Zambon]","{application/prs.hpub+zip=http://www.iana.org/assignments/media-types/application/prs.hpub+zip}"],"xrefs":{"person":["Giulio_Zambon"],"template":["application/prs.hpub+zip"]},"registered":true},{"content-type":"application/prs.nprend","encoding":"base64","extensions":["rnd","rct"],"references":["IANA","[Jay_Doggett]","{application/prs.nprend=http://www.iana.org/assignments/media-types/application/prs.nprend}"],"xrefs":{"person":["Jay_Doggett"],"template":["application/prs.nprend"]},"registered":true},{"content-type":"application/prs.plucker","encoding":"base64","references":["IANA","[Bill_Janssen]","{application/prs.plucker=http://www.iana.org/assignments/media-types/application/prs.plucker}"],"xrefs":{"person":["Bill_Janssen"],"template":["application/prs.plucker"]},"registered":true},{"content-type":"application/prs.rdf-xml-crypt","encoding":"base64","references":["IANA","[Toby_Inkster]","{application/prs.rdf-xml-crypt=http://www.iana.org/assignments/media-types/application/prs.rdf-xml-crypt}"],"xrefs":{"person":["Toby_Inkster"],"template":["application/prs.rdf-xml-crypt"]},"registered":true},{"content-type":"application/prs.xsf+xml","encoding":"base64","references":["IANA","[Maik_Stührenberg]","{application/prs.xsf+xml=http://www.iana.org/assignments/media-types/application/prs.xsf+xml}"],"xrefs":{"person":["Maik_Stührenberg"],"template":["application/prs.xsf+xml"]},"registered":true},{"content-type":"application/pskc+xml","friendly":{"en":"Portable Symmetric Key Container"},"encoding":"base64","extensions":["pskcxml"],"references":["IANA","RFC6030","{application/pskc+xml=http://www.iana.org/assignments/media-types/application/pskc+xml}"],"xrefs":{"rfc":["rfc6030"],"template":["application/pskc+xml"]},"registered":true},{"content-type":"application/qsig","encoding":"base64","references":["IANA","RFC3204","{application/QSIG=http://www.iana.org/assignments/media-types/application/QSIG}"],"xrefs":{"rfc":["rfc3204"],"template":["application/QSIG"]},"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","references":["IANA","RFC6682","{application/raptorfec=http://www.iana.org/assignments/media-types/application/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["application/raptorfec"]},"registered":true},{"content-type":"application/rdap+json","encoding":"base64","references":["IANA","RFC7483","{application/rdap+json=http://www.iana.org/assignments/media-types/application/rdap+json}"],"xrefs":{"rfc":["rfc7483"],"template":["application/rdap+json"]},"registered":true},{"content-type":"application/rdf+xml","friendly":{"en":"Resource Description Framework"},"encoding":"8bit","extensions":["rdf"],"references":["IANA","RFC3870","{application/rdf+xml=http://www.iana.org/assignments/media-types/application/rdf+xml}"],"xrefs":{"rfc":["rfc3870"],"template":["application/rdf+xml"]},"registered":true},{"content-type":"application/reginfo+xml","friendly":{"en":"IMS Networks"},"encoding":"base64","extensions":["rif"],"references":["IANA","RFC3680","{application/reginfo+xml=http://www.iana.org/assignments/media-types/application/reginfo+xml}"],"xrefs":{"rfc":["rfc3680"],"template":["application/reginfo+xml"]},"registered":true},{"content-type":"application/relax-ng-compact-syntax","friendly":{"en":"Relax NG Compact Syntax"},"encoding":"base64","extensions":["rnc"],"references":["IANA","{http://www.jtc1sc34.org/repository/0661.pdf}","{application/relax-ng-compact-syntax=http://www.iana.org/assignments/media-types/application/relax-ng-compact-syntax}"],"xrefs":{"uri":["http://www.jtc1sc34.org/repository/0661.pdf"],"template":["application/relax-ng-compact-syntax"]},"registered":true},{"content-type":"application/remote-printing","encoding":"base64","references":["IANA","RFC1486","[Marshall_Rose]","{application/remote-printing=http://www.iana.org/assignments/media-types/application/remote-printing}"],"xrefs":{"rfc":["rfc1486"],"person":["Marshall_Rose"],"template":["application/remote-printing"]},"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","references":["IANA","RFC7071","{application/reputon+json=http://www.iana.org/assignments/media-types/application/reputon+json}"],"xrefs":{"rfc":["rfc7071"],"template":["application/reputon+json"]},"registered":true},{"content-type":"application/resource-lists+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rl"],"references":["IANA","RFC4826","{application/resource-lists+xml=http://www.iana.org/assignments/media-types/application/resource-lists+xml}"],"xrefs":{"rfc":["rfc4826"],"template":["application/resource-lists+xml"]},"registered":true},{"content-type":"application/resource-lists-diff+xml","friendly":{"en":"XML Resource Lists Diff"},"encoding":"base64","extensions":["rld"],"references":["IANA","RFC5362","{application/resource-lists-diff+xml=http://www.iana.org/assignments/media-types/application/resource-lists-diff+xml}"],"xrefs":{"rfc":["rfc5362"],"template":["application/resource-lists-diff+xml"]},"registered":true},{"content-type":"application/riscos","encoding":"base64","references":["IANA","[Nick_Smith]","{application/riscos=http://www.iana.org/assignments/media-types/application/riscos}"],"xrefs":{"person":["Nick_Smith"],"template":["application/riscos"]},"registered":true},{"content-type":"application/rlmi+xml","encoding":"base64","references":["IANA","RFC4662","{application/rlmi+xml=http://www.iana.org/assignments/media-types/application/rlmi+xml}"],"xrefs":{"rfc":["rfc4662"],"template":["application/rlmi+xml"]},"registered":true},{"content-type":"application/rls-services+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rs"],"references":["IANA","RFC4826","{application/rls-services+xml=http://www.iana.org/assignments/media-types/application/rls-services+xml}"],"xrefs":{"rfc":["rfc4826"],"template":["application/rls-services+xml"]},"registered":true},{"content-type":"application/rpki-ghostbusters","encoding":"base64","extensions":["gbr"],"references":["IANA","RFC6493","{application/rpki-ghostbusters=http://www.iana.org/assignments/media-types/application/rpki-ghostbusters}"],"xrefs":{"rfc":["rfc6493"],"template":["application/rpki-ghostbusters"]},"registered":true},{"content-type":"application/rpki-manifest","encoding":"base64","extensions":["mft"],"references":["IANA","RFC6481","{application/rpki-manifest=http://www.iana.org/assignments/media-types/application/rpki-manifest}"],"xrefs":{"rfc":["rfc6481"],"template":["application/rpki-manifest"]},"registered":true},{"content-type":"application/rpki-roa","encoding":"base64","extensions":["roa"],"references":["IANA","RFC6481","{application/rpki-roa=http://www.iana.org/assignments/media-types/application/rpki-roa}"],"xrefs":{"rfc":["rfc6481"],"template":["application/rpki-roa"]},"registered":true},{"content-type":"application/rpki-updown","encoding":"base64","references":["IANA","RFC6492","{application/rpki-updown=http://www.iana.org/assignments/media-types/application/rpki-updown}"],"xrefs":{"rfc":["rfc6492"],"template":["application/rpki-updown"]},"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"],"references":["IANA","[Paul_Lindner]","{application/rtf=http://www.iana.org/assignments/media-types/application/rtf}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/rtf"]},"registered":true},{"content-type":"application/rtploopback","encoding":"base64","references":["IANA","RFC6849","{application/rtploopback=http://www.iana.org/assignments/media-types/application/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["application/rtploopback"]},"registered":true},{"content-type":"application/rtx","encoding":"base64","references":["IANA","RFC4588","{application/rtx=http://www.iana.org/assignments/media-types/application/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["application/rtx"]},"registered":true},{"content-type":"application/samlassertion+xml","encoding":"base64","references":["IANA","[OASIS_Security_Services_Technical_Committee_SSTC]","{application/samlassertion+xml=http://www.iana.org/assignments/media-types/application/samlassertion+xml}"],"xrefs":{"person":["OASIS_Security_Services_Technical_Committee_SSTC"],"template":["application/samlassertion+xml"]},"registered":true},{"content-type":"application/samlmetadata+xml","encoding":"base64","references":["IANA","[OASIS_Security_Services_Technical_Committee_SSTC]","{application/samlmetadata+xml=http://www.iana.org/assignments/media-types/application/samlmetadata+xml}"],"xrefs":{"person":["OASIS_Security_Services_Technical_Committee_SSTC"],"template":["application/samlmetadata+xml"]},"registered":true},{"content-type":"application/sbml+xml","friendly":{"en":"Systems Biology Markup Language"},"encoding":"base64","extensions":["sbml"],"references":["IANA","RFC3823","{application/sbml+xml=http://www.iana.org/assignments/media-types/application/sbml+xml}"],"xrefs":{"rfc":["rfc3823"],"template":["application/sbml+xml"]},"registered":true},{"content-type":"application/scaip+xml","encoding":"base64","references":["IANA","[SIS]","[Oskar_Jonsson]","{application/scaip+xml=http://www.iana.org/assignments/media-types/application/scaip+xml}"],"xrefs":{"person":["Oskar_Jonsson","SIS"],"template":["application/scaip+xml"]},"registered":true},{"content-type":"application/scvp-cv-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Request"},"encoding":"base64","extensions":["scq"],"references":["IANA","RFC5055","{application/scvp-cv-request=http://www.iana.org/assignments/media-types/application/scvp-cv-request}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-cv-request"]},"registered":true},{"content-type":"application/scvp-cv-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Response"},"encoding":"base64","extensions":["scs"],"references":["IANA","RFC5055","{application/scvp-cv-response=http://www.iana.org/assignments/media-types/application/scvp-cv-response}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-cv-response"]},"registered":true},{"content-type":"application/scvp-vp-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Request"},"encoding":"base64","extensions":["spq"],"references":["IANA","RFC5055","{application/scvp-vp-request=http://www.iana.org/assignments/media-types/application/scvp-vp-request}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-vp-request"]},"registered":true},{"content-type":"application/scvp-vp-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Response"},"encoding":"base64","extensions":["spp"],"references":["IANA","RFC5055","{application/scvp-vp-response=http://www.iana.org/assignments/media-types/application/scvp-vp-response}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-vp-response"]},"registered":true},{"content-type":"application/sdp","friendly":{"en":"Session Description Protocol"},"encoding":"base64","extensions":["sdp"],"references":["IANA","RFC4566","{application/sdp=http://www.iana.org/assignments/media-types/application/sdp}"],"xrefs":{"rfc":["rfc4566"],"template":["application/sdp"]},"registered":true},{"content-type":"application/sep+xml","encoding":"base64","references":["IANA","[Robby_Simpson]","[ZigBee]","{application/sep+xml=http://www.iana.org/assignments/media-types/application/sep+xml}"],"xrefs":{"person":["Robby_Simpson","ZigBee"],"template":["application/sep+xml"]},"registered":true},{"content-type":"application/sep-exi","encoding":"base64","references":["IANA","[Robby_Simpson]","[ZigBee]","{application/sep-exi=http://www.iana.org/assignments/media-types/application/sep-exi}"],"xrefs":{"person":["Robby_Simpson","ZigBee"],"template":["application/sep-exi"]},"registered":true},{"content-type":"application/session-info","encoding":"base64","references":["IANA","[ThreeGPP]","[Frederic_Firmin]","{application/session-info=http://www.iana.org/assignments/media-types/application/session-info}"],"xrefs":{"person":["Frederic_Firmin","ThreeGPP"],"template":["application/session-info"]},"registered":true},{"content-type":"application/set","encoding":"base64","registered":false},{"content-type":"application/set-payment","encoding":"base64","references":["IANA","[Brian_Korver]","{application/set-payment=http://www.iana.org/assignments/media-types/application/set-payment}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-payment"]},"registered":true},{"content-type":"application/set-payment-initiation","friendly":{"en":"Secure Electronic Transaction - Payment"},"encoding":"base64","extensions":["setpay"],"references":["IANA","[Brian_Korver]","{application/set-payment-initiation=http://www.iana.org/assignments/media-types/application/set-payment-initiation}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-payment-initiation"]},"registered":true},{"content-type":"application/set-registration","encoding":"base64","references":["IANA","[Brian_Korver]","{application/set-registration=http://www.iana.org/assignments/media-types/application/set-registration}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-registration"]},"registered":true},{"content-type":"application/set-registration-initiation","friendly":{"en":"Secure Electronic Transaction - Registration"},"encoding":"base64","extensions":["setreg"],"references":["IANA","[Brian_Korver]","{application/set-registration-initiation=http://www.iana.org/assignments/media-types/application/set-registration-initiation}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-registration-initiation"]},"registered":true},{"content-type":"application/sgml","encoding":"base64","extensions":["sgml"],"references":["IANA","RFC1874","{application/SGML=http://www.iana.org/assignments/media-types/application/SGML}"],"xrefs":{"rfc":["rfc1874"],"template":["application/SGML"]},"registered":true},{"content-type":"application/sgml-open-catalog","encoding":"base64","extensions":["soc"],"references":["IANA","[Paul_Grosso]","{application/sgml-open-catalog=http://www.iana.org/assignments/media-types/application/sgml-open-catalog}"],"xrefs":{"person":["Paul_Grosso"],"template":["application/sgml-open-catalog"]},"registered":true},{"content-type":"application/shf+xml","friendly":{"en":"S Hexdump Format"},"encoding":"base64","extensions":["shf"],"references":["IANA","RFC4194","{application/shf+xml=http://www.iana.org/assignments/media-types/application/shf+xml}"],"xrefs":{"rfc":["rfc4194"],"template":["application/shf+xml"]},"registered":true},{"content-type":"application/sieve","encoding":"base64","extensions":["siv"],"references":["IANA","RFC5228","{application/sieve=http://www.iana.org/assignments/media-types/application/sieve}"],"xrefs":{"rfc":["rfc5228"],"template":["application/sieve"]},"registered":true},{"content-type":"application/simple-filter+xml","encoding":"base64","references":["IANA","RFC4661","{application/simple-filter+xml=http://www.iana.org/assignments/media-types/application/simple-filter+xml}"],"xrefs":{"rfc":["rfc4661"],"template":["application/simple-filter+xml"]},"registered":true},{"content-type":"application/simple-message-summary","encoding":"base64","references":["IANA","RFC3842","{application/simple-message-summary=http://www.iana.org/assignments/media-types/application/simple-message-summary}"],"xrefs":{"rfc":["rfc3842"],"template":["application/simple-message-summary"]},"registered":true},{"content-type":"application/simpleSymbolContainer","encoding":"base64","references":["IANA","[ThreeGPP]","{application/simpleSymbolContainer=http://www.iana.org/assignments/media-types/application/simpleSymbolContainer}"],"xrefs":{"person":["ThreeGPP"],"template":["application/simpleSymbolContainer"]},"registered":true},{"content-type":"application/SLA","encoding":"base64","registered":false},{"content-type":"application/slate","encoding":"base64","references":["IANA","[Terry_Crowley]","{application/slate=http://www.iana.org/assignments/media-types/application/slate}"],"xrefs":{"person":["Terry_Crowley"],"template":["application/slate"]},"registered":true},{"content-type":"application/smil","encoding":"8bit","extensions":["smi","smil"],"obsolete":true,"use-instead":"application/smil+xml","references":["IANA","RFC4536","{application/smil=http://www.iana.org/assignments/media-types/application/smil}"],"xrefs":{"rfc":["rfc4536"],"template":["application/smil"],"notes":["- OBSOLETED in favor of application/smil+xml"]},"registered":true},{"content-type":"application/smil+xml","friendly":{"en":"Synchronized Multimedia Integration Language"},"encoding":"8bit","extensions":["smi","smil"],"references":["IANA","RFC4536","{application/smil+xml=http://www.iana.org/assignments/media-types/application/smil+xml}"],"xrefs":{"rfc":["rfc4536"],"template":["application/smil+xml"]},"registered":true},{"content-type":"application/smpte336m","encoding":"base64","references":["IANA","RFC6597","{application/smpte336m=http://www.iana.org/assignments/media-types/application/smpte336m}"],"xrefs":{"rfc":["rfc6597"],"template":["application/smpte336m"]},"registered":true},{"content-type":"application/soap+fastinfoset","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/soap+fastinfoset=http://www.iana.org/assignments/media-types/application/soap+fastinfoset}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/soap+fastinfoset"]},"registered":true},{"content-type":"application/soap+xml","encoding":"base64","references":["IANA","RFC3902","{application/soap+xml=http://www.iana.org/assignments/media-types/application/soap+xml}"],"xrefs":{"rfc":["rfc3902"],"template":["application/soap+xml"]},"registered":true},{"content-type":"application/solids","encoding":"base64","registered":false},{"content-type":"application/sparql-query","friendly":{"en":"SPARQL - Query"},"encoding":"base64","extensions":["rq"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType"]},"registered":true},{"content-type":"application/sparql-results+xml","friendly":{"en":"SPARQL - Results"},"encoding":"base64","extensions":["srx"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime"]},"registered":true},{"content-type":"application/spirits-event+xml","encoding":"base64","references":["IANA","RFC3910","{application/spirits-event+xml=http://www.iana.org/assignments/media-types/application/spirits-event+xml}"],"xrefs":{"rfc":["rfc3910"],"template":["application/spirits-event+xml"]},"registered":true},{"content-type":"application/sql","encoding":"base64","references":["IANA","RFC6922","{application/sql=http://www.iana.org/assignments/media-types/application/sql}"],"xrefs":{"rfc":["rfc6922"],"template":["application/sql"]},"registered":true},{"content-type":"application/srgs","friendly":{"en":"Speech Recognition Grammar Specification"},"encoding":"base64","extensions":["gram"],"references":["IANA","RFC4267","{application/srgs=http://www.iana.org/assignments/media-types/application/srgs}"],"xrefs":{"rfc":["rfc4267"],"template":["application/srgs"]},"registered":true},{"content-type":"application/srgs+xml","friendly":{"en":"Speech Recognition Grammar Specification - XML"},"encoding":"base64","extensions":["grxml"],"references":["IANA","RFC4267","{application/srgs+xml=http://www.iana.org/assignments/media-types/application/srgs+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/srgs+xml"]},"registered":true},{"content-type":"application/sru+xml","friendly":{"en":"Search/Retrieve via URL Response Format"},"encoding":"base64","extensions":["sru"],"references":["IANA","RFC6207","{application/sru+xml=http://www.iana.org/assignments/media-types/application/sru+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/sru+xml"]},"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"],"references":["IANA","RFC4267","{application/ssml+xml=http://www.iana.org/assignments/media-types/application/ssml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/ssml+xml"]},"registered":true},{"content-type":"application/STEP","encoding":"base64","registered":false},{"content-type":"application/tamp-apex-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-apex-update=http://www.iana.org/assignments/media-types/application/tamp-apex-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-apex-update"]},"registered":true},{"content-type":"application/tamp-apex-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-apex-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-apex-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-apex-update-confirm"]},"registered":true},{"content-type":"application/tamp-community-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-community-update=http://www.iana.org/assignments/media-types/application/tamp-community-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-community-update"]},"registered":true},{"content-type":"application/tamp-community-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-community-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-community-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-community-update-confirm"]},"registered":true},{"content-type":"application/tamp-error","encoding":"base64","references":["IANA","RFC5934","{application/tamp-error=http://www.iana.org/assignments/media-types/application/tamp-error}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-error"]},"registered":true},{"content-type":"application/tamp-sequence-adjust","encoding":"base64","references":["IANA","RFC5934","{application/tamp-sequence-adjust=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-sequence-adjust"]},"registered":true},{"content-type":"application/tamp-sequence-adjust-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-sequence-adjust-confirm=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-sequence-adjust-confirm"]},"registered":true},{"content-type":"application/tamp-status-query","encoding":"base64","references":["IANA","RFC5934","{application/tamp-status-query=http://www.iana.org/assignments/media-types/application/tamp-status-query}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-status-query"]},"registered":true},{"content-type":"application/tamp-status-response","encoding":"base64","references":["IANA","RFC5934","{application/tamp-status-response=http://www.iana.org/assignments/media-types/application/tamp-status-response}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-status-response"]},"registered":true},{"content-type":"application/tamp-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-update=http://www.iana.org/assignments/media-types/application/tamp-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-update"]},"registered":true},{"content-type":"application/tamp-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-update-confirm"]},"registered":true},{"content-type":"application/tei+xml","friendly":{"en":"Text Encoding and Interchange"},"encoding":"base64","extensions":["tei","teicorpus"],"references":["IANA","RFC6129","{application/tei+xml=http://www.iana.org/assignments/media-types/application/tei+xml}"],"xrefs":{"rfc":["rfc6129"],"template":["application/tei+xml"]},"registered":true},{"content-type":"application/thraud+xml","friendly":{"en":"Sharing Transaction Fraud Data"},"encoding":"base64","extensions":["tfi"],"references":["IANA","RFC5941","{application/thraud+xml=http://www.iana.org/assignments/media-types/application/thraud+xml}"],"xrefs":{"rfc":["rfc5941"],"template":["application/thraud+xml"]},"registered":true},{"content-type":"application/timestamp-query","encoding":"base64","references":["IANA","RFC3161","{application/timestamp-query=http://www.iana.org/assignments/media-types/application/timestamp-query}"],"xrefs":{"rfc":["rfc3161"],"template":["application/timestamp-query"]},"registered":true},{"content-type":"application/timestamp-reply","encoding":"base64","references":["IANA","RFC3161","{application/timestamp-reply=http://www.iana.org/assignments/media-types/application/timestamp-reply}"],"xrefs":{"rfc":["rfc3161"],"template":["application/timestamp-reply"]},"registered":true},{"content-type":"application/timestamped-data","friendly":{"en":"Time Stamped Data Envelope"},"encoding":"base64","extensions":["tsd"],"references":["IANA","RFC5955","{application/timestamped-data=http://www.iana.org/assignments/media-types/application/timestamped-data}"],"xrefs":{"rfc":["rfc5955"],"template":["application/timestamped-data"]},"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","references":["IANA","[W3C]","[W3C_Timed_Text_Working_Group]","{application/ttml+xml=http://www.iana.org/assignments/media-types/application/ttml+xml}"],"xrefs":{"person":["W3C","W3C_Timed_Text_Working_Group"],"template":["application/ttml+xml"]},"registered":true},{"content-type":"application/tve-trigger","encoding":"base64","references":["IANA","[Linda_Welsh]","{application/tve-trigger=http://www.iana.org/assignments/media-types/application/tve-trigger}"],"xrefs":{"person":["Linda_Welsh"],"template":["application/tve-trigger"]},"registered":true},{"content-type":"application/ulpfec","encoding":"base64","references":["IANA","RFC5109","{application/ulpfec=http://www.iana.org/assignments/media-types/application/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["application/ulpfec"]},"registered":true},{"content-type":"application/urc-grpsheet+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-grpsheet+xml=http://www.iana.org/assignments/media-types/application/urc-grpsheet+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"text":[null],"template":["application/urc-grpsheet+xml"]},"registered":true},{"content-type":"application/urc-ressheet+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-ressheet+xml=http://www.iana.org/assignments/media-types/application/urc-ressheet+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"text":[null],"template":["application/urc-ressheet+xml"]},"registered":true},{"content-type":"application/urc-targetdesc+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-targetdesc+xml=http://www.iana.org/assignments/media-types/application/urc-targetdesc+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"text":[null],"template":["application/urc-targetdesc+xml"]},"registered":true},{"content-type":"application/urc-uisocketdesc+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-uisocketdesc+xml=http://www.iana.org/assignments/media-types/application/urc-uisocketdesc+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-uisocketdesc+xml"]},"registered":true},{"content-type":"application/vcard+json","encoding":"base64","references":["IANA","RFC7095","{application/vcard+json=http://www.iana.org/assignments/media-types/application/vcard+json}"],"xrefs":{"rfc":["rfc7095"],"template":["application/vcard+json"]},"registered":true},{"content-type":"application/vcard+xml","encoding":"base64","references":["IANA","RFC6351","{application/vcard+xml=http://www.iana.org/assignments/media-types/application/vcard+xml}"],"xrefs":{"rfc":["rfc6351"],"template":["application/vcard+xml"]},"registered":true},{"content-type":"application/vda","encoding":"base64","registered":false},{"content-type":"application/vemmi","encoding":"base64","references":["IANA","RFC2122","{application/vemmi=http://www.iana.org/assignments/media-types/application/vemmi}"],"xrefs":{"rfc":["rfc2122"],"template":["application/vemmi"]},"registered":true},{"content-type":"application/VMSBACKUP","encoding":"base64","extensions":["bck"],"obsolete":true,"use-instead":"application/x-VMSBACKUP","registered":false},{"content-type":"application/vnd.3gpp.bsf+xml","encoding":"base64","references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.bsf+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.bsf+xml}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.bsf+xml"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-large","friendly":{"en":"3rd Generation Partnership Project - Pic Large"},"encoding":"base64","extensions":["plb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-large=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-large}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-large"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-small","friendly":{"en":"3rd Generation Partnership Project - Pic Small"},"encoding":"base64","extensions":["psb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-small=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-small}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-small"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-var","friendly":{"en":"3rd Generation Partnership Project - Pic Var"},"encoding":"base64","extensions":["pvb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-var=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-var}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-var"]},"registered":true},{"content-type":"application/vnd.3gpp.sms","encoding":"base64","extensions":["sms"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp.sms}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.sms"]},"registered":true},{"content-type":"application/vnd.3gpp2.bcmcsinfo+xml","encoding":"base64","references":["IANA","[Andy_Dryden]","{application/vnd.3gpp2.bcmcsinfo+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.bcmcsinfo+xml}"],"xrefs":{"person":["Andy_Dryden"],"template":["application/vnd.3gpp2.bcmcsinfo+xml"]},"registered":true},{"content-type":"application/vnd.3gpp2.sms","encoding":"base64","references":["IANA","[AC_Mahendran]","{application/vnd.3gpp2.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.sms}"],"xrefs":{"person":["AC_Mahendran"],"template":["application/vnd.3gpp2.sms"]},"registered":true},{"content-type":"application/vnd.3gpp2.tcap","friendly":{"en":"3rd Generation Partnership Project - Transaction Capabilities Application Part"},"encoding":"base64","extensions":["tcap"],"references":["IANA","[AC_Mahendran]","{application/vnd.3gpp2.tcap=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.tcap}"],"xrefs":{"person":["AC_Mahendran"],"template":["application/vnd.3gpp2.tcap"]},"registered":true},{"content-type":"application/vnd.3M.Post-it-Notes","friendly":{"en":"3M Post It Notes"},"encoding":"base64","extensions":["pwn"],"references":["IANA","[Michael_OBrien]","{application/vnd.3M.Post-it-Notes=http://www.iana.org/assignments/media-types/application/vnd.3M.Post-it-Notes}"],"xrefs":{"person":["Michael_OBrien"],"template":["application/vnd.3M.Post-it-Notes"]},"registered":true},{"content-type":"application/vnd.accpac.simply.aso","friendly":{"en":"Simply Accounting"},"encoding":"base64","extensions":["aso"],"references":["IANA","[Steve_Leow]","{application/vnd.accpac.simply.aso=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.aso}"],"xrefs":{"person":["Steve_Leow"],"template":["application/vnd.accpac.simply.aso"]},"registered":true},{"content-type":"application/vnd.accpac.simply.imp","friendly":{"en":"Simply Accounting - Data Import"},"encoding":"base64","extensions":["imp"],"references":["IANA","[Steve_Leow]","{application/vnd.accpac.simply.imp=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.imp}"],"xrefs":{"person":["Steve_Leow"],"template":["application/vnd.accpac.simply.imp"]},"registered":true},{"content-type":"application/vnd.acucobol","friendly":{"en":"ACU Cobol"},"encoding":"base64","extensions":["acu"],"references":["IANA","[Dovid_Lubin]","{application/vnd-acucobol=http://www.iana.org/assignments/media-types/application/vnd-acucobol}"],"xrefs":{"person":["Dovid_Lubin"],"template":["application/vnd-acucobol"]},"registered":true},{"content-type":"application/vnd.acucorp","friendly":{"en":"ACU Cobol"},"encoding":"7bit","extensions":["atc","acutc"],"references":["IANA","[Dovid_Lubin]","{application/vnd.acucorp=http://www.iana.org/assignments/media-types/application/vnd.acucorp}"],"xrefs":{"person":["Dovid_Lubin"],"template":["application/vnd.acucorp"]},"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","references":["IANA","[Henrik_Andersson]","{application/vnd.adobe.flash-movie=http://www.iana.org/assignments/media-types/application/vnd.adobe.flash-movie}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.adobe.flash-movie"]},"registered":true},{"content-type":"application/vnd.adobe.formscentral.fcdt","encoding":"base64","extensions":["fcdt"],"references":["IANA","[Chris_Solc]","{application/vnd.adobe.formscentral.fcdt=http://www.iana.org/assignments/media-types/application/vnd.adobe.formscentral.fcdt}"],"xrefs":{"person":["Chris_Solc"],"template":["application/vnd.adobe.formscentral.fcdt"]},"registered":true},{"content-type":"application/vnd.adobe.fxp","friendly":{"en":"Adobe Flex Project"},"encoding":"base64","extensions":["fxp","fxpl"],"references":["IANA","[Robert_Brambley]","[Steven_Heintz]","{application/vnd.adobe.fxp=http://www.iana.org/assignments/media-types/application/vnd.adobe.fxp}"],"xrefs":{"person":["Robert_Brambley","Steven_Heintz"],"template":["application/vnd.adobe.fxp"]},"registered":true},{"content-type":"application/vnd.adobe.partial-upload","encoding":"base64","references":["IANA","[Tapani_Otala]","{application/vnd.adobe.partial-upload=http://www.iana.org/assignments/media-types/application/vnd.adobe.partial-upload}"],"xrefs":{"person":["Tapani_Otala"],"template":["application/vnd.adobe.partial-upload"]},"registered":true},{"content-type":"application/vnd.adobe.xdp+xml","friendly":{"en":"Adobe XML Data Package"},"encoding":"base64","extensions":["xdp"],"references":["IANA","[John_Brinkman]","{application/vnd.adobe.xdp+xml=http://www.iana.org/assignments/media-types/application/vnd.adobe.xdp+xml}"],"xrefs":{"person":["John_Brinkman"],"template":["application/vnd.adobe.xdp+xml"]},"registered":true},{"content-type":"application/vnd.adobe.xfdf","friendly":{"en":"Adobe XML Forms Data Format"},"encoding":"base64","extensions":["xfdf"],"references":["IANA","[Roberto_Perelman]","{application/vnd.adobe.xfdf=http://www.iana.org/assignments/media-types/application/vnd.adobe.xfdf}"],"xrefs":{"person":["Roberto_Perelman"],"template":["application/vnd.adobe.xfdf"]},"registered":true},{"content-type":"application/vnd.aether.imp","encoding":"base64","references":["IANA","[Jay_Moskowitz]","{application/vnd.aether.imp=http://www.iana.org/assignments/media-types/application/vnd.aether.imp}"],"xrefs":{"person":["Jay_Moskowitz"],"template":["application/vnd.aether.imp"]},"registered":true},{"content-type":"application/vnd.ah-barcode","encoding":"base64","references":["IANA","[Katsuhiko_Ichinose]","{application/vnd.ah-barcode=http://www.iana.org/assignments/media-types/application/vnd.ah-barcode}"],"xrefs":{"person":["Katsuhiko_Ichinose"],"template":["application/vnd.ah-barcode"]},"registered":true},{"content-type":"application/vnd.ahead.space","friendly":{"en":"Ahead AIR Application"},"encoding":"base64","extensions":["ahead"],"references":["IANA","[Tor_Kristensen]","{application/vnd.ahead.space=http://www.iana.org/assignments/media-types/application/vnd.ahead.space}"],"xrefs":{"person":["Tor_Kristensen"],"template":["application/vnd.ahead.space"]},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azf","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azf"],"references":["IANA","[Daniel_Mould]","[Gary_Clueit]","{application/vnd.airzip.filesecure.azf=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azf}"],"xrefs":{"person":["Daniel_Mould","Gary_Clueit"],"template":["application/vnd.airzip.filesecure.azf"]},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azs","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azs"],"references":["IANA","[Daniel_Mould]","[Gary_Clueit]","{application/vnd.airzip.filesecure.azs=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azs}"],"xrefs":{"person":["Daniel_Mould","Gary_Clueit"],"template":["application/vnd.airzip.filesecure.azs"]},"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"],"references":["IANA","[Gary_Sands]","{application/vnd.americandynamics.acc=http://www.iana.org/assignments/media-types/application/vnd.americandynamics.acc}"],"xrefs":{"person":["Gary_Sands"],"template":["application/vnd.americandynamics.acc"]},"registered":true},{"content-type":"application/vnd.amiga.ami","friendly":{"en":"AmigaDE"},"encoding":"base64","extensions":["ami"],"references":["IANA","[Kevin_Blumberg]","{application/vnd.amiga.ami=http://www.iana.org/assignments/media-types/application/vnd.amiga.ami}"],"xrefs":{"person":["Kevin_Blumberg"],"template":["application/vnd.amiga.ami"]},"registered":true},{"content-type":"application/vnd.amundsen.maze+xml","encoding":"base64","references":["IANA","[Mike_Amundsen]","{application/vnd.amundsen.maze+xml=http://www.iana.org/assignments/media-types/application/vnd.amundsen.maze+xml}"],"xrefs":{"person":["Mike_Amundsen"],"template":["application/vnd.amundsen.maze+xml"]},"registered":true},{"content-type":"application/vnd.android.package-archive","friendly":{"en":"Android Package Archive"},"encoding":"base64","extensions":["apk"],"registered":false},{"content-type":"application/vnd.anser-web-certificate-issue-initiation","friendly":{"en":"ANSER-WEB Terminal Client - Certificate Issue"},"encoding":"base64","extensions":["cii"],"references":["IANA","[Hiroyoshi_Mori]","{application/vnd.anser-web-certificate-issue-initiation=http://www.iana.org/assignments/media-types/application/vnd.anser-web-certificate-issue-initiation}"],"xrefs":{"person":["Hiroyoshi_Mori"],"template":["application/vnd.anser-web-certificate-issue-initiation"]},"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"],"references":["IANA","[Daniel_Shelton]","{application/vnd.antix.game-component=http://www.iana.org/assignments/media-types/application/vnd.antix.game-component}"],"xrefs":{"person":["Daniel_Shelton"],"template":["application/vnd.antix.game-component"]},"registered":true},{"content-type":"application/vnd.apache.thrift.binary","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.binary=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.binary}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.binary"]},"registered":true},{"content-type":"application/vnd.apache.thrift.compact","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.compact=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.compact}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.compact"]},"registered":true},{"content-type":"application/vnd.apache.thrift.json","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.json=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.json}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.json"]},"registered":true},{"content-type":"application/vnd.api+json","encoding":"base64","references":["IANA","[Steve_Klabnik]","{application/vnd.api+json=http://www.iana.org/assignments/media-types/application/vnd.api+json}"],"xrefs":{"person":["Steve_Klabnik"],"template":["application/vnd.api+json"]},"registered":true},{"content-type":"application/vnd.apple.installer+xml","friendly":{"en":"Apple Installer Package"},"encoding":"base64","extensions":["mpkg"],"references":["IANA","[Peter_Bierman]","{application/vnd.apple.installer+xml=http://www.iana.org/assignments/media-types/application/vnd.apple.installer+xml}"],"xrefs":{"person":["Peter_Bierman"],"template":["application/vnd.apple.installer+xml"]},"registered":true},{"content-type":"application/vnd.apple.mpegurl","friendly":{"en":"Multimedia Playlist Unicode"},"encoding":"base64","extensions":["m3u8"],"references":["IANA","[David_Singer]","[Roger_Pantos]","{application/vnd.apple.mpegurl=http://www.iana.org/assignments/media-types/application/vnd.apple.mpegurl}"],"xrefs":{"person":["David_Singer","Roger_Pantos"],"template":["application/vnd.apple.mpegurl"]},"registered":true},{"content-type":"application/vnd.apple.pkpass","encoding":"base64","extensions":["pkpass"],"references":["{Passbook Programming Guide=https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/PassKit_PG/Chapters/Introduction.html}"],"registered":false},{"content-type":"application/vnd.arastra.swi","encoding":"base64","obsolete":true,"use-instead":"application/vnd.aristanetworks.swi","references":["IANA","[Bill_Fenner]","{application/vnd.arastra.swi=http://www.iana.org/assignments/media-types/application/vnd.arastra.swi}"],"xrefs":{"person":["Bill_Fenner"],"template":["application/vnd.arastra.swi"],"notes":["- OBSOLETED in favor of application/vnd.aristanetworks.swi"]},"registered":true},{"content-type":"application/vnd.aristanetworks.swi","friendly":{"en":"Arista Networks Software Image"},"encoding":"base64","extensions":["swi"],"references":["IANA","[Bill_Fenner]","{application/vnd.aristanetworks.swi=http://www.iana.org/assignments/media-types/application/vnd.aristanetworks.swi}"],"xrefs":{"person":["Bill_Fenner"],"template":["application/vnd.aristanetworks.swi"]},"registered":true},{"content-type":"application/vnd.artsquare","encoding":"base64","references":["IANA","[Christopher_Smith]","{application/vnd.artsquare=http://www.iana.org/assignments/media-types/application/vnd.artsquare}"],"xrefs":{"person":["Christopher_Smith"],"template":["application/vnd.artsquare"]},"registered":true},{"content-type":"application/vnd.astraea-software.iota","encoding":"base64","extensions":["iota"],"references":["IANA","[Christopher_Snazell]","{application/vnd.astraea-software.iota=http://www.iana.org/assignments/media-types/application/vnd.astraea-software.iota}"],"xrefs":{"person":["Christopher_Snazell"],"template":["application/vnd.astraea-software.iota"]},"registered":true},{"content-type":"application/vnd.audiograph","friendly":{"en":"Audiograph"},"encoding":"base64","extensions":["aep"],"references":["IANA","[Horia_Cristian_Slusanschi]","{application/vnd.audiograph=http://www.iana.org/assignments/media-types/application/vnd.audiograph}"],"xrefs":{"person":["Horia_Cristian_Slusanschi"],"template":["application/vnd.audiograph"]},"registered":true},{"content-type":"application/vnd.autopackage","encoding":"base64","references":["IANA","[Mike_Hearn]","{application/vnd.autopackage=http://www.iana.org/assignments/media-types/application/vnd.autopackage}"],"xrefs":{"person":["Mike_Hearn"],"template":["application/vnd.autopackage"]},"registered":true},{"content-type":"application/vnd.avistar+xml","encoding":"base64","references":["IANA","[Vladimir_Vysotsky]","{application/vnd.avistar+xml=http://www.iana.org/assignments/media-types/application/vnd.avistar+xml}"],"xrefs":{"person":["Vladimir_Vysotsky"],"template":["application/vnd.avistar+xml"]},"registered":true},{"content-type":"application/vnd.balsamiq.bmml+xml","encoding":"base64","references":["IANA","[Giacomo_Guilizzoni]","{application/vnd.balsamiq.bmml+xml=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmml+xml}"],"xrefs":{"person":["Giacomo_Guilizzoni"],"template":["application/vnd.balsamiq.bmml+xml"]},"registered":true},{"content-type":"application/vnd.bekitzur-stech+json","encoding":"base64","references":["IANA","[Jegulsky]","{application/vnd.bekitzur-stech+json=http://www.iana.org/assignments/media-types/application/vnd.bekitzur-stech+json}"],"xrefs":{"person":["Jegulsky"],"template":["application/vnd.bekitzur-stech+json"]},"registered":true},{"content-type":"application/vnd.blueice.multipass","friendly":{"en":"Blueice Research Multipass"},"encoding":"base64","extensions":["mpm"],"references":["IANA","[Thomas_Holmstrom]","{application/vnd.blueice.multipass=http://www.iana.org/assignments/media-types/application/vnd.blueice.multipass}"],"xrefs":{"person":["Thomas_Holmstrom"],"template":["application/vnd.blueice.multipass"]},"registered":true},{"content-type":"application/vnd.bluetooth.ep.oob","encoding":"base64","references":["IANA","[Mike_Foley]","{application/vnd.bluetooth.ep.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.ep.oob}"],"xrefs":{"person":["Mike_Foley"],"template":["application/vnd.bluetooth.ep.oob"]},"registered":true},{"content-type":"application/vnd.bluetooth.le.oob","encoding":"base64","references":["IANA","[Mark_Powell]","{application/vnd.bluetooth.le.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.le.oob}"],"xrefs":{"person":["Mark_Powell"],"template":["application/vnd.bluetooth.le.oob"]},"registered":true},{"content-type":"application/vnd.bmi","friendly":{"en":"BMI Drawing Data Interchange"},"encoding":"base64","extensions":["bmi"],"references":["IANA","[Tadashi_Gotoh]","{application/vnd.bmi=http://www.iana.org/assignments/media-types/application/vnd.bmi}"],"xrefs":{"person":["Tadashi_Gotoh"],"template":["application/vnd.bmi"]},"registered":true},{"content-type":"application/vnd.businessobjects","friendly":{"en":"BusinessObjects"},"encoding":"base64","extensions":["rep"],"references":["IANA","[Philippe_Imoucha]","{application/vnd.businessobjects=http://www.iana.org/assignments/media-types/application/vnd.businessobjects}"],"xrefs":{"person":["Philippe_Imoucha"],"template":["application/vnd.businessobjects"]},"registered":true},{"content-type":"application/vnd.cab-jscript","encoding":"base64","references":["IANA","[Joerg_Falkenberg]","{application/vnd.cab-jscript=http://www.iana.org/assignments/media-types/application/vnd.cab-jscript}"],"xrefs":{"person":["Joerg_Falkenberg"],"template":["application/vnd.cab-jscript"]},"registered":true},{"content-type":"application/vnd.canon-cpdl","encoding":"base64","references":["IANA","[Shin_Muto]","{application/vnd.canon-cpdl=http://www.iana.org/assignments/media-types/application/vnd.canon-cpdl}"],"xrefs":{"person":["Shin_Muto"],"template":["application/vnd.canon-cpdl"]},"registered":true},{"content-type":"application/vnd.canon-lips","encoding":"base64","references":["IANA","[Shin_Muto]","{application/vnd.canon-lips=http://www.iana.org/assignments/media-types/application/vnd.canon-lips}"],"xrefs":{"person":["Shin_Muto"],"template":["application/vnd.canon-lips"]},"registered":true},{"content-type":"application/vnd.cendio.thinlinc.clientconf","encoding":"base64","references":["IANA","[Peter_Astrand]","{application/vnd.cendio.thinlinc.clientconf=http://www.iana.org/assignments/media-types/application/vnd.cendio.thinlinc.clientconf}"],"xrefs":{"person":["Peter_Astrand"],"template":["application/vnd.cendio.thinlinc.clientconf"]},"registered":true},{"content-type":"application/vnd.century-systems.tcp_stream","encoding":"base64","references":["IANA","[Shuji_Fujii]","{application/vnd.century-systems.tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.century-systems.tcp_stream}"],"xrefs":{"person":["Shuji_Fujii"],"template":["application/vnd.century-systems.tcp_stream"]},"registered":true},{"content-type":"application/vnd.chemdraw+xml","friendly":{"en":"CambridgeSoft Chem Draw"},"encoding":"base64","extensions":["cdxml"],"references":["IANA","[Glenn_Howes]","{application/vnd.chemdraw+xml=http://www.iana.org/assignments/media-types/application/vnd.chemdraw+xml}"],"xrefs":{"person":["Glenn_Howes"],"template":["application/vnd.chemdraw+xml"]},"registered":true},{"content-type":"application/vnd.chipnuts.karaoke-mmd","friendly":{"en":"Karaoke on Chipnuts Chipsets"},"encoding":"base64","extensions":["mmd"],"references":["IANA","[Chunyun_Xiong]","{application/vnd.chipnuts.karaoke-mmd=http://www.iana.org/assignments/media-types/application/vnd.chipnuts.karaoke-mmd}"],"xrefs":{"person":["Chunyun_Xiong"],"template":["application/vnd.chipnuts.karaoke-mmd"]},"registered":true},{"content-type":"application/vnd.cinderella","friendly":{"en":"Interactive Geometry Software Cinderella"},"encoding":"base64","extensions":["cdy"],"references":["IANA","[Ulrich_Kortenkamp]","{application/vnd.cinderella=http://www.iana.org/assignments/media-types/application/vnd.cinderella}"],"xrefs":{"person":["Ulrich_Kortenkamp"],"template":["application/vnd.cinderella"]},"registered":true},{"content-type":"application/vnd.cirpack.isdn-ext","encoding":"base64","references":["IANA","[Pascal_Mayeux]","{application/vnd.cirpack.isdn-ext=http://www.iana.org/assignments/media-types/application/vnd.cirpack.isdn-ext}"],"xrefs":{"person":["Pascal_Mayeux"],"template":["application/vnd.cirpack.isdn-ext"]},"registered":true},{"content-type":"application/vnd.citationstyles.style+xml","encoding":"base64","references":["IANA","[Rintze_M._Zelle]","{application/vnd.citationstyles.style+xml=http://www.iana.org/assignments/media-types/application/vnd.citationstyles.style+xml}"],"xrefs":{"person":["Rintze_M._Zelle"],"template":["application/vnd.citationstyles.style+xml"]},"registered":true},{"content-type":"application/vnd.claymore","friendly":{"en":"Claymore Data Files"},"encoding":"base64","extensions":["cla"],"references":["IANA","[Ray_Simpson]","{application/vnd.claymore=http://www.iana.org/assignments/media-types/application/vnd.claymore}"],"xrefs":{"person":["Ray_Simpson"],"template":["application/vnd.claymore"]},"registered":true},{"content-type":"application/vnd.cloanto.rp9","friendly":{"en":"RetroPlatform Player"},"encoding":"base64","extensions":["rp9"],"references":["IANA","[Mike_Labatt]","{application/vnd.cloanto.rp9=http://www.iana.org/assignments/media-types/application/vnd.cloanto.rp9}"],"xrefs":{"person":["Mike_Labatt"],"template":["application/vnd.cloanto.rp9"]},"registered":true},{"content-type":"application/vnd.clonk.c4group","friendly":{"en":"Clonk Game"},"encoding":"base64","extensions":["c4d","c4f","c4g","c4p","c4u"],"references":["IANA","[Guenther_Brammer]","{application/vnd.clonk.c4group=http://www.iana.org/assignments/media-types/application/vnd.clonk.c4group}"],"xrefs":{"person":["Guenther_Brammer"],"template":["application/vnd.clonk.c4group"]},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config","friendly":{"en":"ClueTrust CartoMobile - Config"},"encoding":"base64","extensions":["c11amc"],"references":["IANA","[Gaige_Paulsen]","{application/vnd.cluetrust.cartomobile-config=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config}"],"xrefs":{"person":["Gaige_Paulsen"],"template":["application/vnd.cluetrust.cartomobile-config"]},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config-pkg","friendly":{"en":"ClueTrust CartoMobile - Config Package"},"encoding":"base64","extensions":["c11amz"],"references":["IANA","[Gaige_Paulsen]","{application/vnd.cluetrust.cartomobile-config-pkg=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config-pkg}"],"xrefs":{"person":["Gaige_Paulsen"],"template":["application/vnd.cluetrust.cartomobile-config-pkg"]},"registered":true},{"content-type":"application/vnd.coffeescript","encoding":"base64","references":["IANA","[Devyn_Collier_Johnson]","{application/vnd.coffeescript=http://www.iana.org/assignments/media-types/application/vnd.coffeescript}"],"xrefs":{"person":["Devyn_Collier_Johnson"],"template":["application/vnd.coffeescript"]},"registered":true},{"content-type":"application/vnd.collection+json","encoding":"base64","references":["IANA","[Mike_Amundsen]","{application/vnd.collection+json=http://www.iana.org/assignments/media-types/application/vnd.collection+json}"],"xrefs":{"person":["Mike_Amundsen"],"template":["application/vnd.collection+json"]},"registered":true},{"content-type":"application/vnd.collection.doc+json","encoding":"base64","references":["IANA","[Irakli_Nadareishvili]","{application/vnd.collection.doc+json=http://www.iana.org/assignments/media-types/application/vnd.collection.doc+json}"],"xrefs":{"person":["Irakli_Nadareishvili"],"template":["application/vnd.collection.doc+json"]},"registered":true},{"content-type":"application/vnd.collection.next+json","encoding":"base64","references":["IANA","[Ioseb_Dzmanashvili]","{application/vnd.collection.next+json=http://www.iana.org/assignments/media-types/application/vnd.collection.next+json}"],"xrefs":{"person":["Ioseb_Dzmanashvili"],"template":["application/vnd.collection.next+json"]},"registered":true},{"content-type":"application/vnd.commerce-battelle","encoding":"base64","references":["IANA","[David_Applebaum]","{application/vnd.commerce-battelle=http://www.iana.org/assignments/media-types/application/vnd.commerce-battelle}"],"xrefs":{"person":["David_Applebaum"],"template":["application/vnd.commerce-battelle"]},"registered":true},{"content-type":"application/vnd.commonspace","friendly":{"en":"Sixth Floor Media - CommonSpace"},"encoding":"base64","extensions":["csp"],"references":["IANA","[Ravinder_Chandhok]","{application/vnd.commonspace=http://www.iana.org/assignments/media-types/application/vnd.commonspace}"],"xrefs":{"person":["Ravinder_Chandhok"],"template":["application/vnd.commonspace"]},"registered":true},{"content-type":"application/vnd.contact.cmsg","friendly":{"en":"CIM Database"},"encoding":"base64","extensions":["cdbcmsg"],"references":["IANA","[Frank_Patz]","{application/vnd.contact.cmsg=http://www.iana.org/assignments/media-types/application/vnd.contact.cmsg}"],"xrefs":{"person":["Frank_Patz"],"template":["application/vnd.contact.cmsg"]},"registered":true},{"content-type":"application/vnd.cosmocaller","friendly":{"en":"CosmoCaller"},"encoding":"base64","extensions":["cmc"],"references":["IANA","[Steve_Dellutri]","{application/vnd.cosmocaller=http://www.iana.org/assignments/media-types/application/vnd.cosmocaller}"],"xrefs":{"person":["Steve_Dellutri"],"template":["application/vnd.cosmocaller"]},"registered":true},{"content-type":"application/vnd.crick.clicker","friendly":{"en":"CrickSoftware - Clicker"},"encoding":"base64","extensions":["clkx"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker"]},"registered":true},{"content-type":"application/vnd.crick.clicker.keyboard","friendly":{"en":"CrickSoftware - Clicker - Keyboard"},"encoding":"base64","extensions":["clkk"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.keyboard=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.keyboard}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.keyboard"]},"registered":true},{"content-type":"application/vnd.crick.clicker.palette","friendly":{"en":"CrickSoftware - Clicker - Palette"},"encoding":"base64","extensions":["clkp"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.palette=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.palette}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.palette"]},"registered":true},{"content-type":"application/vnd.crick.clicker.template","friendly":{"en":"CrickSoftware - Clicker - Template"},"encoding":"base64","extensions":["clkt"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.template=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.template}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.template"]},"registered":true},{"content-type":"application/vnd.crick.clicker.wordbank","friendly":{"en":"CrickSoftware - Clicker - Wordbank"},"encoding":"base64","extensions":["clkw"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.wordbank=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.wordbank}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.wordbank"]},"registered":true},{"content-type":"application/vnd.criticaltools.wbs+xml","friendly":{"en":"Critical Tools - PERT Chart EXPERT"},"encoding":"base64","extensions":["wbs"],"references":["IANA","[Jim_Spiller]","{application/vnd.criticaltools.wbs+xml=http://www.iana.org/assignments/media-types/application/vnd.criticaltools.wbs+xml}"],"xrefs":{"person":["Jim_Spiller"],"template":["application/vnd.criticaltools.wbs+xml"]},"registered":true},{"content-type":"application/vnd.ctc-posml","friendly":{"en":"PosML"},"encoding":"base64","extensions":["pml"],"references":["IANA","[Bayard_Kohlhepp]","{application/vnd.ctc-posml=http://www.iana.org/assignments/media-types/application/vnd.ctc-posml}"],"xrefs":{"person":["Bayard_Kohlhepp"],"template":["application/vnd.ctc-posml"]},"registered":true},{"content-type":"application/vnd.ctct.ws+xml","encoding":"base64","references":["IANA","[Jim_Ancona]","{application/vnd.ctct.ws+xml=http://www.iana.org/assignments/media-types/application/vnd.ctct.ws+xml}"],"xrefs":{"person":["Jim_Ancona"],"template":["application/vnd.ctct.ws+xml"]},"registered":true},{"content-type":"application/vnd.cups-pdf","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-pdf=http://www.iana.org/assignments/media-types/application/vnd.cups-pdf}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-pdf"]},"registered":true},{"content-type":"application/vnd.cups-postscript","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-postscript=http://www.iana.org/assignments/media-types/application/vnd.cups-postscript}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-postscript"]},"registered":true},{"content-type":"application/vnd.cups-ppd","friendly":{"en":"Adobe PostScript Printer Description File Format"},"encoding":"base64","extensions":["ppd"],"references":["IANA","[Michael_Sweet]","{application/vnd.cups-ppd=http://www.iana.org/assignments/media-types/application/vnd.cups-ppd}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-ppd"]},"registered":true},{"content-type":"application/vnd.cups-raster","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-raster=http://www.iana.org/assignments/media-types/application/vnd.cups-raster}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-raster"]},"registered":true},{"content-type":"application/vnd.cups-raw","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-raw=http://www.iana.org/assignments/media-types/application/vnd.cups-raw}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-raw"]},"registered":true},{"content-type":"application/vnd.curl","encoding":"base64","extensions":["curl"],"references":["IANA","[Robert_Byrnes]","{application/vnd-curl=http://www.iana.org/assignments/media-types/application/vnd-curl}"],"xrefs":{"person":["Robert_Byrnes"],"template":["application/vnd-curl"]},"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","references":["IANA","[Matt_Kern]","{application/vnd.cyan.dean.root+xml=http://www.iana.org/assignments/media-types/application/vnd.cyan.dean.root+xml}"],"xrefs":{"person":["Matt_Kern"],"template":["application/vnd.cyan.dean.root+xml"]},"registered":true},{"content-type":"application/vnd.cybank","encoding":"base64","references":["IANA","[Nor_Helmee]","{application/vnd.cybank=http://www.iana.org/assignments/media-types/application/vnd.cybank}"],"xrefs":{"person":["Nor_Helmee"],"template":["application/vnd.cybank"]},"registered":true},{"content-type":"application/vnd.dart","encoding":"base64","extensions":["dart"],"references":["IANA","[Anders_Sandholm]","{application/vnd-dart=http://www.iana.org/assignments/media-types/application/vnd-dart}"],"xrefs":{"person":["Anders_Sandholm"],"template":["application/vnd-dart"]},"registered":true},{"content-type":"application/vnd.data-vision.rdz","friendly":{"en":"RemoteDocs R-Viewer"},"encoding":"base64","extensions":["rdz"],"references":["IANA","[James_Fields]","{application/vnd.data-vision.rdz=http://www.iana.org/assignments/media-types/application/vnd.data-vision.rdz}"],"xrefs":{"person":["James_Fields"],"template":["application/vnd.data-vision.rdz"]},"registered":true},{"content-type":"application/vnd.debian.binary-package","encoding":"base64","references":["IANA","[Charles_Plessy]","{application/vnd.debian.binary-package=http://www.iana.org/assignments/media-types/application/vnd.debian.binary-package}"],"xrefs":{"person":["Charles_Plessy"],"template":["application/vnd.debian.binary-package"]},"registered":true},{"content-type":"application/vnd.dece.data","encoding":"base64","extensions":["uvd","uvf","uvvd","uvvf"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.data=http://www.iana.org/assignments/media-types/application/vnd.dece.data}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.data"]},"registered":true},{"content-type":"application/vnd.dece.ttml+xml","encoding":"base64","extensions":["uvt","uvvt"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.ttml+xml=http://www.iana.org/assignments/media-types/application/vnd.dece.ttml+xml}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.ttml+xml"]},"registered":true},{"content-type":"application/vnd.dece.unspecified","encoding":"base64","extensions":["uvvx","uvx"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.unspecified=http://www.iana.org/assignments/media-types/application/vnd.dece.unspecified}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.unspecified"]},"registered":true},{"content-type":"application/vnd.dece.zip","encoding":"base64","extensions":["uvvz","uvz"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece-zip=http://www.iana.org/assignments/media-types/application/vnd.dece-zip}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece-zip"]},"registered":true},{"content-type":"application/vnd.denovo.fcselayout-link","friendly":{"en":"FCS Express Layout Link"},"encoding":"base64","extensions":["fe_launch"],"references":["IANA","[Michael_Dixon]","{application/vnd.denovo.fcselayout-link=http://www.iana.org/assignments/media-types/application/vnd.denovo.fcselayout-link}"],"xrefs":{"person":["Michael_Dixon"],"template":["application/vnd.denovo.fcselayout-link"]},"registered":true},{"content-type":"application/vnd.desmume.movie","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.desmume-movie=http://www.iana.org/assignments/media-types/application/vnd.desmume-movie}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.desmume-movie"]},"registered":true},{"content-type":"application/vnd.dir-bi.plate-dl-nosuffix","encoding":"base64","references":["IANA","[Yamanaka]","{application/vnd.dir-bi.plate-dl-nosuffix=http://www.iana.org/assignments/media-types/application/vnd.dir-bi.plate-dl-nosuffix}"],"xrefs":{"person":["Yamanaka"],"template":["application/vnd.dir-bi.plate-dl-nosuffix"]},"registered":true},{"content-type":"application/vnd.dm.delegation+xml","encoding":"base64","references":["IANA","[Axel_Ferrazzini]","{application/vnd.dm.delegation+xml=http://www.iana.org/assignments/media-types/application/vnd.dm.delegation+xml}"],"xrefs":{"person":["Axel_Ferrazzini"],"template":["application/vnd.dm.delegation+xml"]},"registered":true},{"content-type":"application/vnd.dna","friendly":{"en":"New Moon Liftoff/DNA"},"encoding":"base64","extensions":["dna"],"references":["IANA","[Meredith_Searcy]","{application/vnd.dna=http://www.iana.org/assignments/media-types/application/vnd.dna}"],"xrefs":{"person":["Meredith_Searcy"],"template":["application/vnd.dna"]},"registered":true},{"content-type":"application/vnd.document+json","encoding":"base64","references":["IANA","[Tom_Christie]","{application/vnd.document+json=http://www.iana.org/assignments/media-types/application/vnd.document+json}"],"xrefs":{"person":["Tom_Christie"],"template":["application/vnd.document+json"]},"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","references":["IANA","[Steve_Hattersley]","{application/vnd.dolby.mobile.1=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["application/vnd.dolby.mobile.1"]},"registered":true},{"content-type":"application/vnd.dolby.mobile.2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{application/vnd.dolby.mobile.2=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["application/vnd.dolby.mobile.2"]},"registered":true},{"content-type":"application/vnd.doremir.scorecloud-binary-document","encoding":"base64","references":["IANA","[Erik_Ronström]","{application/vnd.doremir.scorecloud-binary-document=http://www.iana.org/assignments/media-types/application/vnd.doremir.scorecloud-binary-document}"],"xrefs":{"person":["Erik_Ronström"],"template":["application/vnd.doremir.scorecloud-binary-document"]},"registered":true},{"content-type":"application/vnd.dpgraph","friendly":{"en":"DPGraph"},"encoding":"base64","extensions":["dpg"],"references":["IANA","[David_Parker]","{application/vnd.dpgraph=http://www.iana.org/assignments/media-types/application/vnd.dpgraph}"],"xrefs":{"person":["David_Parker"],"template":["application/vnd.dpgraph"]},"registered":true},{"content-type":"application/vnd.dreamfactory","friendly":{"en":"DreamFactory"},"encoding":"base64","extensions":["dfac"],"references":["IANA","[William_C._Appleton]","{application/vnd.dreamfactory=http://www.iana.org/assignments/media-types/application/vnd.dreamfactory}"],"xrefs":{"person":["William_C._Appleton"],"template":["application/vnd.dreamfactory"]},"registered":true},{"content-type":"application/vnd.ds-keypoint","encoding":"base64","extensions":["kpxx"],"registered":false},{"content-type":"application/vnd.dtg.local","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local=http://www.iana.org/assignments/media-types/application/vnd.dtg.local}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local"]},"registered":true},{"content-type":"application/vnd.dtg.local.flash","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local.flash=http://www.iana.org/assignments/media-types/application/vnd.dtg.local.flash}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local.flash"]},"registered":true},{"content-type":"application/vnd.dtg.local.html","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local.html=http://www.iana.org/assignments/media-types/application/vnd.dtg.local.html}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local.html"]},"registered":true},{"content-type":"application/vnd.dvb.ait","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["ait"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.ait=http://www.iana.org/assignments/media-types/application/vnd.dvb.ait}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.ait"]},"registered":true},{"content-type":"application/vnd.dvb.dvbj","encoding":"base64","references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.dvbj=http://www.iana.org/assignments/media-types/application/vnd.dvb.dvbj}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.dvbj"]},"registered":true},{"content-type":"application/vnd.dvb.esgcontainer","encoding":"base64","references":["IANA","[Joerg_Heuer]","{application/vnd.dvb.esgcontainer=http://www.iana.org/assignments/media-types/application/vnd.dvb.esgcontainer}"],"xrefs":{"person":["Joerg_Heuer"],"template":["application/vnd.dvb.esgcontainer"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcdftnotifaccess","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.ipdcdftnotifaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcdftnotifaccess}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.ipdcdftnotifaccess"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess","encoding":"base64","references":["IANA","[Joerg_Heuer]","{application/vnd.dvb.ipdcesgaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess}"],"xrefs":{"person":["Joerg_Heuer"],"template":["application/vnd.dvb.ipdcesgaccess"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess2","encoding":"base64","references":["IANA","[Jerome_Marcon]","{application/vnd.dvb.ipdcesgaccess2=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess2}"],"xrefs":{"person":["Jerome_Marcon"],"template":["application/vnd.dvb.ipdcesgaccess2"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgpdd","encoding":"base64","references":["IANA","[Jerome_Marcon]","{application/vnd.dvb.ipdcesgpdd=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgpdd}"],"xrefs":{"person":["Jerome_Marcon"],"template":["application/vnd.dvb.ipdcesgpdd"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcroaming","encoding":"base64","references":["IANA","[Yiling_Xu]","{application/vnd.dvb.ipdcroaming=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcroaming}"],"xrefs":{"person":["Yiling_Xu"],"template":["application/vnd.dvb.ipdcroaming"]},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-base","encoding":"base64","references":["IANA","[Jean-Baptiste_Henry]","{application/vnd.dvb.iptv.alfec-base=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-base}"],"xrefs":{"person":["Jean-Baptiste_Henry"],"template":["application/vnd.dvb.iptv.alfec-base"]},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-enhancement","encoding":"base64","references":["IANA","[Jean-Baptiste_Henry]","{application/vnd.dvb.iptv.alfec-enhancement=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-enhancement}"],"xrefs":{"person":["Jean-Baptiste_Henry"],"template":["application/vnd.dvb.iptv.alfec-enhancement"]},"registered":true},{"content-type":"application/vnd.dvb.notif-aggregate-root+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-aggregate-root+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-aggregate-root+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-aggregate-root+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-container+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-container+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-container+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-container+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-generic+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-generic+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-generic+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-generic+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-msglist+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-msglist+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-msglist+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-msglist+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-request+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-registration-request+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-request+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-registration-request+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-response+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-registration-response+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-response+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-registration-response+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-init+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-init+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-init+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-init+xml"]},"registered":true},{"content-type":"application/vnd.dvb.pfr","encoding":"base64","references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.pfr=http://www.iana.org/assignments/media-types/application/vnd.dvb.pfr}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.pfr"]},"registered":true},{"content-type":"application/vnd.dvb.service","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["svc"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb_service=http://www.iana.org/assignments/media-types/application/vnd.dvb_service}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb_service"]},"registered":true},{"content-type":"application/vnd.dxr","encoding":"base64","references":["IANA","[Michael_Duffy]","{application/vnd-dxr=http://www.iana.org/assignments/media-types/application/vnd-dxr}"],"xrefs":{"person":["Michael_Duffy"],"template":["application/vnd-dxr"]},"registered":true},{"content-type":"application/vnd.dynageo","friendly":{"en":"DynaGeo"},"encoding":"base64","extensions":["geo"],"references":["IANA","[Roland_Mechling]","{application/vnd.dynageo=http://www.iana.org/assignments/media-types/application/vnd.dynageo}"],"xrefs":{"person":["Roland_Mechling"],"template":["application/vnd.dynageo"]},"registered":true},{"content-type":"application/vnd.dzr","encoding":"base64","references":["IANA","[Carl_Anderson]","{application/vnd.dzr=http://www.iana.org/assignments/media-types/application/vnd.dzr}"],"xrefs":{"person":["Carl_Anderson"],"template":["application/vnd.dzr"]},"registered":true},{"content-type":"application/vnd.easykaraoke.cdgdownload","encoding":"base64","references":["IANA","[Iain_Downs]","{application/vnd.easykaraoke.cdgdownload=http://www.iana.org/assignments/media-types/application/vnd.easykaraoke.cdgdownload}"],"xrefs":{"person":["Iain_Downs"],"template":["application/vnd.easykaraoke.cdgdownload"]},"registered":true},{"content-type":"application/vnd.ecdis-update","encoding":"base64","references":["IANA","[Gert_Buettgenbach]","{application/vnd.ecdis-update=http://www.iana.org/assignments/media-types/application/vnd.ecdis-update}"],"xrefs":{"person":["Gert_Buettgenbach"],"template":["application/vnd.ecdis-update"]},"registered":true},{"content-type":"application/vnd.ecowin.chart","friendly":{"en":"EcoWin Chart"},"encoding":"base64","extensions":["mag"],"references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.chart=http://www.iana.org/assignments/media-types/application/vnd.ecowin.chart}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.chart"]},"registered":true},{"content-type":"application/vnd.ecowin.filerequest","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.filerequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.filerequest}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.filerequest"]},"registered":true},{"content-type":"application/vnd.ecowin.fileupdate","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.fileupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.fileupdate}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.fileupdate"]},"registered":true},{"content-type":"application/vnd.ecowin.series","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.series=http://www.iana.org/assignments/media-types/application/vnd.ecowin.series}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.series"]},"registered":true},{"content-type":"application/vnd.ecowin.seriesrequest","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.seriesrequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesrequest}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.seriesrequest"]},"registered":true},{"content-type":"application/vnd.ecowin.seriesupdate","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.seriesupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesupdate}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.seriesupdate"]},"registered":true},{"content-type":"application/vnd.emclient.accessrequest+xml","encoding":"base64","references":["IANA","[Filip_Navara]","{application/vnd.emclient.accessrequest+xml=http://www.iana.org/assignments/media-types/application/vnd.emclient.accessrequest+xml}"],"xrefs":{"person":["Filip_Navara"],"template":["application/vnd.emclient.accessrequest+xml"]},"registered":true},{"content-type":"application/vnd.enliven","friendly":{"en":"Enliven Viewer"},"encoding":"base64","extensions":["nml"],"references":["IANA","[Paul_Santinelli_Jr.]","{application/vnd.enliven=http://www.iana.org/assignments/media-types/application/vnd.enliven}"],"xrefs":{"person":["Paul_Santinelli_Jr."],"template":["application/vnd.enliven"]},"registered":true},{"content-type":"application/vnd.enphase.envoy","encoding":"base64","references":["IANA","[Chris_Eich]","{application/vnd.enphase.envoy=http://www.iana.org/assignments/media-types/application/vnd.enphase.envoy}"],"xrefs":{"person":["Chris_Eich"],"template":["application/vnd.enphase.envoy"]},"registered":true},{"content-type":"application/vnd.eprints.data+xml","encoding":"base64","references":["IANA","[Tim_Brody]","{application/vnd.eprints.data+xml=http://www.iana.org/assignments/media-types/application/vnd.eprints.data+xml}"],"xrefs":{"person":["Tim_Brody"],"template":["application/vnd.eprints.data+xml"]},"registered":true},{"content-type":"application/vnd.epson.esf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["esf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.esf=http://www.iana.org/assignments/media-types/application/vnd.epson.esf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.esf"]},"registered":true},{"content-type":"application/vnd.epson.msf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["msf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.msf=http://www.iana.org/assignments/media-types/application/vnd.epson.msf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.msf"]},"registered":true},{"content-type":"application/vnd.epson.quickanime","friendly":{"en":"QuickAnime Player"},"encoding":"base64","extensions":["qam"],"references":["IANA","[Yu_Gu]","{application/vnd.epson.quickanime=http://www.iana.org/assignments/media-types/application/vnd.epson.quickanime}"],"xrefs":{"person":["Yu_Gu"],"template":["application/vnd.epson.quickanime"]},"registered":true},{"content-type":"application/vnd.epson.salt","friendly":{"en":"SimpleAnimeLite Player"},"encoding":"base64","extensions":["slt"],"references":["IANA","[Yasuhito_Nagatomo]","{application/vnd.epson.salt=http://www.iana.org/assignments/media-types/application/vnd.epson.salt}"],"xrefs":{"person":["Yasuhito_Nagatomo"],"template":["application/vnd.epson.salt"]},"registered":true},{"content-type":"application/vnd.epson.ssf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["ssf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.ssf=http://www.iana.org/assignments/media-types/application/vnd.epson.ssf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.ssf"]},"registered":true},{"content-type":"application/vnd.ericsson.quickcall","encoding":"base64","references":["IANA","[Paul_Tidwell]","{application/vnd.ericsson.quickcall=http://www.iana.org/assignments/media-types/application/vnd.ericsson.quickcall}"],"xrefs":{"person":["Paul_Tidwell"],"template":["application/vnd.ericsson.quickcall"]},"registered":true},{"content-type":"application/vnd.eszigno3+xml","friendly":{"en":"MICROSEC e-Szign¢"},"encoding":"base64","extensions":["es3","et3"],"references":["IANA","[Szilveszter_Tóth]","{application/vnd.eszigno3+xml=http://www.iana.org/assignments/media-types/application/vnd.eszigno3+xml}"],"xrefs":{"person":["Szilveszter_Tóth"],"template":["application/vnd.eszigno3+xml"]},"registered":true},{"content-type":"application/vnd.etsi.aoc+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.aoc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.aoc+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.aoc+xml"]},"registered":true},{"content-type":"application/vnd.etsi.asic-e+zip","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.asic-e+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-e+zip}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.asic-e+zip"]},"registered":true},{"content-type":"application/vnd.etsi.asic-s+zip","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.asic-s+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-s+zip}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.asic-s+zip"]},"registered":true},{"content-type":"application/vnd.etsi.cug+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.cug+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.cug+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.cug+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvcommand+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvcommand+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvcommand+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvcommand+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvdiscovery+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvdiscovery+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvdiscovery+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvprofile+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvprofile+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvprofile+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-bc+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-bc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-bc+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-bc+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-cod+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-cod+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-cod+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-cod+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-npvr+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-npvr+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-npvr+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-npvr+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvservice+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.iptvservice+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvservice+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.iptvservice+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsync+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.iptvsync+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsync+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.iptvsync+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvueprofile+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvueprofile+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvueprofile+xml"]},"registered":true},{"content-type":"application/vnd.etsi.mcid+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.mcid+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.mcid+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.mcid+xml"]},"registered":true},{"content-type":"application/vnd.etsi.mheg5","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","[Ian_Medland]","{application/vnd.etsi.mheg5=http://www.iana.org/assignments/media-types/application/vnd.etsi.mheg5}"],"xrefs":{"person":["Ian_Medland","Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.mheg5"]},"registered":true},{"content-type":"application/vnd.etsi.overload-control-policy-dataset+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.overload-control-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.overload-control-policy-dataset+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.overload-control-policy-dataset+xml"]},"registered":true},{"content-type":"application/vnd.etsi.pstn+xml","encoding":"base64","references":["IANA","[Jiwan_Han]","[Thomas_Belling]","{application/vnd.etsi.pstn+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.pstn+xml}"],"xrefs":{"person":["Jiwan_Han","Thomas_Belling"],"template":["application/vnd.etsi.pstn+xml"]},"registered":true},{"content-type":"application/vnd.etsi.sci+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.sci+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.sci+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.sci+xml"]},"registered":true},{"content-type":"application/vnd.etsi.simservs+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.simservs+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.simservs+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.simservs+xml"]},"registered":true},{"content-type":"application/vnd.etsi.timestamp-token","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.timestamp-token=http://www.iana.org/assignments/media-types/application/vnd.etsi.timestamp-token}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.timestamp-token"]},"registered":true},{"content-type":"application/vnd.etsi.tsl+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.tsl+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.tsl+xml"]},"registered":true},{"content-type":"application/vnd.etsi.tsl.der","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.tsl.der=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl.der}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.tsl.der"]},"registered":true},{"content-type":"application/vnd.eudora.data","encoding":"base64","references":["IANA","[Pete_Resnick]","{application/vnd.eudora.data=http://www.iana.org/assignments/media-types/application/vnd.eudora.data}"],"xrefs":{"person":["Pete_Resnick"],"template":["application/vnd.eudora.data"]},"registered":true},{"content-type":"application/vnd.ezpix-album","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez2"],"references":["IANA","[ElectronicZombieCorp]","{application/vnd.ezpix-album=http://www.iana.org/assignments/media-types/application/vnd.ezpix-album}"],"xrefs":{"person":["ElectronicZombieCorp"],"template":["application/vnd.ezpix-album"]},"registered":true},{"content-type":"application/vnd.ezpix-package","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez3"],"references":["IANA","[ElectronicZombieCorp]","{application/vnd.ezpix-package=http://www.iana.org/assignments/media-types/application/vnd.ezpix-package}"],"xrefs":{"person":["ElectronicZombieCorp"],"template":["application/vnd.ezpix-package"]},"registered":true},{"content-type":"application/vnd.f-secure.mobile","encoding":"base64","references":["IANA","[Samu_Sarivaara]","{application/vnd.f-secure.mobile=http://www.iana.org/assignments/media-types/application/vnd.f-secure.mobile}"],"xrefs":{"person":["Samu_Sarivaara"],"template":["application/vnd.f-secure.mobile"]},"registered":true},{"content-type":"application/vnd.fastcopy-disk-image","encoding":"base64","references":["IANA","[Thomas_Huth]","{application/vnd.fastcopy-disk-image=http://www.iana.org/assignments/media-types/application/vnd.fastcopy-disk-image}"],"xrefs":{"person":["Thomas_Huth"],"template":["application/vnd.fastcopy-disk-image"]},"registered":true},{"content-type":"application/vnd.fdf","friendly":{"en":"Forms Data Format"},"encoding":"base64","extensions":["fdf"],"references":["IANA","[Steve_Zilles]","{application/vnd-fdf=http://www.iana.org/assignments/media-types/application/vnd-fdf}"],"xrefs":{"person":["Steve_Zilles"],"template":["application/vnd-fdf"]},"registered":true},{"content-type":"application/vnd.fdsn.mseed","encoding":"base64","extensions":["mseed"],"references":["IANA","[Chad_Trabant]","{application/vnd.fdsn.mseed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.mseed}"],"xrefs":{"person":["Chad_Trabant"],"template":["application/vnd.fdsn.mseed"]},"registered":true},{"content-type":"application/vnd.fdsn.seed","friendly":{"en":"Digital Siesmograph Networks - SEED Datafiles"},"encoding":"base64","extensions":["dataless","seed"],"references":["IANA","[Chad_Trabant]","{application/vnd.fdsn.seed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.seed}"],"xrefs":{"person":["Chad_Trabant"],"template":["application/vnd.fdsn.seed"]},"registered":true},{"content-type":"application/vnd.ffsns","encoding":"base64","references":["IANA","[Holstage]","{application/vnd.ffsns=http://www.iana.org/assignments/media-types/application/vnd.ffsns}"],"xrefs":{"person":["Holstage"],"template":["application/vnd.ffsns"]},"registered":true},{"content-type":"application/vnd.fints","encoding":"base64","references":["IANA","[Ingo_Hammann]","{application/vnd.fints=http://www.iana.org/assignments/media-types/application/vnd.fints}"],"xrefs":{"person":["Ingo_Hammann"],"template":["application/vnd.fints"]},"registered":true},{"content-type":"application/vnd.FloGraphIt","friendly":{"en":"NpGraphIt"},"encoding":"base64","extensions":["gph"],"references":["IANA","[Dick_Floersch]","{application/vnd.FloGraphIt=http://www.iana.org/assignments/media-types/application/vnd.FloGraphIt}"],"xrefs":{"person":["Dick_Floersch"],"template":["application/vnd.FloGraphIt"]},"registered":true},{"content-type":"application/vnd.fluxtime.clip","friendly":{"en":"FluxTime Clip"},"encoding":"base64","extensions":["ftc"],"references":["IANA","[Marc_Winter]","{application/vnd.fluxtime.clip=http://www.iana.org/assignments/media-types/application/vnd.fluxtime.clip}"],"xrefs":{"person":["Marc_Winter"],"template":["application/vnd.fluxtime.clip"]},"registered":true},{"content-type":"application/vnd.font-fontforge-sfd","encoding":"base64","references":["IANA","[George_Williams]","{application/vnd.font-fontforge-sfd=http://www.iana.org/assignments/media-types/application/vnd.font-fontforge-sfd}"],"xrefs":{"person":["George_Williams"],"template":["application/vnd.font-fontforge-sfd"]},"registered":true},{"content-type":"application/vnd.framemaker","friendly":{"en":"FrameMaker Normal Format"},"encoding":"base64","extensions":["frm","maker","frame","fm","fb","book","fbdoc"],"references":["IANA","[Mike_Wexler]","{application/vnd.framemaker=http://www.iana.org/assignments/media-types/application/vnd.framemaker}"],"xrefs":{"person":["Mike_Wexler"],"template":["application/vnd.framemaker"]},"registered":true},{"content-type":"application/vnd.frogans.fnc","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["fnc"],"references":["IANA","[Alexis_Tamas]","{application/vnd.frogans.fnc=http://www.iana.org/assignments/media-types/application/vnd.frogans.fnc}"],"xrefs":{"person":["Alexis_Tamas"],"template":["application/vnd.frogans.fnc"]},"registered":true},{"content-type":"application/vnd.frogans.ltf","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["ltf"],"references":["IANA","[Alexis_Tamas]","{application/vnd.frogans.ltf=http://www.iana.org/assignments/media-types/application/vnd.frogans.ltf}"],"xrefs":{"person":["Alexis_Tamas"],"template":["application/vnd.frogans.ltf"]},"registered":true},{"content-type":"application/vnd.fsc.weblaunch","friendly":{"en":"Friendly Software Corporation"},"encoding":"7bit","extensions":["fsc"],"references":["IANA","[Derek_Smith]","{application/vnd.fsc.weblaunch=http://www.iana.org/assignments/media-types/application/vnd.fsc.weblaunch}"],"xrefs":{"person":["Derek_Smith"],"template":["application/vnd.fsc.weblaunch"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oas"],"references":["IANA","[Nobukazu_Togashi]","{application/vnd.fujitsu.oasys=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys}"],"xrefs":{"person":["Nobukazu_Togashi"],"template":["application/vnd.fujitsu.oasys"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys2","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa2"],"references":["IANA","[Nobukazu_Togashi]","{application/vnd.fujitsu.oasys2=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys2}"],"xrefs":{"person":["Nobukazu_Togashi"],"template":["application/vnd.fujitsu.oasys2"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys3","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa3"],"references":["IANA","[Seiji_Okudaira]","{application/vnd.fujitsu.oasys3=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys3}"],"xrefs":{"person":["Seiji_Okudaira"],"template":["application/vnd.fujitsu.oasys3"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasysgp","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["fg5"],"references":["IANA","[Masahiko_Sugimoto]","{application/vnd.fujitsu.oasysgp=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysgp}"],"xrefs":{"person":["Masahiko_Sugimoto"],"template":["application/vnd.fujitsu.oasysgp"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasysprs","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["bh2"],"references":["IANA","[Masumi_Ogita]","{application/vnd.fujitsu.oasysprs=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysprs}"],"xrefs":{"person":["Masumi_Ogita"],"template":["application/vnd.fujitsu.oasysprs"]},"registered":true},{"content-type":"application/vnd.fujixerox.ART-EX","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.ART-EX=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART-EX}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.ART-EX"]},"registered":true},{"content-type":"application/vnd.fujixerox.ART4","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.ART4=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART4}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.ART4"]},"registered":true},{"content-type":"application/vnd.fujixerox.ddd","friendly":{"en":"Fujitsu - Xerox 2D CAD Data"},"encoding":"base64","extensions":["ddd"],"references":["IANA","[Masanori_Onda]","{application/vnd.fujixerox.ddd=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ddd}"],"xrefs":{"person":["Masanori_Onda"],"template":["application/vnd.fujixerox.ddd"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks","friendly":{"en":"Fujitsu - Xerox DocuWorks"},"encoding":"base64","extensions":["xdw"],"references":["IANA","[Yasuo_Taguchi]","{application/vnd.fujixerox.docuworks=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks}"],"xrefs":{"person":["Yasuo_Taguchi"],"template":["application/vnd.fujixerox.docuworks"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.binder","friendly":{"en":"Fujitsu - Xerox DocuWorks Binder"},"encoding":"base64","extensions":["xbd"],"references":["IANA","[Takashi_Matsumoto]","{application/vnd.fujixerox.docuworks.binder=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.binder}"],"xrefs":{"person":["Takashi_Matsumoto"],"template":["application/vnd.fujixerox.docuworks.binder"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.container","encoding":"base64","references":["IANA","[Kiyoshi_Tashiro]","{application/vnd.fujixerox.docuworks.container=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.container}"],"xrefs":{"person":["Kiyoshi_Tashiro"],"template":["application/vnd.fujixerox.docuworks.container"]},"registered":true},{"content-type":"application/vnd.fujixerox.HBPL","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.HBPL=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.HBPL}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.HBPL"]},"registered":true},{"content-type":"application/vnd.fut-misnet","encoding":"base64","references":["IANA","[Jann_Pruulman]","{application/vnd.fut-misnet=http://www.iana.org/assignments/media-types/application/vnd.fut-misnet}"],"xrefs":{"person":["Jann_Pruulman"],"template":["application/vnd.fut-misnet"]},"registered":true},{"content-type":"application/vnd.fuzzysheet","friendly":{"en":"FuzzySheet"},"encoding":"base64","extensions":["fzs"],"references":["IANA","[Simon_Birtwistle]","{application/vnd.fuzzysheet=http://www.iana.org/assignments/media-types/application/vnd.fuzzysheet}"],"xrefs":{"person":["Simon_Birtwistle"],"template":["application/vnd.fuzzysheet"]},"registered":true},{"content-type":"application/vnd.genomatix.tuxedo","friendly":{"en":"Genomatix Tuxedo Framework"},"encoding":"base64","extensions":["txd"],"references":["IANA","[Torben_Frey]","{application/vnd.genomatix.tuxedo=http://www.iana.org/assignments/media-types/application/vnd.genomatix.tuxedo}"],"xrefs":{"person":["Torben_Frey"],"template":["application/vnd.genomatix.tuxedo"]},"registered":true},{"content-type":"application/vnd.geo+json","encoding":"base64","references":["IANA","[Sean_Gillies]","{application/vnd.geo+json=http://www.iana.org/assignments/media-types/application/vnd.geo+json}"],"xrefs":{"person":["Sean_Gillies"],"template":["application/vnd.geo+json"]},"registered":true},{"content-type":"application/vnd.geocube+xml","encoding":"8bit","obsolete":true,"references":["IANA","[Francois_Pirsch]","{application/vnd.geocube+xml=http://www.iana.org/assignments/media-types/application/vnd.geocube+xml}"],"xrefs":{"person":["Francois_Pirsch"],"template":["application/vnd.geocube+xml"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"application/vnd.geogebra.file","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggb"],"references":["IANA","[GeoGebra]","[Yves_Kreis]","{application/vnd.geogebra.file=http://www.iana.org/assignments/media-types/application/vnd.geogebra.file}"],"xrefs":{"person":["GeoGebra","Yves_Kreis"],"template":["application/vnd.geogebra.file"]},"registered":true},{"content-type":"application/vnd.geogebra.tool","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggt"],"references":["IANA","[GeoGebra]","[Yves_Kreis]","{application/vnd.geogebra.tool=http://www.iana.org/assignments/media-types/application/vnd.geogebra.tool}"],"xrefs":{"person":["GeoGebra","Yves_Kreis"],"template":["application/vnd.geogebra.tool"]},"registered":true},{"content-type":"application/vnd.geometry-explorer","friendly":{"en":"GeoMetry Explorer"},"encoding":"base64","extensions":["gex","gre"],"references":["IANA","[Michael_Hvidsten]","{application/vnd.geometry-explorer=http://www.iana.org/assignments/media-types/application/vnd.geometry-explorer}"],"xrefs":{"person":["Michael_Hvidsten"],"template":["application/vnd.geometry-explorer"]},"registered":true},{"content-type":"application/vnd.geonext","friendly":{"en":"GEONExT and JSXGraph"},"encoding":"base64","extensions":["gxt"],"references":["IANA","[Matthias_Ehmann]","{application/vnd.geonext=http://www.iana.org/assignments/media-types/application/vnd.geonext}"],"xrefs":{"person":["Matthias_Ehmann"],"template":["application/vnd.geonext"]},"registered":true},{"content-type":"application/vnd.geoplan","friendly":{"en":"GeoplanW"},"encoding":"base64","extensions":["g2w"],"references":["IANA","[Christian_Mercat]","{application/vnd.geoplan=http://www.iana.org/assignments/media-types/application/vnd.geoplan}"],"xrefs":{"person":["Christian_Mercat"],"template":["application/vnd.geoplan"]},"registered":true},{"content-type":"application/vnd.geospace","friendly":{"en":"GeospacW"},"encoding":"base64","extensions":["g3w"],"references":["IANA","[Christian_Mercat]","{application/vnd.geospace=http://www.iana.org/assignments/media-types/application/vnd.geospace}"],"xrefs":{"person":["Christian_Mercat"],"template":["application/vnd.geospace"]},"registered":true},{"content-type":"application/vnd.gerber","encoding":"base64","references":["IANA","[Thomas_Weyn]","{application/vnd.gerber=http://www.iana.org/assignments/media-types/application/vnd.gerber}"],"xrefs":{"person":["Thomas_Weyn"],"template":["application/vnd.gerber"]},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt","encoding":"base64","references":["IANA","[Gil_Bernabeu]","{application/vnd.globalplatform.card-content-mgt=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt}"],"xrefs":{"person":["Gil_Bernabeu"],"template":["application/vnd.globalplatform.card-content-mgt"]},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt-response","encoding":"base64","references":["IANA","[Gil_Bernabeu]","{application/vnd.globalplatform.card-content-mgt-response=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt-response}"],"xrefs":{"person":["Gil_Bernabeu"],"template":["application/vnd.globalplatform.card-content-mgt-response"]},"registered":true},{"content-type":"application/vnd.gmx","friendly":{"en":"GameMaker ActiveX"},"encoding":"base64","extensions":["gmx"],"obsolete":true,"references":["IANA","[Christian_V._Sciberras]","{application/vnd.gmx=http://www.iana.org/assignments/media-types/application/vnd.gmx}"],"xrefs":{"person":["Christian_V._Sciberras"],"template":["application/vnd.gmx"],"notes":["- DEPRECATED"]},"registered":true},{"content-type":"application/vnd.google-earth.kml+xml","friendly":{"en":"Google Earth - KML"},"encoding":"8bit","extensions":["kml"],"references":["IANA","[Michael_Ashbridge]","{application/vnd.google-earth.kml+xml=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kml+xml}"],"xrefs":{"person":["Michael_Ashbridge"],"template":["application/vnd.google-earth.kml+xml"]},"registered":true},{"content-type":"application/vnd.google-earth.kmz","friendly":{"en":"Google Earth - Zipped KML"},"encoding":"8bit","extensions":["kmz"],"references":["IANA","[Michael_Ashbridge]","{application/vnd.google-earth.kmz=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kmz}"],"xrefs":{"person":["Michael_Ashbridge"],"template":["application/vnd.google-earth.kmz"]},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+xml","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.e-form+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+xml}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.e-form+xml"]},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+zip","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.e-form+zip=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+zip}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.e-form+zip"]},"registered":true},{"content-type":"application/vnd.gov.sk.xmldatacontainer+xml","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.xmldatacontainer+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.xmldatacontainer+xml}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.xmldatacontainer+xml"]},"registered":true},{"content-type":"application/vnd.grafeq","friendly":{"en":"GrafEq"},"encoding":"base64","extensions":["gqf","gqs"],"references":["IANA","[Jeff_Tupper]","{application/vnd.grafeq=http://www.iana.org/assignments/media-types/application/vnd.grafeq}"],"xrefs":{"person":["Jeff_Tupper"],"template":["application/vnd.grafeq"]},"registered":true},{"content-type":"application/vnd.gridmp","encoding":"base64","references":["IANA","[Jeff_Lawson]","{application/vnd.gridmp=http://www.iana.org/assignments/media-types/application/vnd.gridmp}"],"xrefs":{"person":["Jeff_Lawson"],"template":["application/vnd.gridmp"]},"registered":true},{"content-type":"application/vnd.groove-account","friendly":{"en":"Groove - Account"},"encoding":"base64","extensions":["gac"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-account=http://www.iana.org/assignments/media-types/application/vnd.groove-account}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-account"]},"registered":true},{"content-type":"application/vnd.groove-help","friendly":{"en":"Groove - Help"},"encoding":"base64","extensions":["ghf"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-help=http://www.iana.org/assignments/media-types/application/vnd.groove-help}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-help"]},"registered":true},{"content-type":"application/vnd.groove-identity-message","friendly":{"en":"Groove - Identity Message"},"encoding":"base64","extensions":["gim"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-identity-message=http://www.iana.org/assignments/media-types/application/vnd.groove-identity-message}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-identity-message"]},"registered":true},{"content-type":"application/vnd.groove-injector","friendly":{"en":"Groove - Injector"},"encoding":"base64","extensions":["grv"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-injector=http://www.iana.org/assignments/media-types/application/vnd.groove-injector}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-injector"]},"registered":true},{"content-type":"application/vnd.groove-tool-message","friendly":{"en":"Groove - Tool Message"},"encoding":"base64","extensions":["gtm"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-tool-message=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-message}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-tool-message"]},"registered":true},{"content-type":"application/vnd.groove-tool-template","friendly":{"en":"Groove - Tool Template"},"encoding":"base64","extensions":["tpl"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-tool-template=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-template}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-tool-template"]},"registered":true},{"content-type":"application/vnd.groove-vcard","friendly":{"en":"Groove - Vcard"},"encoding":"base64","extensions":["vcg"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-vcard=http://www.iana.org/assignments/media-types/application/vnd.groove-vcard}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-vcard"]},"registered":true},{"content-type":"application/vnd.hal+json","encoding":"base64","references":["IANA","[Mike_Kelly]","{application/vnd.hal+json=http://www.iana.org/assignments/media-types/application/vnd.hal+json}"],"xrefs":{"person":["Mike_Kelly"],"template":["application/vnd.hal+json"]},"registered":true},{"content-type":"application/vnd.hal+xml","friendly":{"en":"Hypertext Application Language"},"encoding":"base64","extensions":["hal"],"references":["IANA","[Mike_Kelly]","{application/vnd.hal+xml=http://www.iana.org/assignments/media-types/application/vnd.hal+xml}"],"xrefs":{"person":["Mike_Kelly"],"template":["application/vnd.hal+xml"]},"registered":true},{"content-type":"application/vnd.HandHeld-Entertainment+xml","friendly":{"en":"ZVUE Media Manager"},"encoding":"base64","extensions":["zmm"],"references":["IANA","[Eric_Hamilton]","{application/vnd.HandHeld-Entertainment+xml=http://www.iana.org/assignments/media-types/application/vnd.HandHeld-Entertainment+xml}"],"xrefs":{"person":["Eric_Hamilton"],"template":["application/vnd.HandHeld-Entertainment+xml"]},"registered":true},{"content-type":"application/vnd.hbci","friendly":{"en":"Homebanking Computer Interface (HBCI)"},"encoding":"base64","extensions":["hbci","hbc","kom","upa","pkd","bpd"],"references":["IANA","[Ingo_Hammann]","{application/vnd.hbci=http://www.iana.org/assignments/media-types/application/vnd.hbci}"],"xrefs":{"person":["Ingo_Hammann"],"template":["application/vnd.hbci"]},"registered":true},{"content-type":"application/vnd.hcl-bireports","encoding":"base64","references":["IANA","[Doug_R._Serres]","{application/vnd.hcl-bireports=http://www.iana.org/assignments/media-types/application/vnd.hcl-bireports}"],"xrefs":{"person":["Doug_R._Serres"],"template":["application/vnd.hcl-bireports"]},"registered":true},{"content-type":"application/vnd.heroku+json","encoding":"base64","references":["IANA","[Wesley_Beary]","{application/vnd.heroku+json=http://www.iana.org/assignments/media-types/application/vnd.heroku+json}"],"xrefs":{"person":["Wesley_Beary"],"template":["application/vnd.heroku+json"]},"registered":true},{"content-type":"application/vnd.hhe.lesson-player","friendly":{"en":"Archipelago Lesson Player"},"encoding":"base64","extensions":["les"],"references":["IANA","[Randy_Jones]","{application/vnd.hhe.lesson-player=http://www.iana.org/assignments/media-types/application/vnd.hhe.lesson-player}"],"xrefs":{"person":["Randy_Jones"],"template":["application/vnd.hhe.lesson-player"]},"registered":true},{"content-type":"application/vnd.hp-HPGL","friendly":{"en":"HP-GL/2 and HP RTL"},"encoding":"base64","extensions":["plt","hpgl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-HPGL=http://www.iana.org/assignments/media-types/application/vnd.hp-HPGL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-HPGL"]},"registered":true},{"content-type":"application/vnd.hp-hpid","friendly":{"en":"Hewlett Packard Instant Delivery"},"encoding":"base64","extensions":["hpid"],"references":["IANA","[Aloke_Gupta]","{application/vnd.hp-hpid=http://www.iana.org/assignments/media-types/application/vnd.hp-hpid}"],"xrefs":{"person":["Aloke_Gupta"],"template":["application/vnd.hp-hpid"]},"registered":true},{"content-type":"application/vnd.hp-hps","friendly":{"en":"Hewlett-Packard's WebPrintSmart"},"encoding":"base64","extensions":["hps"],"references":["IANA","[Steve_Aubrey]","{application/vnd.hp-hps=http://www.iana.org/assignments/media-types/application/vnd.hp-hps}"],"xrefs":{"person":["Steve_Aubrey"],"template":["application/vnd.hp-hps"]},"registered":true},{"content-type":"application/vnd.hp-jlyt","friendly":{"en":"HP Indigo Digital Press - Job Layout Languate"},"encoding":"base64","extensions":["jlt"],"references":["IANA","[Amir_Gaash]","{application/vnd.hp-jlyt=http://www.iana.org/assignments/media-types/application/vnd.hp-jlyt}"],"xrefs":{"person":["Amir_Gaash"],"template":["application/vnd.hp-jlyt"]},"registered":true},{"content-type":"application/vnd.hp-PCL","friendly":{"en":"HP Printer Command Language"},"encoding":"base64","extensions":["pcl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-PCL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-PCL"]},"registered":true},{"content-type":"application/vnd.hp-PCLXL","friendly":{"en":"PCL 6 Enhanced (Formely PCL XL)"},"encoding":"base64","extensions":["pclxl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-PCLXL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCLXL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-PCLXL"]},"registered":true},{"content-type":"application/vnd.httphone","encoding":"base64","references":["IANA","[Franck_Lefevre]","{application/vnd.httphone=http://www.iana.org/assignments/media-types/application/vnd.httphone}"],"xrefs":{"person":["Franck_Lefevre"],"template":["application/vnd.httphone"]},"registered":true},{"content-type":"application/vnd.hydrostatix.sof-data","friendly":{"en":"Hydrostatix Master Suite"},"encoding":"base64","extensions":["sfd-hdstx"],"references":["IANA","[Allen_Gillam]","{application/vnd.hydrostatix.sof-data=http://www.iana.org/assignments/media-types/application/vnd.hydrostatix.sof-data}"],"xrefs":{"person":["Allen_Gillam"],"template":["application/vnd.hydrostatix.sof-data"]},"registered":true},{"content-type":"application/vnd.hzn-3d-crossword","friendly":{"en":"3D Crossword Plugin"},"encoding":"base64","references":["IANA","[James_Minnis]","{application/vnd.hzn-3d-crossword=http://www.iana.org/assignments/media-types/application/vnd.hzn-3d-crossword}"],"xrefs":{"person":["James_Minnis"],"template":["application/vnd.hzn-3d-crossword"]},"registered":true},{"content-type":"application/vnd.ibm.afplinedata","encoding":"base64","references":["IANA","[Roger_Buis]","{application/vnd.ibm.afplinedata=http://www.iana.org/assignments/media-types/application/vnd.ibm.afplinedata}"],"xrefs":{"person":["Roger_Buis"],"template":["application/vnd.ibm.afplinedata"]},"registered":true},{"content-type":"application/vnd.ibm.electronic-media","encoding":"base64","extensions":["emm"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.electronic-media=http://www.iana.org/assignments/media-types/application/vnd.ibm.electronic-media}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.electronic-media"]},"registered":true},{"content-type":"application/vnd.ibm.MiniPay","friendly":{"en":"MiniPay"},"encoding":"base64","extensions":["mpy"],"references":["IANA","[Amir_Herzberg]","{application/vnd.ibm.MiniPay=http://www.iana.org/assignments/media-types/application/vnd.ibm.MiniPay}"],"xrefs":{"person":["Amir_Herzberg"],"template":["application/vnd.ibm.MiniPay"]},"registered":true},{"content-type":"application/vnd.ibm.modcap","friendly":{"en":"MO:DCA-P"},"encoding":"base64","extensions":["afp","list3820","listafp"],"references":["IANA","[Reinhard_Hohensee]","{application/vnd.ibm.modcap=http://www.iana.org/assignments/media-types/application/vnd.ibm.modcap}"],"xrefs":{"person":["Reinhard_Hohensee"],"template":["application/vnd.ibm.modcap"]},"registered":true},{"content-type":"application/vnd.ibm.rights-management","friendly":{"en":"IBM DB2 Rights Manager"},"encoding":"base64","extensions":["irm"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.rights-management=http://www.iana.org/assignments/media-types/application/vnd.ibm.rights-management}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.rights-management"]},"registered":true},{"content-type":"application/vnd.ibm.secure-container","friendly":{"en":"IBM Electronic Media Management System - Secure Container"},"encoding":"base64","extensions":["sc"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.secure-container=http://www.iana.org/assignments/media-types/application/vnd.ibm.secure-container}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.secure-container"]},"registered":true},{"content-type":"application/vnd.iccprofile","friendly":{"en":"ICC profile"},"encoding":"base64","extensions":["icc","icm"],"references":["IANA","[Phil_Green]","{application/vnd.iccprofile=http://www.iana.org/assignments/media-types/application/vnd.iccprofile}"],"xrefs":{"person":["Phil_Green"],"template":["application/vnd.iccprofile"]},"registered":true},{"content-type":"application/vnd.ieee.1905","encoding":"base64","references":["IANA","[Purva_R_Rajkotia]","{application/vnd.ieee.1905=http://www.iana.org/assignments/media-types/application/vnd.ieee.1905}"],"xrefs":{"person":["Purva_R_Rajkotia"],"template":["application/vnd.ieee.1905"]},"registered":true},{"content-type":"application/vnd.igloader","friendly":{"en":"igLoader"},"encoding":"base64","extensions":["igl"],"references":["IANA","[Tim_Fisher]","{application/vnd.igloader=http://www.iana.org/assignments/media-types/application/vnd.igloader}"],"xrefs":{"person":["Tim_Fisher"],"template":["application/vnd.igloader"]},"registered":true},{"content-type":"application/vnd.immervision-ivp","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivp"],"references":["IANA","[Mathieu_Villegas]","{application/vnd.immervision-ivp=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivp}"],"xrefs":{"person":["Mathieu_Villegas"],"template":["application/vnd.immervision-ivp"]},"registered":true},{"content-type":"application/vnd.immervision-ivu","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivu"],"references":["IANA","[Mathieu_Villegas]","{application/vnd.immervision-ivu=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivu}"],"xrefs":{"person":["Mathieu_Villegas"],"template":["application/vnd.immervision-ivu"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p1","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p1=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p1}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p1"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p2","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p2=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p2}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p2"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p3","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p3=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p3}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p3"]},"registered":true},{"content-type":"application/vnd.ims.lis.v2.result+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lis.v2.result+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lis.v2.result+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lis.v2.result+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolconsumerprofile+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolconsumerprofile+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolconsumerprofile+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolconsumerprofile+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolproxy+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolproxy+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy.id+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolproxy.id+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy.id+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolproxy.id+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolsettings+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolsettings+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings.simple+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolsettings.simple+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings.simple+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolsettings.simple+json"]},"registered":true},{"content-type":"application/vnd.informedcontrol.rms+xml","encoding":"base64","references":["IANA","[Mark_Wahl]","{application/vnd.informedcontrol.rms+xml=http://www.iana.org/assignments/media-types/application/vnd.informedcontrol.rms+xml}"],"xrefs":{"person":["Mark_Wahl"],"template":["application/vnd.informedcontrol.rms+xml"]},"registered":true},{"content-type":"application/vnd.informix-visionary","encoding":"base64","obsolete":true,"use-instead":"application/vnd.visionary","references":["IANA","[Christopher_Gales]","{application/vnd.informix-visionary=http://www.iana.org/assignments/media-types/application/vnd.informix-visionary}"],"xrefs":{"person":["Christopher_Gales"],"template":["application/vnd.informix-visionary"],"notes":["- OBSOLETED in favor of application/vnd.visionary"]},"registered":true},{"content-type":"application/vnd.infotech.project","encoding":"base64","references":["IANA","[Charles_Engelke]","{application/vnd.infotech.project=http://www.iana.org/assignments/media-types/application/vnd.infotech.project}"],"xrefs":{"person":["Charles_Engelke"],"template":["application/vnd.infotech.project"]},"registered":true},{"content-type":"application/vnd.infotech.project+xml","encoding":"base64","references":["IANA","[Charles_Engelke]","{application/vnd.infotech.project+xml=http://www.iana.org/assignments/media-types/application/vnd.infotech.project+xml}"],"xrefs":{"person":["Charles_Engelke"],"template":["application/vnd.infotech.project+xml"]},"registered":true},{"content-type":"application/vnd.innopath.wamp.notification","encoding":"base64","references":["IANA","[Takanori_Sudo]","{application/vnd.innopath.wamp.notification=http://www.iana.org/assignments/media-types/application/vnd.innopath.wamp.notification}"],"xrefs":{"person":["Takanori_Sudo"],"template":["application/vnd.innopath.wamp.notification"]},"registered":true},{"content-type":"application/vnd.insors.igm","friendly":{"en":"IOCOM Visimeet"},"encoding":"base64","extensions":["igm"],"references":["IANA","[Jon_Swanson]","{application/vnd.insors.igm=http://www.iana.org/assignments/media-types/application/vnd.insors.igm}"],"xrefs":{"person":["Jon_Swanson"],"template":["application/vnd.insors.igm"]},"registered":true},{"content-type":"application/vnd.intercon.formnet","friendly":{"en":"Intercon FormNet"},"encoding":"base64","extensions":["xpw","xpx"],"references":["IANA","[Tom_Gurak]","{application/vnd.intercon.formnet=http://www.iana.org/assignments/media-types/application/vnd.intercon.formnet}"],"xrefs":{"person":["Tom_Gurak"],"template":["application/vnd.intercon.formnet"]},"registered":true},{"content-type":"application/vnd.intergeo","friendly":{"en":"Interactive Geometry Software"},"encoding":"base64","extensions":["i2g"],"references":["IANA","[Yves_Kreis_2]","{application/vnd.intergeo=http://www.iana.org/assignments/media-types/application/vnd.intergeo}"],"xrefs":{"person":["Yves_Kreis_2"],"template":["application/vnd.intergeo"]},"registered":true},{"content-type":"application/vnd.intertrust.digibox","encoding":"base64","references":["IANA","[Luke_Tomasello]","{application/vnd.intertrust.digibox=http://www.iana.org/assignments/media-types/application/vnd.intertrust.digibox}"],"xrefs":{"person":["Luke_Tomasello"],"template":["application/vnd.intertrust.digibox"]},"registered":true},{"content-type":"application/vnd.intertrust.nncp","encoding":"base64","references":["IANA","[Luke_Tomasello]","{application/vnd.intertrust.nncp=http://www.iana.org/assignments/media-types/application/vnd.intertrust.nncp}"],"xrefs":{"person":["Luke_Tomasello"],"template":["application/vnd.intertrust.nncp"]},"registered":true},{"content-type":"application/vnd.intu.qbo","friendly":{"en":"Open Financial Exchange"},"encoding":"base64","extensions":["qbo"],"references":["IANA","[Greg_Scratchley]","{application/vnd.intu.qbo=http://www.iana.org/assignments/media-types/application/vnd.intu.qbo}"],"xrefs":{"person":["Greg_Scratchley"],"template":["application/vnd.intu.qbo"]},"registered":true},{"content-type":"application/vnd.intu.qfx","friendly":{"en":"Quicken"},"encoding":"base64","extensions":["qfx"],"references":["IANA","[Greg_Scratchley]","{application/vnd.intu.qfx=http://www.iana.org/assignments/media-types/application/vnd.intu.qfx}"],"xrefs":{"person":["Greg_Scratchley"],"template":["application/vnd.intu.qfx"]},"registered":true},{"content-type":"application/vnd.iptc.g2.catalogitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.catalogitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.catalogitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.catalogitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.conceptitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.conceptitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.conceptitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.conceptitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.knowledgeitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.knowledgeitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.knowledgeitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.knowledgeitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.newsitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.newsitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.newsitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.newsmessage+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.newsmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsmessage+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.newsmessage+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.packageitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.packageitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.packageitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.packageitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.planningitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.planningitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.planningitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.planningitem+xml"]},"registered":true},{"content-type":"application/vnd.ipunplugged.rcprofile","friendly":{"en":"IP Unplugged Roaming Client"},"encoding":"base64","extensions":["rcprofile"],"references":["IANA","[Per_Ersson]","{application/vnd.ipunplugged.rcprofile=http://www.iana.org/assignments/media-types/application/vnd.ipunplugged.rcprofile}"],"xrefs":{"person":["Per_Ersson"],"template":["application/vnd.ipunplugged.rcprofile"]},"registered":true},{"content-type":"application/vnd.irepository.package+xml","friendly":{"en":"iRepository / Lucidoc Editor"},"encoding":"base64","extensions":["irp"],"references":["IANA","[Martin_Knowles]","{application/vnd.irepository.package+xml=http://www.iana.org/assignments/media-types/application/vnd.irepository.package+xml}"],"xrefs":{"person":["Martin_Knowles"],"template":["application/vnd.irepository.package+xml"]},"registered":true},{"content-type":"application/vnd.is-xpr","friendly":{"en":"Express by Infoseek"},"encoding":"base64","extensions":["xpr"],"references":["IANA","[Satish_Navarajan]","{application/vnd.is-xpr=http://www.iana.org/assignments/media-types/application/vnd.is-xpr}"],"xrefs":{"person":["Satish_Navarajan"],"template":["application/vnd.is-xpr"]},"registered":true},{"content-type":"application/vnd.isac.fcs","friendly":{"en":"International Society for Advancement of Cytometry"},"encoding":"base64","extensions":["fcs"],"references":["IANA","[Ryan_Brinkman]","{application/vnd.isac.fcs=http://www.iana.org/assignments/media-types/application/vnd.isac.fcs}"],"xrefs":{"person":["Ryan_Brinkman"],"template":["application/vnd.isac.fcs"]},"registered":true},{"content-type":"application/vnd.jam","friendly":{"en":"Lightspeed Audio Lab"},"encoding":"base64","extensions":["jam"],"references":["IANA","[Brijesh_Kumar]","{application/vnd.jam=http://www.iana.org/assignments/media-types/application/vnd.jam}"],"xrefs":{"person":["Brijesh_Kumar"],"template":["application/vnd.jam"]},"registered":true},{"content-type":"application/vnd.japannet-directory-service","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-directory-service=http://www.iana.org/assignments/media-types/application/vnd.japannet-directory-service}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-directory-service"]},"registered":true},{"content-type":"application/vnd.japannet-jpnstore-wakeup","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-jpnstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-jpnstore-wakeup}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-jpnstore-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-payment-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-payment-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-payment-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-payment-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-registration","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-registration=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-registration"]},"registered":true},{"content-type":"application/vnd.japannet-registration-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-registration-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-registration-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-setstore-wakeup","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-setstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-setstore-wakeup}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-setstore-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-verification","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-verification=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-verification"]},"registered":true},{"content-type":"application/vnd.japannet-verification-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-verification-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-verification-wakeup"]},"registered":true},{"content-type":"application/vnd.jcp.javame.midlet-rms","friendly":{"en":"Mobile Information Device Profile"},"encoding":"base64","extensions":["rms"],"references":["IANA","[Mikhail_Gorshenev]","{application/vnd.jcp.javame.midlet-rms=http://www.iana.org/assignments/media-types/application/vnd.jcp.javame.midlet-rms}"],"xrefs":{"person":["Mikhail_Gorshenev"],"template":["application/vnd.jcp.javame.midlet-rms"]},"registered":true},{"content-type":"application/vnd.jisp","friendly":{"en":"RhymBox"},"encoding":"base64","extensions":["jisp"],"references":["IANA","[Sebastiaan_Deckers]","{application/vnd.jisp=http://www.iana.org/assignments/media-types/application/vnd.jisp}"],"xrefs":{"person":["Sebastiaan_Deckers"],"template":["application/vnd.jisp"]},"registered":true},{"content-type":"application/vnd.joost.joda-archive","friendly":{"en":"Joda Archive"},"encoding":"base64","extensions":["joda"],"references":["IANA","[Joost]","{application/vnd.joost.joda-archive=http://www.iana.org/assignments/media-types/application/vnd.joost.joda-archive}"],"xrefs":{"person":["Joost"],"template":["application/vnd.joost.joda-archive"]},"registered":true},{"content-type":"application/vnd.jsk.isdn-ngn","encoding":"base64","references":["IANA","[Yokoyama_Kiyonobu]","{application/vnd.jsk.isdn-ngn=http://www.iana.org/assignments/media-types/application/vnd.jsk.isdn-ngn}"],"xrefs":{"person":["Yokoyama_Kiyonobu"],"template":["application/vnd.jsk.isdn-ngn"]},"registered":true},{"content-type":"application/vnd.kahootz","friendly":{"en":"Kahootz"},"encoding":"base64","extensions":["ktr","ktz"],"references":["IANA","[Tim_Macdonald]","{application/vnd.kahootz=http://www.iana.org/assignments/media-types/application/vnd.kahootz}"],"xrefs":{"person":["Tim_Macdonald"],"template":["application/vnd.kahootz"]},"registered":true},{"content-type":"application/vnd.kde.karbon","friendly":{"en":"KDE KOffice Office Suite - Karbon"},"encoding":"base64","extensions":["karbon"],"references":["IANA","[David_Faure]","{application/vnd.kde.karbon=http://www.iana.org/assignments/media-types/application/vnd.kde.karbon}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.karbon"]},"registered":true},{"content-type":"application/vnd.kde.kchart","friendly":{"en":"KDE KOffice Office Suite - KChart"},"encoding":"base64","extensions":["chrt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kchart=http://www.iana.org/assignments/media-types/application/vnd.kde.kchart}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kchart"]},"registered":true},{"content-type":"application/vnd.kde.kformula","friendly":{"en":"KDE KOffice Office Suite - Kformula"},"encoding":"base64","extensions":["kfo"],"references":["IANA","[David_Faure]","{application/vnd.kde.kformula=http://www.iana.org/assignments/media-types/application/vnd.kde.kformula}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kformula"]},"registered":true},{"content-type":"application/vnd.kde.kivio","friendly":{"en":"KDE KOffice Office Suite - Kivio"},"encoding":"base64","extensions":["flw"],"references":["IANA","[David_Faure]","{application/vnd.kde.kivio=http://www.iana.org/assignments/media-types/application/vnd.kde.kivio}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kivio"]},"registered":true},{"content-type":"application/vnd.kde.kontour","friendly":{"en":"KDE KOffice Office Suite - Kontour"},"encoding":"base64","extensions":["kon"],"references":["IANA","[David_Faure]","{application/vnd.kde.kontour=http://www.iana.org/assignments/media-types/application/vnd.kde.kontour}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kontour"]},"registered":true},{"content-type":"application/vnd.kde.kpresenter","friendly":{"en":"KDE KOffice Office Suite - Kpresenter"},"encoding":"base64","extensions":["kpr","kpt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kpresenter=http://www.iana.org/assignments/media-types/application/vnd.kde.kpresenter}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kpresenter"]},"registered":true},{"content-type":"application/vnd.kde.kspread","friendly":{"en":"KDE KOffice Office Suite - Kspread"},"encoding":"base64","extensions":["ksp"],"references":["IANA","[David_Faure]","{application/vnd.kde.kspread=http://www.iana.org/assignments/media-types/application/vnd.kde.kspread}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kspread"]},"registered":true},{"content-type":"application/vnd.kde.kword","friendly":{"en":"KDE KOffice Office Suite - Kword"},"encoding":"base64","extensions":["kwd","kwt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kword=http://www.iana.org/assignments/media-types/application/vnd.kde.kword}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kword"]},"registered":true},{"content-type":"application/vnd.kenameaapp","friendly":{"en":"Kenamea App"},"encoding":"base64","extensions":["htke"],"references":["IANA","[Dirk_DiGiorgio-Haag]","{application/vnd.kenameaapp=http://www.iana.org/assignments/media-types/application/vnd.kenameaapp}"],"xrefs":{"person":["Dirk_DiGiorgio-Haag"],"template":["application/vnd.kenameaapp"]},"registered":true},{"content-type":"application/vnd.kidspiration","friendly":{"en":"Kidspiration"},"encoding":"base64","extensions":["kia"],"references":["IANA","[Jack_Bennett]","{application/vnd.kidspiration=http://www.iana.org/assignments/media-types/application/vnd.kidspiration}"],"xrefs":{"person":["Jack_Bennett"],"template":["application/vnd.kidspiration"]},"registered":true},{"content-type":"application/vnd.Kinar","friendly":{"en":"Kinar Applications"},"encoding":"base64","extensions":["kne","knp","sdf"],"references":["IANA","[Hemant_Thakkar]","{application/vnd.Kinar=http://www.iana.org/assignments/media-types/application/vnd.Kinar}"],"xrefs":{"person":["Hemant_Thakkar"],"template":["application/vnd.Kinar"]},"registered":true},{"content-type":"application/vnd.koan","friendly":{"en":"SSEYO Koan Play File"},"encoding":"base64","extensions":["skd","skm","skp","skt"],"references":["IANA","[Pete_Cole]","{application/vnd.koan=http://www.iana.org/assignments/media-types/application/vnd.koan}"],"xrefs":{"person":["Pete_Cole"],"template":["application/vnd.koan"]},"registered":true},{"content-type":"application/vnd.kodak-descriptor","friendly":{"en":"Kodak Storyshare"},"encoding":"base64","extensions":["sse"],"references":["IANA","[Michael_J._Donahue]","{application/vnd.kodak-descriptor=http://www.iana.org/assignments/media-types/application/vnd.kodak-descriptor}"],"xrefs":{"person":["Michael_J._Donahue"],"template":["application/vnd.kodak-descriptor"]},"registered":true},{"content-type":"application/vnd.las.las+xml","friendly":{"en":"Laser App Enterprise"},"encoding":"base64","extensions":["lasxml"],"references":["IANA","[Rob_Bailey]","{application/vnd.las.las+xml=http://www.iana.org/assignments/media-types/application/vnd.las.las+xml}"],"xrefs":{"person":["Rob_Bailey"],"template":["application/vnd.las.las+xml"]},"registered":true},{"content-type":"application/vnd.liberty-request+xml","encoding":"base64","references":["IANA","[Brett_McDowell]","{application/vnd.liberty-request+xml=http://www.iana.org/assignments/media-types/application/vnd.liberty-request+xml}"],"xrefs":{"person":["Brett_McDowell"],"template":["application/vnd.liberty-request+xml"]},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.desktop","friendly":{"en":"Life Balance - Desktop Edition"},"encoding":"base64","extensions":["lbd"],"references":["IANA","[Catherine_E._White]","{application/vnd.llamagraphics.life-balance.desktop=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.desktop}"],"xrefs":{"person":["Catherine_E._White"],"template":["application/vnd.llamagraphics.life-balance.desktop"]},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.exchange+xml","friendly":{"en":"Life Balance - Exchange Format"},"encoding":"base64","extensions":["lbe"],"references":["IANA","[Catherine_E._White]","{application/vnd.llamagraphics.life-balance.exchange+xml=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.exchange+xml}"],"xrefs":{"person":["Catherine_E._White"],"template":["application/vnd.llamagraphics.life-balance.exchange+xml"]},"registered":true},{"content-type":"application/vnd.lotus-1-2-3","friendly":{"en":"Lotus 1-2-3"},"encoding":"base64","extensions":["wks","123"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-1-2-3=http://www.iana.org/assignments/media-types/application/vnd.lotus-1-2-3}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-1-2-3"]},"registered":true},{"content-type":"application/vnd.lotus-approach","friendly":{"en":"Lotus Approach"},"encoding":"base64","extensions":["apr"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-approach=http://www.iana.org/assignments/media-types/application/vnd.lotus-approach}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-approach"]},"registered":true},{"content-type":"application/vnd.lotus-freelance","friendly":{"en":"Lotus Freelance"},"encoding":"base64","extensions":["pre"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-freelance=http://www.iana.org/assignments/media-types/application/vnd.lotus-freelance}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-freelance"]},"registered":true},{"content-type":"application/vnd.lotus-notes","friendly":{"en":"Lotus Notes"},"encoding":"base64","extensions":["nsf"],"references":["IANA","[Michael_Laramie]","{application/vnd.lotus-notes=http://www.iana.org/assignments/media-types/application/vnd.lotus-notes}"],"xrefs":{"person":["Michael_Laramie"],"template":["application/vnd.lotus-notes"]},"registered":true},{"content-type":"application/vnd.lotus-organizer","friendly":{"en":"Lotus Organizer"},"encoding":"base64","extensions":["org"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-organizer=http://www.iana.org/assignments/media-types/application/vnd.lotus-organizer}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-organizer"]},"registered":true},{"content-type":"application/vnd.lotus-screencam","friendly":{"en":"Lotus Screencam"},"encoding":"base64","extensions":["scm"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-screencam=http://www.iana.org/assignments/media-types/application/vnd.lotus-screencam}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-screencam"]},"registered":true},{"content-type":"application/vnd.lotus-wordpro","friendly":{"en":"Lotus Wordpro"},"encoding":"base64","extensions":["lwp"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-wordpro=http://www.iana.org/assignments/media-types/application/vnd.lotus-wordpro}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-wordpro"]},"registered":true},{"content-type":"application/vnd.macports.portpkg","friendly":{"en":"MacPorts Port System"},"encoding":"base64","extensions":["portpkg"],"references":["IANA","[James_Berry]","{application/vnd.macports.portpkg=http://www.iana.org/assignments/media-types/application/vnd.macports.portpkg}"],"xrefs":{"person":["James_Berry"],"template":["application/vnd.macports.portpkg"]},"registered":true},{"content-type":"application/vnd.marlin.drm.actiontoken+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.actiontoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.actiontoken+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.actiontoken+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.conftoken+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.conftoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.conftoken+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.conftoken+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.license+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.license+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.license+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.license+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.mdcf","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.mdcf=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.mdcf}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.mdcf"]},"registered":true},{"content-type":"application/vnd.mason+json","encoding":"base64","references":["IANA","[Jorn_Wildt]","{application/vnd.mason+json=http://www.iana.org/assignments/media-types/application/vnd.mason+json}"],"xrefs":{"person":["Jorn_Wildt"],"template":["application/vnd.mason+json"]},"registered":true},{"content-type":"application/vnd.maxmind.maxmind-db","encoding":"base64","references":["IANA","[William_Stevenson]","{application/vnd.maxmind.maxmind-db=http://www.iana.org/assignments/media-types/application/vnd.maxmind.maxmind-db}"],"xrefs":{"person":["William_Stevenson"],"template":["application/vnd.maxmind.maxmind-db"]},"registered":true},{"content-type":"application/vnd.mcd","friendly":{"en":"Micro CADAM Helix D&D"},"encoding":"base64","extensions":["mcd"],"references":["IANA","[Tadashi_Gotoh]","{application/vnd.mcd=http://www.iana.org/assignments/media-types/application/vnd.mcd}"],"xrefs":{"person":["Tadashi_Gotoh"],"template":["application/vnd.mcd"]},"registered":true},{"content-type":"application/vnd.medcalcdata","friendly":{"en":"MedCalc"},"encoding":"base64","extensions":["mc1"],"references":["IANA","[Frank_Schoonjans]","{application/vnd.medcalcdata=http://www.iana.org/assignments/media-types/application/vnd.medcalcdata}"],"xrefs":{"person":["Frank_Schoonjans"],"template":["application/vnd.medcalcdata"]},"registered":true},{"content-type":"application/vnd.mediastation.cdkey","friendly":{"en":"MediaRemote"},"encoding":"base64","extensions":["cdkey"],"references":["IANA","[Henry_Flurry]","{application/vnd.mediastation.cdkey=http://www.iana.org/assignments/media-types/application/vnd.mediastation.cdkey}"],"xrefs":{"person":["Henry_Flurry"],"template":["application/vnd.mediastation.cdkey"]},"registered":true},{"content-type":"application/vnd.meridian-slingshot","encoding":"base64","references":["IANA","[Eric_Wedel]","{application/vnd.meridian-slingshot=http://www.iana.org/assignments/media-types/application/vnd.meridian-slingshot}"],"xrefs":{"person":["Eric_Wedel"],"template":["application/vnd.meridian-slingshot"]},"registered":true},{"content-type":"application/vnd.MFER","friendly":{"en":"Medical Waveform Encoding Format"},"encoding":"base64","extensions":["mwf"],"references":["IANA","[Masaaki_Hirai]","{application/vnd.MFER=http://www.iana.org/assignments/media-types/application/vnd.MFER}"],"xrefs":{"person":["Masaaki_Hirai"],"template":["application/vnd.MFER"]},"registered":true},{"content-type":"application/vnd.mfmp","friendly":{"en":"Melody Format for Mobile Platform"},"encoding":"base64","extensions":["mfm"],"references":["IANA","[Yukari_Ikeda]","{application/vnd.mfmp=http://www.iana.org/assignments/media-types/application/vnd.mfmp}"],"xrefs":{"person":["Yukari_Ikeda"],"template":["application/vnd.mfmp"]},"registered":true},{"content-type":"application/vnd.micro+json","encoding":"base64","references":["IANA","[Dali_Zheng]","{application/vnd.micro+json=http://www.iana.org/assignments/media-types/application/vnd.micro+json}"],"xrefs":{"person":["Dali_Zheng"],"template":["application/vnd.micro+json"]},"registered":true},{"content-type":"application/vnd.micrografx.flo","friendly":{"en":"Micrografx"},"encoding":"base64","extensions":["flo"],"references":["IANA","[Joe_Prevo]","{application/vnd.micrografx.flo=http://www.iana.org/assignments/media-types/application/vnd.micrografx.flo}"],"xrefs":{"person":["Joe_Prevo"],"template":["application/vnd.micrografx.flo"]},"registered":true},{"content-type":"application/vnd.micrografx.igx","friendly":{"en":"Micrografx iGrafx Professional"},"encoding":"base64","extensions":["igx"],"references":["IANA","[Joe_Prevo]","{application/vnd.micrografx-igx=http://www.iana.org/assignments/media-types/application/vnd.micrografx-igx}"],"xrefs":{"person":["Joe_Prevo"],"template":["application/vnd.micrografx-igx"]},"registered":true},{"content-type":"application/vnd.microsoft.portable-executable","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.microsoft.portable-executable=http://www.iana.org/assignments/media-types/application/vnd.microsoft.portable-executable}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.microsoft.portable-executable"]},"registered":true},{"content-type":"application/vnd.miele+json","encoding":"base64","references":["IANA","[Nils_Langhammer]","{application/vnd.miele+json=http://www.iana.org/assignments/media-types/application/vnd.miele+json}"],"xrefs":{"person":["Nils_Langhammer"],"template":["application/vnd.miele+json"]},"registered":true},{"content-type":"application/vnd.mif","friendly":{"en":"FrameMaker Interchange Format"},"encoding":"base64","extensions":["mif"],"references":["IANA","[Mike_Wexler]","{application/vnd-mif=http://www.iana.org/assignments/media-types/application/vnd-mif}"],"xrefs":{"person":["Mike_Wexler"],"template":["application/vnd-mif"]},"registered":true},{"content-type":"application/vnd.minisoft-hp3000-save","encoding":"base64","references":["IANA","[Chris_Bartram]","{application/vnd.minisoft-hp3000-save=http://www.iana.org/assignments/media-types/application/vnd.minisoft-hp3000-save}"],"xrefs":{"person":["Chris_Bartram"],"template":["application/vnd.minisoft-hp3000-save"]},"registered":true},{"content-type":"application/vnd.mitsubishi.misty-guard.trustweb","encoding":"base64","references":["IANA","[Tanaka]","{application/vnd.mitsubishi.misty-guard.trustweb=http://www.iana.org/assignments/media-types/application/vnd.mitsubishi.misty-guard.trustweb}"],"xrefs":{"person":["Tanaka"],"template":["application/vnd.mitsubishi.misty-guard.trustweb"]},"registered":true},{"content-type":"application/vnd.Mobius.DAF","friendly":{"en":"Mobius Management Systems - UniversalArchive"},"encoding":"base64","extensions":["daf"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.DAF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DAF}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.DAF"]},"registered":true},{"content-type":"application/vnd.Mobius.DIS","friendly":{"en":"Mobius Management Systems - Distribution Database"},"encoding":"base64","extensions":["dis"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.DIS=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DIS}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.DIS"]},"registered":true},{"content-type":"application/vnd.Mobius.MBK","friendly":{"en":"Mobius Management Systems - Basket file"},"encoding":"base64","extensions":["mbk"],"references":["IANA","[Alex_Devasia]","{application/vnd.Mobius.MBK=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MBK}"],"xrefs":{"person":["Alex_Devasia"],"template":["application/vnd.Mobius.MBK"]},"registered":true},{"content-type":"application/vnd.Mobius.MQY","friendly":{"en":"Mobius Management Systems - Query File"},"encoding":"base64","extensions":["mqy"],"references":["IANA","[Alex_Devasia]","{application/vnd.Mobius.MQY=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MQY}"],"xrefs":{"person":["Alex_Devasia"],"template":["application/vnd.Mobius.MQY"]},"registered":true},{"content-type":"application/vnd.Mobius.MSL","friendly":{"en":"Mobius Management Systems - Script Language"},"encoding":"base64","extensions":["msl"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.MSL=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MSL}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.MSL"]},"registered":true},{"content-type":"application/vnd.Mobius.PLC","friendly":{"en":"Mobius Management Systems - Policy Definition Language File"},"encoding":"base64","extensions":["plc"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.PLC=http://www.iana.org/assignments/media-types/application/vnd.Mobius.PLC}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.PLC"]},"registered":true},{"content-type":"application/vnd.Mobius.TXF","friendly":{"en":"Mobius Management Systems - Topic Index File"},"encoding":"base64","extensions":["txf"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.TXF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.TXF}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.TXF"]},"registered":true},{"content-type":"application/vnd.mophun.application","friendly":{"en":"Mophun VM"},"encoding":"base64","extensions":["mpn"],"references":["IANA","[Bjorn_Wennerstrom]","{application/vnd.mophun.application=http://www.iana.org/assignments/media-types/application/vnd.mophun.application}"],"xrefs":{"person":["Bjorn_Wennerstrom"],"template":["application/vnd.mophun.application"]},"registered":true},{"content-type":"application/vnd.mophun.certificate","friendly":{"en":"Mophun Certificate"},"encoding":"base64","extensions":["mpc"],"references":["IANA","[Bjorn_Wennerstrom]","{application/vnd.mophun.certificate=http://www.iana.org/assignments/media-types/application/vnd.mophun.certificate}"],"xrefs":{"person":["Bjorn_Wennerstrom"],"template":["application/vnd.mophun.certificate"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.adsi","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.adsi=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.adsi}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.adsi"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.fis","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.fis=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.fis}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.fis"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.gotap","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.gotap=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.gotap}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.gotap"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.kmr","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.kmr=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.kmr}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.kmr"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.ttc","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.ttc=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.ttc}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.ttc"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.wem","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.wem=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.wem}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.wem"]},"registered":true},{"content-type":"application/vnd.motorola.iprm","encoding":"base64","references":["IANA","[Rafie_Shamsaasef]","{application/vnd.motorola.iprm=http://www.iana.org/assignments/media-types/application/vnd.motorola.iprm}"],"xrefs":{"person":["Rafie_Shamsaasef"],"template":["application/vnd.motorola.iprm"]},"registered":true},{"content-type":"application/vnd.mozilla.xul+xml","friendly":{"en":"XUL - XML User Interface Language"},"encoding":"base64","extensions":["xul"],"references":["IANA","[Braden_N_McDaniel]","{application/vnd.mozilla.xul+xml=http://www.iana.org/assignments/media-types/application/vnd.mozilla.xul+xml}"],"xrefs":{"person":["Braden_N_McDaniel"],"template":["application/vnd.mozilla.xul+xml"]},"registered":true},{"content-type":"application/vnd.ms-3mfdocument","encoding":"base64","references":["IANA","[Shawn_Maloney]","{application/vnd.ms-3mfdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-3mfdocument}"],"xrefs":{"person":["Shawn_Maloney"],"template":["application/vnd.ms-3mfdocument"]},"registered":true},{"content-type":"application/vnd.ms-artgalry","friendly":{"en":"Microsoft Artgalry"},"encoding":"base64","extensions":["cil"],"references":["IANA","[Dean_Slawson]","{application/vnd.ms-artgalry=http://www.iana.org/assignments/media-types/application/vnd.ms-artgalry}"],"xrefs":{"person":["Dean_Slawson"],"template":["application/vnd.ms-artgalry"]},"registered":true},{"content-type":"application/vnd.ms-asf","encoding":"base64","extensions":["asf"],"references":["IANA","[Eric_Fleischman]","{application/vnd.ms-asf=http://www.iana.org/assignments/media-types/application/vnd.ms-asf}"],"xrefs":{"person":["Eric_Fleischman"],"template":["application/vnd.ms-asf"]},"registered":true},{"content-type":"application/vnd.ms-cab-compressed","friendly":{"en":"Microsoft Cabinet File"},"encoding":"base64","extensions":["cab"],"references":["IANA","[Kim_Scarborough]","{application/vnd.ms-cab-compressed=http://www.iana.org/assignments/media-types/application/vnd.ms-cab-compressed}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.ms-cab-compressed"]},"registered":true},{"content-type":"application/vnd.ms-excel","friendly":{"en":"Microsoft Excel"},"encoding":"base64","extensions":["xls","xlt","xla","xlc","xlm","xlw"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-excel=http://www.iana.org/assignments/media-types/application/vnd.ms-excel}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-excel"]},"registered":true},{"content-type":"application/vnd.ms-excel.addin.macroEnabled.12","friendly":{"en":"Microsoft Excel - Add-In File"},"encoding":"base64","extensions":["xlam"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.addin.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.addin.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.binary.macroEnabled.12","friendly":{"en":"Microsoft Excel - Binary Workbook"},"encoding":"base64","extensions":["xlsb"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.sheet.binary.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.binary.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.sheet.binary.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Workbook"},"encoding":"base64","extensions":["xlsm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.sheet.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.sheet.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.template.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Template File"},"encoding":"base64","extensions":["xltm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-fontobject","friendly":{"en":"Microsoft Embedded OpenType"},"encoding":"base64","extensions":["eot"],"references":["IANA","[Kim_Scarborough]","{application/vnd.ms-fontobject=http://www.iana.org/assignments/media-types/application/vnd.ms-fontobject}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.ms-fontobject"]},"registered":true},{"content-type":"application/vnd.ms-htmlhelp","friendly":{"en":"Microsoft Html Help File"},"encoding":"base64","extensions":["chm"],"references":["IANA","[Anatoly_Techtonik]","{application/vnd.ms-htmlhelp=http://www.iana.org/assignments/media-types/application/vnd.ms-htmlhelp}"],"xrefs":{"person":["Anatoly_Techtonik"],"template":["application/vnd.ms-htmlhelp"]},"registered":true},{"content-type":"application/vnd.ms-ims","friendly":{"en":"Microsoft Class Server"},"encoding":"base64","extensions":["ims"],"references":["IANA","[Eric_Ledoux]","{application/vnd.ms-ims=http://www.iana.org/assignments/media-types/application/vnd.ms-ims}"],"xrefs":{"person":["Eric_Ledoux"],"template":["application/vnd.ms-ims"]},"registered":true},{"content-type":"application/vnd.ms-lrm","friendly":{"en":"Microsoft Learning Resource Module"},"encoding":"base64","extensions":["lrm"],"references":["IANA","[Eric_Ledoux]","{application/vnd.ms-lrm=http://www.iana.org/assignments/media-types/application/vnd.ms-lrm}"],"xrefs":{"person":["Eric_Ledoux"],"template":["application/vnd.ms-lrm"]},"registered":true},{"content-type":"application/vnd.ms-office.activeX+xml","encoding":"base64","references":["IANA","[Chris_Rae]","{application/vnd.ms-office.activeX+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-office.activeX+xml}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-office.activeX+xml"]},"registered":true},{"content-type":"application/vnd.ms-officetheme","friendly":{"en":"Microsoft Office System Release Theme"},"encoding":"base64","extensions":["thmx"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-officetheme=http://www.iana.org/assignments/media-types/application/vnd.ms-officetheme}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-officetheme"]},"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","references":["IANA","[Daniel_Schneider]","{application/vnd.ms-playready.initiator+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-playready.initiator+xml}"],"xrefs":{"person":["Daniel_Schneider"],"template":["application/vnd.ms-playready.initiator+xml"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint","friendly":{"en":"Microsoft PowerPoint"},"encoding":"base64","extensions":["ppt","pps","pot"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-powerpoint=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-powerpoint"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.addin.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Add-in file"},"encoding":"base64","extensions":["ppam"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.addin.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.addin.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.presentation.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Presentation File"},"encoding":"base64","extensions":["pptm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.presentation.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.presentation.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.presentation.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slide.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Open XML Slide"},"encoding":"base64","extensions":["sldm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.slide.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slide.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.slide.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slideshow.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Slide Show File"},"encoding":"base64","extensions":["ppsm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.slideshow.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slideshow.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.slideshow.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.template.macroEnabled.12","friendly":{"en":"Micosoft PowerPoint - Macro-Enabled Template File"},"encoding":"base64","extensions":["potm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-project","friendly":{"en":"Microsoft Project"},"encoding":"base64","extensions":["mpp","mpt"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-project=http://www.iana.org/assignments/media-types/application/vnd.ms-project}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-project"]},"registered":true},{"content-type":"application/vnd.ms-tnef","encoding":"base64","references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-tnef=http://www.iana.org/assignments/media-types/application/vnd.ms-tnef}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-tnef"]},"registered":true},{"content-type":"application/vnd.ms-windows.printerpairing","encoding":"base64","references":["IANA","[Justin_Hutchings]","{application/vnd.ms-windows.printerpairing=http://www.iana.org/assignments/media-types/application/vnd.ms-windows.printerpairing}"],"xrefs":{"person":["Justin_Hutchings"],"template":["application/vnd.ms-windows.printerpairing"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-chlg-req","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.lic-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-chlg-req}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.lic-chlg-req"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-resp","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.lic-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-resp}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.lic-resp"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-chlg-req","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.meter-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-chlg-req}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.meter-chlg-req"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-resp","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.meter-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-resp}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.meter-resp"]},"registered":true},{"content-type":"application/vnd.ms-word.document.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Document"},"encoding":"base64","extensions":["docm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-word.document.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.document.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-word.document.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-word.template.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Template"},"encoding":"base64","extensions":["dotm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-word.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-word.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-works","friendly":{"en":"Microsoft Works"},"encoding":"base64","extensions":["wcm","wdb","wks","wps"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-works=http://www.iana.org/assignments/media-types/application/vnd.ms-works}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-works"]},"registered":true},{"content-type":"application/vnd.ms-wpl","friendly":{"en":"Microsoft Windows Media Player Playlist"},"encoding":"base64","extensions":["wpl"],"references":["IANA","[Dan_Plastina]","{application/vnd.ms-wpl=http://www.iana.org/assignments/media-types/application/vnd.ms-wpl}"],"xrefs":{"person":["Dan_Plastina"],"template":["application/vnd.ms-wpl"]},"registered":true},{"content-type":"application/vnd.ms-xpsdocument","friendly":{"en":"Microsoft XML Paper Specification"},"encoding":"8bit","extensions":["xps"],"references":["IANA","[Jesse_McGatha]","{application/vnd.ms-xpsdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-xpsdocument}"],"xrefs":{"person":["Jesse_McGatha"],"template":["application/vnd.ms-xpsdocument"]},"registered":true},{"content-type":"application/vnd.msa-disk-image","encoding":"base64","references":["IANA","[Thomas_Huth]","{application/vnd.msa-disk-image=http://www.iana.org/assignments/media-types/application/vnd.msa-disk-image}"],"xrefs":{"person":["Thomas_Huth"],"template":["application/vnd.msa-disk-image"]},"registered":true},{"content-type":"application/vnd.mseq","friendly":{"en":"3GPP MSEQ File"},"encoding":"base64","extensions":["mseq"],"references":["IANA","[Gwenael_Le_Bodic]","{application/vnd.mseq=http://www.iana.org/assignments/media-types/application/vnd.mseq}"],"xrefs":{"person":["Gwenael_Le_Bodic"],"template":["application/vnd.mseq"]},"registered":true},{"content-type":"application/vnd.msign","encoding":"base64","references":["IANA","[Malte_Borcherding]","{application/vnd.msign=http://www.iana.org/assignments/media-types/application/vnd.msign}"],"xrefs":{"person":["Malte_Borcherding"],"template":["application/vnd.msign"]},"registered":true},{"content-type":"application/vnd.multiad.creator","encoding":"base64","references":["IANA","[Steve_Mills]","{application/vnd.multiad.creator=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator}"],"xrefs":{"person":["Steve_Mills"],"template":["application/vnd.multiad.creator"]},"registered":true},{"content-type":"application/vnd.multiad.creator.cif","encoding":"base64","references":["IANA","[Steve_Mills]","{application/vnd.multiad.creator.cif=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator.cif}"],"xrefs":{"person":["Steve_Mills"],"template":["application/vnd.multiad.creator.cif"]},"registered":true},{"content-type":"application/vnd.music-niff","encoding":"base64","references":["IANA","[Tim_Butler]","{application/vnd.music-niff=http://www.iana.org/assignments/media-types/application/vnd.music-niff}"],"xrefs":{"person":["Tim_Butler"],"template":["application/vnd.music-niff"]},"registered":true},{"content-type":"application/vnd.musician","friendly":{"en":"MUsical Score Interpreted Code Invented for the ASCII designation of Notation"},"encoding":"base64","extensions":["mus"],"references":["IANA","[Greg_Adams]","{application/vnd.musician=http://www.iana.org/assignments/media-types/application/vnd.musician}"],"xrefs":{"person":["Greg_Adams"],"template":["application/vnd.musician"]},"registered":true},{"content-type":"application/vnd.muvee.style","friendly":{"en":"Muvee Automatic Video Editing"},"encoding":"base64","extensions":["msty"],"references":["IANA","[Chandrashekhara_Anantharamu]","{application/vnd.muvee.style=http://www.iana.org/assignments/media-types/application/vnd.muvee.style}"],"xrefs":{"person":["Chandrashekhara_Anantharamu"],"template":["application/vnd.muvee.style"]},"registered":true},{"content-type":"application/vnd.mynfc","encoding":"base64","extensions":["taglet"],"references":["IANA","[Franck_Lefevre]","{application/vnd.mynfc=http://www.iana.org/assignments/media-types/application/vnd.mynfc}"],"xrefs":{"person":["Franck_Lefevre"],"template":["application/vnd.mynfc"]},"registered":true},{"content-type":"application/vnd.ncd.control","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.ncd.control=http://www.iana.org/assignments/media-types/application/vnd.ncd.control}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.ncd.control"]},"registered":true},{"content-type":"application/vnd.ncd.reference","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.ncd.reference=http://www.iana.org/assignments/media-types/application/vnd.ncd.reference}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.ncd.reference"]},"registered":true},{"content-type":"application/vnd.nervana","encoding":"base64","extensions":["ent","entity","req","request","bkm","kcm"],"references":["IANA","[Steve_Judkins]","{application/vnd.nervana=http://www.iana.org/assignments/media-types/application/vnd.nervana}"],"xrefs":{"person":["Steve_Judkins"],"template":["application/vnd.nervana"]},"registered":true},{"content-type":"application/vnd.netfpx","encoding":"base64","references":["IANA","[Andy_Mutz]","{application/vnd.netfpx=http://www.iana.org/assignments/media-types/application/vnd.netfpx}"],"xrefs":{"person":["Andy_Mutz"],"template":["application/vnd.netfpx"]},"registered":true},{"content-type":"application/vnd.neurolanguage.nlu","friendly":{"en":"neuroLanguage"},"encoding":"base64","extensions":["nlu"],"references":["IANA","[Dan_DuFeu]","{application/vnd.neurolanguage.nlu=http://www.iana.org/assignments/media-types/application/vnd.neurolanguage.nlu}"],"xrefs":{"person":["Dan_DuFeu"],"template":["application/vnd.neurolanguage.nlu"]},"registered":true},{"content-type":"application/vnd.nintendo.nitro.rom","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.nintendo.nitro.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.nitro.rom}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.nintendo.nitro.rom"]},"registered":true},{"content-type":"application/vnd.nintendo.snes.rom","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.nintendo.snes.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.snes.rom}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.nintendo.snes.rom"]},"registered":true},{"content-type":"application/vnd.nitf","encoding":"base64","extensions":["nitf","ntf"],"references":["IANA","[Steve_Rogan]","{application/vnd.nitf=http://www.iana.org/assignments/media-types/application/vnd.nitf}"],"xrefs":{"person":["Steve_Rogan"],"template":["application/vnd.nitf"]},"registered":true},{"content-type":"application/vnd.noblenet-directory","friendly":{"en":"NobleNet Directory"},"encoding":"base64","extensions":["nnd"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-directory=http://www.iana.org/assignments/media-types/application/vnd.noblenet-directory}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-directory"]},"registered":true},{"content-type":"application/vnd.noblenet-sealer","friendly":{"en":"NobleNet Sealer"},"encoding":"base64","extensions":["nns"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-sealer=http://www.iana.org/assignments/media-types/application/vnd.noblenet-sealer}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-sealer"]},"registered":true},{"content-type":"application/vnd.noblenet-web","friendly":{"en":"NobleNet Web"},"encoding":"base64","extensions":["nnw"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-web=http://www.iana.org/assignments/media-types/application/vnd.noblenet-web}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-web"]},"registered":true},{"content-type":"application/vnd.nokia.catalogs","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.catalogs=http://www.iana.org/assignments/media-types/application/vnd.nokia.catalogs}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.catalogs"]},"registered":true},{"content-type":"application/vnd.nokia.conml+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.conml+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.conml+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.conml+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.conml+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.conml+xml"]},"registered":true},{"content-type":"application/vnd.nokia.iptv.config+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.iptv.config+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.iptv.config+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.iptv.config+xml"]},"registered":true},{"content-type":"application/vnd.nokia.iSDS-radio-presets","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.iSDS-radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.iSDS-radio-presets}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.iSDS-radio-presets"]},"registered":true},{"content-type":"application/vnd.nokia.landmark+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmark+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmark+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.landmark+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmark+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmark+xml"]},"registered":true},{"content-type":"application/vnd.nokia.landmarkcollection+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmarkcollection+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmarkcollection+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmarkcollection+xml"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.ac+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.ac+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.ac+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.ac+xml"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.data","friendly":{"en":"N-Gage Game Data"},"encoding":"base64","extensions":["ngdat"],"references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.data=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.data}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.data"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.symbian.install","friendly":{"en":"N-Gage Game Installer"},"encoding":"base64","extensions":["n-gage"],"obsolete":true,"references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.symbian.install=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.symbian.install}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.symbian.install"],"notes":["- OBSOLETE; no replacement given"]},"registered":true},{"content-type":"application/vnd.nokia.ncd","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.ncd=http://www.iana.org/assignments/media-types/application/vnd.nokia.ncd}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.ncd"]},"registered":true},{"content-type":"application/vnd.nokia.ncd+xml","encoding":"base64","obsolete":true,"use-instead":"application/vnd.nokia.ncd","references":["IANA","[Nokia]"],"registered":true},{"content-type":"application/vnd.nokia.pcd+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.pcd+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.pcd+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.pcd+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.pcd+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.pcd+xml"]},"registered":true},{"content-type":"application/vnd.nokia.radio-preset","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpst"],"references":["IANA","[Nokia]","{application/vnd.nokia.radio-preset=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-preset}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.radio-preset"]},"registered":true},{"content-type":"application/vnd.nokia.radio-presets","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpss"],"references":["IANA","[Nokia]","{application/vnd.nokia.radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-presets}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.radio-presets"]},"registered":true},{"content-type":"application/vnd.novadigm.EDM","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edm"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EDM=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDM}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EDM"]},"registered":true},{"content-type":"application/vnd.novadigm.EDX","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edx"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EDX=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDX}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EDX"]},"registered":true},{"content-type":"application/vnd.novadigm.EXT","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["ext"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EXT=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EXT}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EXT"]},"registered":true},{"content-type":"application/vnd.ntt-local.content-share","encoding":"base64","references":["IANA","[Akinori_Taya]","{application/vnd.ntt-local.content-share=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.content-share}"],"xrefs":{"person":["Akinori_Taya"],"template":["application/vnd.ntt-local.content-share"]},"registered":true},{"content-type":"application/vnd.ntt-local.file-transfer","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.file-transfer=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.file-transfer}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.file-transfer"]},"registered":true},{"content-type":"application/vnd.ntt-local.ogw_remote-access","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.ogw_remote-access=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.ogw_remote-access}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.ogw_remote-access"]},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_remote","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.sip-ta_remote=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_remote}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.sip-ta_remote"]},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_tcp_stream","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.sip-ta_tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_tcp_stream}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.sip-ta_tcp_stream"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart","friendly":{"en":"OpenDocument Chart"},"encoding":"base64","extensions":["odc"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.chart=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.chart"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart-template","friendly":{"en":"OpenDocument Chart Template"},"encoding":"base64","extensions":["odc","otc"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.chart-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.chart-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.database","friendly":{"en":"OpenDocument Database"},"encoding":"base64","extensions":["odb"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.database=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.database}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.database"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula","friendly":{"en":"OpenDocument Formula"},"encoding":"base64","extensions":["odf"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.formula=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.formula"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula-template","friendly":{"en":"OpenDocument Formula Template"},"encoding":"base64","extensions":["odf","odft"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.formula-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.formula-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics","friendly":{"en":"OpenDocument Graphics"},"encoding":"base64","extensions":["odg"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.graphics=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.graphics"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics-template","friendly":{"en":"OpenDocument Graphics Template"},"encoding":"base64","extensions":["otg"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.graphics-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.graphics-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image","friendly":{"en":"OpenDocument Image"},"encoding":"base64","extensions":["odi"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.image=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.image"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image-template","friendly":{"en":"OpenDocument Image Template"},"encoding":"base64","extensions":["odi","oti"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.image-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.image-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation","friendly":{"en":"OpenDocument Presentation"},"encoding":"base64","extensions":["odp"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.presentation=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.presentation"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation-template","friendly":{"en":"OpenDocument Presentation Template"},"encoding":"base64","extensions":["otp"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.presentation-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.presentation-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet","friendly":{"en":"OpenDocument Spreadsheet"},"encoding":"base64","extensions":["ods"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.spreadsheet=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.spreadsheet"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet-template","friendly":{"en":"OpenDocument Spreadsheet Template"},"encoding":"base64","extensions":["ots"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.spreadsheet-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.spreadsheet-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text","friendly":{"en":"OpenDocument Text"},"encoding":"base64","extensions":["odt"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-master","friendly":{"en":"OpenDocument Text Master"},"encoding":"base64","extensions":["odm"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-master=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-master}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-master"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-template","friendly":{"en":"OpenDocument Text Template"},"encoding":"base64","extensions":["ott"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-web","friendly":{"en":"Open Document Text Web"},"encoding":"base64","extensions":["oth"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-web=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-web}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-web"]},"registered":true},{"content-type":"application/vnd.obn","encoding":"base64","references":["IANA","[Matthias_Hessling]","{application/vnd.obn=http://www.iana.org/assignments/media-types/application/vnd.obn}"],"xrefs":{"person":["Matthias_Hessling"],"template":["application/vnd.obn"]},"registered":true},{"content-type":"application/vnd.oftn.l10n+json","encoding":"base64","references":["IANA","[Eli_Grey]","{application/vnd.oftn.l10n+json=http://www.iana.org/assignments/media-types/application/vnd.oftn.l10n+json}"],"xrefs":{"person":["Eli_Grey"],"template":["application/vnd.oftn.l10n+json"]},"registered":true},{"content-type":"application/vnd.oipf.contentaccessdownload+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.contentaccessdownload+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessdownload+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.contentaccessdownload+xml"]},"registered":true},{"content-type":"application/vnd.oipf.contentaccessstreaming+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.contentaccessstreaming+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessstreaming+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.contentaccessstreaming+xml"]},"registered":true},{"content-type":"application/vnd.oipf.cspg-hexbinary","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.cspg-hexbinary=http://www.iana.org/assignments/media-types/application/vnd.oipf.cspg-hexbinary}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.cspg-hexbinary"]},"registered":true},{"content-type":"application/vnd.oipf.dae.svg+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.dae.svg+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.svg+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.dae.svg+xml"]},"registered":true},{"content-type":"application/vnd.oipf.dae.xhtml+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.dae.xhtml+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.xhtml+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.dae.xhtml+xml"]},"registered":true},{"content-type":"application/vnd.oipf.mippvcontrolmessage+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.mippvcontrolmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.mippvcontrolmessage+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.mippvcontrolmessage+xml"]},"registered":true},{"content-type":"application/vnd.oipf.pae.gem","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.pae.gem=http://www.iana.org/assignments/media-types/application/vnd.oipf.pae.gem}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.pae.gem"]},"registered":true},{"content-type":"application/vnd.oipf.spdiscovery+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.spdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdiscovery+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.spdiscovery+xml"]},"registered":true},{"content-type":"application/vnd.oipf.spdlist+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.spdlist+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdlist+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.spdlist+xml"]},"registered":true},{"content-type":"application/vnd.oipf.ueprofile+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.ueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.ueprofile+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.ueprofile+xml"]},"registered":true},{"content-type":"application/vnd.oipf.userprofile+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.userprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.userprofile+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.userprofile+xml"]},"registered":true},{"content-type":"application/vnd.olpc-sugar","friendly":{"en":"Sugar Linux Application Bundle"},"encoding":"base64","extensions":["xo"],"references":["IANA","[John_Palmieri]","{application/vnd.olpc-sugar=http://www.iana.org/assignments/media-types/application/vnd.olpc-sugar}"],"xrefs":{"person":["John_Palmieri"],"template":["application/vnd.olpc-sugar"]},"registered":true},{"content-type":"application/vnd.oma-scws-config","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-config=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-config}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-config"]},"registered":true},{"content-type":"application/vnd.oma-scws-http-request","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-http-request=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-request}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-http-request"]},"registered":true},{"content-type":"application/vnd.oma-scws-http-response","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-http-response=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-response}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-http-response"]},"registered":true},{"content-type":"application/vnd.oma.bcast.associated-procedure-parameter+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.associated-procedure-parameter+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.associated-procedure-parameter+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.associated-procedure-parameter+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.drm-trigger+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.drm-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.drm-trigger+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.drm-trigger+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.imd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.imd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.imd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.imd+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.ltkm","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.ltkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.ltkm}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.ltkm"]},"registered":true},{"content-type":"application/vnd.oma.bcast.notification+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.notification+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.notification+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.notification+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.provisioningtrigger","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.provisioningtrigger=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.provisioningtrigger}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.provisioningtrigger"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgboot","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgboot=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgboot}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgboot"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgdd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgdd+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdu","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgdu=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdu}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgdu"]},"registered":true},{"content-type":"application/vnd.oma.bcast.simple-symbol-container","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.simple-symbol-container=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.simple-symbol-container}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.simple-symbol-container"]},"registered":true},{"content-type":"application/vnd.oma.bcast.smartcard-trigger+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.smartcard-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.smartcard-trigger+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.smartcard-trigger+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sprov+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sprov+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sprov+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sprov+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.stkm","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.stkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.stkm}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.stkm"]},"registered":true},{"content-type":"application/vnd.oma.cab-address-book+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-address-book+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-address-book+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-address-book+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-feature-handler+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-feature-handler+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-feature-handler+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-feature-handler+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-pcc+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-pcc+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-pcc+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-pcc+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-subs-invite+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-subs-invite+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-subs-invite+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-subs-invite+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-user-prefs+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-user-prefs+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-user-prefs+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-user-prefs+xml"]},"registered":true},{"content-type":"application/vnd.oma.dcd","encoding":"base64","references":["IANA","[Avi_Primo]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.dcd=http://www.iana.org/assignments/media-types/application/vnd.oma.dcd}"],"xrefs":{"person":["Avi_Primo","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.dcd"]},"registered":true},{"content-type":"application/vnd.oma.dcdc","encoding":"base64","references":["IANA","[Avi_Primo]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.dcdc=http://www.iana.org/assignments/media-types/application/vnd.oma.dcdc}"],"xrefs":{"person":["Avi_Primo","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.dcdc"]},"registered":true},{"content-type":"application/vnd.oma.dd2+xml","friendly":{"en":"OMA Download Agents"},"encoding":"base64","extensions":["dd2"],"references":["IANA","[Jun_Sato]","[Open_Mobile_Alliance_BAC_DLDRM_Working_Group]","{application/vnd.oma.dd2+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.dd2+xml}"],"xrefs":{"person":["Jun_Sato","Open_Mobile_Alliance_BAC_DLDRM_Working_Group"],"template":["application/vnd.oma.dd2+xml"]},"registered":true},{"content-type":"application/vnd.oma.drm.risd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.drm.risd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.drm.risd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.drm.risd+xml"]},"registered":true},{"content-type":"application/vnd.oma.group-usage-list+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Presence_and_Availability_PAG_Working_Group]","{application/vnd.oma.group-usage-list+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.group-usage-list+xml}"],"xrefs":{"person":["OMA_Presence_and_Availability_PAG_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.group-usage-list+xml"]},"registered":true},{"content-type":"application/vnd.oma.pal+xml","encoding":"base64","references":["IANA","[Brian_McColgan]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.pal+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.pal+xml}"],"xrefs":{"person":["Brian_McColgan","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.pal+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.detailed-progress-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.detailed-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.detailed-progress-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.detailed-progress-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.final-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.final-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.final-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.final-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.groups+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.groups+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.groups+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.poc.groups+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.invocation-descriptor+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.invocation-descriptor+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.invocation-descriptor+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.invocation-descriptor+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.optimized-progress-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.optimized-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.optimized-progress-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.optimized-progress-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.push","encoding":"base64","references":["IANA","[Bryan_Sullivan]","[OMA]","{application/vnd.oma.push=http://www.iana.org/assignments/media-types/application/vnd.oma.push}"],"xrefs":{"person":["Bryan_Sullivan","OMA"],"template":["application/vnd.oma.push"]},"registered":true},{"content-type":"application/vnd.oma.scidm.messages+xml","encoding":"base64","references":["IANA","[Wenjun_Zeng]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.scidm.messages+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.scidm.messages+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Wenjun_Zeng"],"template":["application/vnd.oma.scidm.messages+xml"]},"registered":true},{"content-type":"application/vnd.oma.xcap-directory+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Presence_and_Availability_PAG_Working_Group]","{application/vnd.oma.xcap-directory+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.xcap-directory+xml}"],"xrefs":{"person":["OMA_Presence_and_Availability_PAG_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.xcap-directory+xml"]},"registered":true},{"content-type":"application/vnd.omads-email+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-email+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-email+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-email+xml"]},"registered":true},{"content-type":"application/vnd.omads-file+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-file+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-file+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-file+xml"]},"registered":true},{"content-type":"application/vnd.omads-folder+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-folder+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-folder+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-folder+xml"]},"registered":true},{"content-type":"application/vnd.omaloc-supl-init","encoding":"base64","references":["IANA","[Julien_Grange]","{application/vnd.omaloc-supl-init=http://www.iana.org/assignments/media-types/application/vnd.omaloc-supl-init}"],"xrefs":{"person":["Julien_Grange"],"template":["application/vnd.omaloc-supl-init"]},"registered":true},{"content-type":"application/vnd.openeye.oeb","encoding":"base64","references":["IANA","[Craig_Bruce]","{application/vnd.openeye.oeb=http://www.iana.org/assignments/media-types/application/vnd.openeye.oeb}"],"xrefs":{"person":["Craig_Bruce"],"template":["application/vnd.openeye.oeb"]},"registered":true},{"content-type":"application/vnd.openofficeorg.extension","friendly":{"en":"Open Office Extension"},"encoding":"base64","extensions":["oxt"],"references":["IANA","[Lingner]"],"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.custom-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.custom-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.custom-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.custom-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.customXmlProperties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.customXmlProperties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.customXmlProperties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.customXmlProperties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawing+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawing+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawing+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawing+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chart+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.chart+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chart+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.chart+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.extended-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.extended-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.extended-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.extended-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation","friendly":{"en":"Microsoft Office - OOXML - Presentation"},"encoding":"base64","extensions":["pptx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presentation=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presentation"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presProps+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presProps+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presProps+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slide)"},"encoding":"base64","extensions":["sldx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slide=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slide"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slide+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slideshow)"},"encoding":"base64","extensions":["ppsx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideshow=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideshow"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tags+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.tags+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tags+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.tags+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template","friendly":{"en":"Microsoft Office - OOXML - Presentation Template"},"encoding":"base64","extensions":["potx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet"},"encoding":"base64","extensions":["xlsx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet Teplate"},"encoding":"base64","extensions":["xltx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.theme+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.theme+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.theme+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.theme+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.themeOverride+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.themeOverride+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.themeOverride+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.themeOverride+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.vmlDrawing","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.vmlDrawing=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.vmlDrawing}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.vmlDrawing"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document","friendly":{"en":"Microsoft Office - OOXML - Word Document"},"encoding":"base64","extensions":["docx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template","friendly":{"en":"Microsoft Office - OOXML - Word Document Template"},"encoding":"base64","extensions":["dotx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.core-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.core-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.core-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.core-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.relationships+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.relationships+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.relationships+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.relationships+xml"]},"registered":true},{"content-type":"application/vnd.oracle.resource+json","encoding":"base64","references":["IANA","[Ning_Dong]","{application/vnd.oracle.resource+json=http://www.iana.org/assignments/media-types/application/vnd.oracle.resource+json}"],"xrefs":{"person":["Ning_Dong"],"template":["application/vnd.oracle.resource+json"]},"registered":true},{"content-type":"application/vnd.orange.indata","encoding":"base64","references":["IANA","[CHATRAS_Bruno]","{application/vnd.orange.indata=http://www.iana.org/assignments/media-types/application/vnd.orange.indata}"],"xrefs":{"person":["CHATRAS_Bruno"],"template":["application/vnd.orange.indata"]},"registered":true},{"content-type":"application/vnd.osa.netdeploy","encoding":"base64","references":["IANA","[Steven_Klos]","{application/vnd.osa.netdeploy=http://www.iana.org/assignments/media-types/application/vnd.osa.netdeploy}"],"xrefs":{"person":["Steven_Klos"],"template":["application/vnd.osa.netdeploy"]},"registered":true},{"content-type":"application/vnd.osgeo.mapguide.package","friendly":{"en":"MapGuide DBXML"},"encoding":"base64","extensions":["mgp"],"references":["IANA","[Jason_Birch]","{application/vnd.osgeo.mapguide.package=http://www.iana.org/assignments/media-types/application/vnd.osgeo.mapguide.package}"],"xrefs":{"person":["Jason_Birch"],"template":["application/vnd.osgeo.mapguide.package"]},"registered":true},{"content-type":"application/vnd.osgi.bundle","encoding":"base64","references":["IANA","[Peter_Kriens]","{application/vnd.osgi.bundle=http://www.iana.org/assignments/media-types/application/vnd.osgi.bundle}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.bundle"]},"registered":true},{"content-type":"application/vnd.osgi.dp","friendly":{"en":"OSGi Deployment Package"},"encoding":"base64","extensions":["dp"],"references":["IANA","[Peter_Kriens]","{application/vnd.osgi.dp=http://www.iana.org/assignments/media-types/application/vnd.osgi.dp}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.dp"]},"registered":true},{"content-type":"application/vnd.osgi.subsystem","encoding":"base64","extensions":["esa"],"references":["IANA","[Peter_Kriens]","{application/vnd.osgi.subsystem=http://www.iana.org/assignments/media-types/application/vnd.osgi.subsystem}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.subsystem"]},"registered":true},{"content-type":"application/vnd.otps.ct-kip+xml","encoding":"base64","references":["IANA","[Magnus_Nystrom]","{application/vnd.otps.ct-kip+xml=http://www.iana.org/assignments/media-types/application/vnd.otps.ct-kip+xml}"],"xrefs":{"person":["Magnus_Nystrom"],"template":["application/vnd.otps.ct-kip+xml"]},"registered":true},{"content-type":"application/vnd.palm","friendly":{"en":"PalmOS Data"},"encoding":"base64","extensions":["prc","pdb","pqa","oprc"],"references":["IANA","[Gavin_Peacock]","{application/vnd.palm=http://www.iana.org/assignments/media-types/application/vnd.palm}"],"xrefs":{"person":["Gavin_Peacock"],"template":["application/vnd.palm"]},"registered":true},{"content-type":"application/vnd.panoply","encoding":"base64","references":["IANA","[Natarajan_Balasundara]","{application/vnd.panoply=http://www.iana.org/assignments/media-types/application/vnd.panoply}"],"xrefs":{"person":["Natarajan_Balasundara"],"template":["application/vnd.panoply"]},"registered":true},{"content-type":"application/vnd.paos.xml","encoding":"base64","references":["IANA","[John_Kemp]","{application/vnd.paos+xml=http://www.iana.org/assignments/media-types/application/vnd.paos+xml}"],"xrefs":{"person":["John_Kemp"],"template":["application/vnd.paos+xml"]},"registered":true},{"content-type":"application/vnd.pawaafile","friendly":{"en":"PawaaFILE"},"encoding":"base64","extensions":["paw"],"references":["IANA","[Prakash_Baskaran]","{application/vnd.pawaafile=http://www.iana.org/assignments/media-types/application/vnd.pawaafile}"],"xrefs":{"person":["Prakash_Baskaran"],"template":["application/vnd.pawaafile"]},"registered":true},{"content-type":"application/vnd.pcos","encoding":"base64","references":["IANA","[Slawomir_Lisznianski]","{application/vnd.pcos=http://www.iana.org/assignments/media-types/application/vnd.pcos}"],"xrefs":{"person":["Slawomir_Lisznianski"],"template":["application/vnd.pcos"]},"registered":true},{"content-type":"application/vnd.pg.format","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["str"],"references":["IANA","[April_Gandert]","{application/vnd.pg.format=http://www.iana.org/assignments/media-types/application/vnd.pg.format}"],"xrefs":{"person":["April_Gandert"],"template":["application/vnd.pg.format"]},"registered":true},{"content-type":"application/vnd.pg.osasli","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["ei6"],"references":["IANA","[April_Gandert]","{application/vnd.pg.osasli=http://www.iana.org/assignments/media-types/application/vnd.pg.osasli}"],"xrefs":{"person":["April_Gandert"],"template":["application/vnd.pg.osasli"]},"registered":true},{"content-type":"application/vnd.piaccess.application-licence","encoding":"base64","references":["IANA","[Lucas_Maneos]","{application/vnd.piaccess.application-licence=http://www.iana.org/assignments/media-types/application/vnd.piaccess.application-licence}"],"xrefs":{"person":["Lucas_Maneos"],"template":["application/vnd.piaccess.application-licence"]},"registered":true},{"content-type":"application/vnd.picsel","friendly":{"en":"Pcsel eFIF File"},"encoding":"base64","extensions":["efif"],"references":["IANA","[Giuseppe_Naccarato]","{application/vnd.picsel=http://www.iana.org/assignments/media-types/application/vnd.picsel}"],"xrefs":{"person":["Giuseppe_Naccarato"],"template":["application/vnd.picsel"]},"registered":true},{"content-type":"application/vnd.pmi.widget","friendly":{"en":"Qualcomm's Plaza Mobile Internet"},"encoding":"base64","extensions":["wg"],"references":["IANA","[Rhys_Lewis]","{application/vnd.pmi.widget=http://www.iana.org/assignments/media-types/application/vnd.pmi.widget}"],"xrefs":{"person":["Rhys_Lewis"],"template":["application/vnd.pmi.widget"]},"registered":true},{"content-type":"application/vnd.poc.group-advertisement+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.poc.group-advertisement+xml=http://www.iana.org/assignments/media-types/application/vnd.poc.group-advertisement+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group","Sean_Kelley"],"template":["application/vnd.poc.group-advertisement+xml"]},"registered":true},{"content-type":"application/vnd.pocketlearn","friendly":{"en":"PocketLearn Viewers"},"encoding":"base64","extensions":["plf"],"references":["IANA","[Jorge_Pando]","{application/vnd.pocketlearn=http://www.iana.org/assignments/media-types/application/vnd.pocketlearn}"],"xrefs":{"person":["Jorge_Pando"],"template":["application/vnd.pocketlearn"]},"registered":true},{"content-type":"application/vnd.powerbuilder6","friendly":{"en":"PowerBuilder"},"encoding":"base64","extensions":["pbd"],"references":["IANA","[David_Guy]","{application/vnd.powerbuilder6=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6}"],"xrefs":{"person":["David_Guy"],"template":["application/vnd.powerbuilder6"]},"registered":true},{"content-type":"application/vnd.powerbuilder6-s","encoding":"base64","references":["IANA","[David_Guy]","{application/vnd.powerbuilder6-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6-s}"],"xrefs":{"person":["David_Guy"],"template":["application/vnd.powerbuilder6-s"]},"registered":true},{"content-type":"application/vnd.powerbuilder7","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder7=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder7"]},"registered":true},{"content-type":"application/vnd.powerbuilder7-s","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder7-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7-s}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder7-s"]},"registered":true},{"content-type":"application/vnd.powerbuilder75","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder75=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder75"]},"registered":true},{"content-type":"application/vnd.powerbuilder75-s","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder75-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75-s}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder75-s"]},"registered":true},{"content-type":"application/vnd.preminet","encoding":"base64","references":["IANA","[Juoko_Tenhunen]","{application/vnd.preminet=http://www.iana.org/assignments/media-types/application/vnd.preminet}"],"xrefs":{"person":["Juoko_Tenhunen"],"template":["application/vnd.preminet"]},"registered":true},{"content-type":"application/vnd.previewsystems.box","friendly":{"en":"Preview Systems ZipLock/VBox"},"encoding":"base64","extensions":["box"],"references":["IANA","[Roman_Smolgovsky]","{application/vnd.previewsystems.box=http://www.iana.org/assignments/media-types/application/vnd.previewsystems.box}"],"xrefs":{"person":["Roman_Smolgovsky"],"template":["application/vnd.previewsystems.box"]},"registered":true},{"content-type":"application/vnd.proteus.magazine","friendly":{"en":"EFI Proteus"},"encoding":"base64","extensions":["mgz"],"references":["IANA","[Pete_Hoch]","{application/vnd.proteus.magazine=http://www.iana.org/assignments/media-types/application/vnd.proteus.magazine}"],"xrefs":{"person":["Pete_Hoch"],"template":["application/vnd.proteus.magazine"]},"registered":true},{"content-type":"application/vnd.publishare-delta-tree","friendly":{"en":"PubliShare Objects"},"encoding":"base64","extensions":["qps"],"references":["IANA","[Oren_Ben-Kiki]","{application/vnd.publishare-delta-tree=http://www.iana.org/assignments/media-types/application/vnd.publishare-delta-tree}"],"xrefs":{"person":["Oren_Ben-Kiki"],"template":["application/vnd.publishare-delta-tree"]},"registered":true},{"content-type":"application/vnd.pvi.ptid1","friendly":{"en":"Princeton Video Image"},"encoding":"base64","extensions":["pti","ptid"],"references":["IANA","[Charles_P._Lamb]","{application/vnd.pvi.ptid1=http://www.iana.org/assignments/media-types/application/vnd.pvi.ptid1}"],"xrefs":{"person":["Charles_P._Lamb"],"template":["application/vnd.pvi.ptid1"]},"registered":true},{"content-type":"application/vnd.pwg-multiplexed","encoding":"base64","references":["IANA","RFC3391","{application/vwg-multiplexed=http://www.iana.org/assignments/media-types/application/vwg-multiplexed}"],"xrefs":{"rfc":["rfc3391"],"template":["application/vwg-multiplexed"]},"registered":true},{"content-type":"application/vnd.pwg-xhtml-print+xml","encoding":"base64","references":["IANA","[Don_Wright]","{application/vnd.pwg-xhtml-print+xml=http://www.iana.org/assignments/media-types/application/vnd.pwg-xhtml-print+xml}"],"xrefs":{"person":["Don_Wright"],"template":["application/vnd.pwg-xhtml-print+xml"]},"registered":true},{"content-type":"application/vnd.qualcomm.brew-app-res","encoding":"base64","references":["IANA","[Glenn_Forrester]","{application/vnd.qualcomm.brew-app-res=http://www.iana.org/assignments/media-types/application/vnd.qualcomm.brew-app-res}"],"xrefs":{"person":["Glenn_Forrester"],"template":["application/vnd.qualcomm.brew-app-res"]},"registered":true},{"content-type":"application/vnd.Quark.QuarkXPress","friendly":{"en":"QuarkXPress"},"encoding":"8bit","extensions":["qxd","qxt","qwd","qwt","qxl","qxb"],"references":["IANA","[Hannes_Scheidler]","{application/vnd.Quark.QuarkXPress=http://www.iana.org/assignments/media-types/application/vnd.Quark.QuarkXPress}"],"xrefs":{"person":["Hannes_Scheidler"],"template":["application/vnd.Quark.QuarkXPress"]},"registered":true},{"content-type":"application/vnd.quobject-quoxdocument","encoding":"base64","references":["IANA","[Matthias_Ludwig]","{application/vnd.quobject-quoxdocument=http://www.iana.org/assignments/media-types/application/vnd.quobject-quoxdocument}"],"xrefs":{"person":["Matthias_Ludwig"],"template":["application/vnd.quobject-quoxdocument"]},"registered":true},{"content-type":"application/vnd.radisys.moml+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.moml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.moml+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.moml+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conf+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conf+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-conf+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conn+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-conn+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conn+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-conn+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-dialog+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-dialog+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-dialog+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-stream+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-stream+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-stream+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-stream+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-conf+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-conf+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-conf+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-base+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-base+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-base+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-base+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-detect+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-fax-detect+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-detect+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-fax-detect+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-sendrecv+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-fax-sendrecv+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-sendrecv+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-fax-sendrecv+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-group+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-group+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-group+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-group+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-speech+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-speech+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-speech+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-speech+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-transform+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-transform+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-transform+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-transform+xml"]},"registered":true},{"content-type":"application/vnd.rainstor.data","encoding":"base64","references":["IANA","[Kevin_Crook]","{application/vnd.rainstor.data=http://www.iana.org/assignments/media-types/application/vnd.rainstor.data}"],"xrefs":{"person":["Kevin_Crook"],"template":["application/vnd.rainstor.data"]},"registered":true},{"content-type":"application/vnd.rapid","encoding":"base64","references":["IANA","[Etay_Szekely]","{application/vnd.rapid=http://www.iana.org/assignments/media-types/application/vnd.rapid}"],"xrefs":{"person":["Etay_Szekely"],"template":["application/vnd.rapid"]},"registered":true},{"content-type":"application/vnd.realvnc.bed","friendly":{"en":"RealVNC"},"encoding":"base64","extensions":["bed"],"references":["IANA","[Nick_Reeves]","{application/vnd.realvnc.bed=http://www.iana.org/assignments/media-types/application/vnd.realvnc.bed}"],"xrefs":{"person":["Nick_Reeves"],"template":["application/vnd.realvnc.bed"]},"registered":true},{"content-type":"application/vnd.recordare.musicxml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["mxl"],"references":["IANA","[Michael_Good]","{application/vnd.recordare.musicxml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml}"],"xrefs":{"person":["Michael_Good"],"template":["application/vnd.recordare.musicxml"]},"registered":true},{"content-type":"application/vnd.recordare.musicxml+xml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["musicxml"],"references":["IANA","[Michael_Good]","{application/vnd.recordare.musicxml+xml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml+xml}"],"xrefs":{"person":["Michael_Good"],"template":["application/vnd.recordare.musicxml+xml"]},"registered":true},{"content-type":"application/vnd.RenLearn.rlprint","encoding":"base64","references":["IANA","[James_Wick]","{application/vnd.renlearn.rlprint=http://www.iana.org/assignments/media-types/application/vnd.renlearn.rlprint}"],"xrefs":{"person":["James_Wick"],"template":["application/vnd.renlearn.rlprint"]},"registered":true},{"content-type":"application/vnd.rig.cryptonote","friendly":{"en":"CryptoNote"},"encoding":"base64","extensions":["cryptonote"],"references":["IANA","[Ken_Jibiki]","{application/vnd.rig.cryptonote=http://www.iana.org/assignments/media-types/application/vnd.rig.cryptonote}"],"xrefs":{"person":["Ken_Jibiki"],"template":["application/vnd.rig.cryptonote"]},"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"],"references":["IANA","[Sybren_Kikstra]","{application/vnd.route66.link66+xml=http://www.iana.org/assignments/media-types/application/vnd.route66.link66+xml}"],"xrefs":{"person":["Sybren_Kikstra"],"template":["application/vnd.route66.link66+xml"]},"registered":true},{"content-type":"application/vnd.rs-274x","encoding":"base64","references":["IANA","[Lee_Harding]","{application/vnd.rs-274x=http://www.iana.org/assignments/media-types/application/vnd.rs-274x}"],"xrefs":{"person":["Lee_Harding"],"template":["application/vnd.rs-274x"]},"registered":true},{"content-type":"application/vnd.ruckus.download","encoding":"base64","references":["IANA","[Jerry_Harris]","{application/vnd.ruckus.download=http://www.iana.org/assignments/media-types/application/vnd.ruckus.download}"],"xrefs":{"person":["Jerry_Harris"],"template":["application/vnd.ruckus.download"]},"registered":true},{"content-type":"application/vnd.s3sms","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.s3sms=http://www.iana.org/assignments/media-types/application/vnd.s3sms}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.s3sms"]},"registered":true},{"content-type":"application/vnd.sailingtracker.track","friendly":{"en":"SailingTracker"},"encoding":"base64","extensions":["st"],"references":["IANA","[Heikki_Vesalainen]","{application/vnd.sailingtracker.track=http://www.iana.org/assignments/media-types/application/vnd.sailingtracker.track}"],"xrefs":{"person":["Heikki_Vesalainen"],"template":["application/vnd.sailingtracker.track"]},"registered":true},{"content-type":"application/vnd.sbm.cid","encoding":"base64","references":["IANA","[Shinji_Kusakari]","{application/vnd.sbm.cid=http://www.iana.org/assignments/media-types/application/vnd.sbm.cid}"],"xrefs":{"person":["Shinji_Kusakari"],"template":["application/vnd.sbm.cid"]},"registered":true},{"content-type":"application/vnd.sbm.mid2","encoding":"base64","references":["IANA","[Masanori_Murai]","{application/vnd.sbm.mid2=http://www.iana.org/assignments/media-types/application/vnd.sbm.mid2}"],"xrefs":{"person":["Masanori_Murai"],"template":["application/vnd.sbm.mid2"]},"registered":true},{"content-type":"application/vnd.scribus","encoding":"base64","references":["IANA","[Craig_Bradney]","{application/vnd.scribus=http://www.iana.org/assignments/media-types/application/vnd.scribus}"],"xrefs":{"person":["Craig_Bradney"],"template":["application/vnd.scribus"]},"registered":true},{"content-type":"application/vnd.sealed.3df","encoding":"base64","references":["IANA","[John_Kwan]","{application/vnd.sealed.3df=http://www.iana.org/assignments/media-types/application/vnd.sealed.3df}"],"xrefs":{"person":["John_Kwan"],"template":["application/vnd.sealed.3df"]},"registered":true},{"content-type":"application/vnd.sealed.csf","encoding":"base64","references":["IANA","[John_Kwan]","{application/vnd.sealed.csf=http://www.iana.org/assignments/media-types/application/vnd.sealed.csf}"],"xrefs":{"person":["John_Kwan"],"template":["application/vnd.sealed.csf"]},"registered":true},{"content-type":"application/vnd.sealed.doc","encoding":"base64","extensions":["sdoc","sdo","s1w"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-doc=http://www.iana.org/assignments/media-types/application/vnd.sealed-doc}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-doc"]},"registered":true},{"content-type":"application/vnd.sealed.eml","encoding":"base64","extensions":["seml","sem"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-eml=http://www.iana.org/assignments/media-types/application/vnd.sealed-eml}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-eml"]},"registered":true},{"content-type":"application/vnd.sealed.mht","encoding":"base64","extensions":["smht","smh"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-mht=http://www.iana.org/assignments/media-types/application/vnd.sealed-mht}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-mht"]},"registered":true},{"content-type":"application/vnd.sealed.net","encoding":"base64","references":["IANA","[Martin_Lambert]","{application/vnd.sealed.net=http://www.iana.org/assignments/media-types/application/vnd.sealed.net}"],"xrefs":{"person":["Martin_Lambert"],"template":["application/vnd.sealed.net"]},"registered":true},{"content-type":"application/vnd.sealed.ppt","encoding":"base64","extensions":["sppt","spp","s1p"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-ppt=http://www.iana.org/assignments/media-types/application/vnd.sealed-ppt}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-ppt"]},"registered":true},{"content-type":"application/vnd.sealed.tiff","encoding":"base64","references":["IANA","[John_Kwan]","[Martin_Lambert]","{application/vnd.sealed-tiff=http://www.iana.org/assignments/media-types/application/vnd.sealed-tiff}"],"xrefs":{"person":["John_Kwan","Martin_Lambert"],"template":["application/vnd.sealed-tiff"]},"registered":true},{"content-type":"application/vnd.sealed.xls","encoding":"base64","extensions":["sxls","sxl","s1e"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-xls=http://www.iana.org/assignments/media-types/application/vnd.sealed-xls}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-xls"]},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.html","encoding":"base64","extensions":["stml","stm","s1h"],"references":["IANA","[David_Petersen]","{application/vnd.sealedmedia.softseal-html=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-html}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealedmedia.softseal-html"]},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.pdf","encoding":"base64","extensions":["spdf","spd","s1a"],"references":["IANA","[David_Petersen]","{application/vnd.sealedmedia.softseal-pdf=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-pdf}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealedmedia.softseal-pdf"]},"registered":true},{"content-type":"application/vnd.seemail","friendly":{"en":"SeeMail"},"encoding":"base64","extensions":["see"],"references":["IANA","[Steve_Webb]","{application/vnd.seemail=http://www.iana.org/assignments/media-types/application/vnd.seemail}"],"xrefs":{"person":["Steve_Webb"],"template":["application/vnd.seemail"]},"registered":true},{"content-type":"application/vnd.sema","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["sema"],"references":["IANA","[Anders_Hansson]","{application/vnd-sema=http://www.iana.org/assignments/media-types/application/vnd-sema}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd-sema"]},"registered":true},{"content-type":"application/vnd.semd","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semd"],"references":["IANA","[Anders_Hansson]","{application/vnd.semd=http://www.iana.org/assignments/media-types/application/vnd.semd}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd.semd"]},"registered":true},{"content-type":"application/vnd.semf","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semf"],"references":["IANA","[Anders_Hansson]","{application/vnd.semf=http://www.iana.org/assignments/media-types/application/vnd.semf}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd.semf"]},"registered":true},{"content-type":"application/vnd.shana.informed.formdata","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ifm"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.formdata=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formdata}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.formdata"]},"registered":true},{"content-type":"application/vnd.shana.informed.formtemplate","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["itp"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.formtemplate=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formtemplate}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.formtemplate"]},"registered":true},{"content-type":"application/vnd.shana.informed.interchange","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["iif"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.interchange=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.interchange}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.interchange"]},"registered":true},{"content-type":"application/vnd.shana.informed.package","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ipk"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.package=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.package}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.package"]},"registered":true},{"content-type":"application/vnd.SimTech-MindMapper","friendly":{"en":"SimTech MindMapper"},"encoding":"base64","extensions":["twd","twds"],"references":["IANA","[Patrick_Koh]","{application/vnd.SimTech-MindMapper=http://www.iana.org/assignments/media-types/application/vnd.SimTech-MindMapper}"],"xrefs":{"person":["Patrick_Koh"],"template":["application/vnd.SimTech-MindMapper"]},"registered":true},{"content-type":"application/vnd.siren+json","encoding":"base64","references":["IANA","[Kevin_Swiber]","{application/vnd.siren+json=http://www.iana.org/assignments/media-types/application/vnd.siren+json}"],"xrefs":{"person":["Kevin_Swiber"],"template":["application/vnd.siren+json"]},"registered":true},{"content-type":"application/vnd.smaf","friendly":{"en":"SMAF File"},"encoding":"base64","extensions":["mmf"],"references":["IANA","[Hiroaki_Takahashi]","{application/vnd.smaf=http://www.iana.org/assignments/media-types/application/vnd.smaf}"],"xrefs":{"person":["Hiroaki_Takahashi"],"template":["application/vnd.smaf"]},"registered":true},{"content-type":"application/vnd.smart.notebook","encoding":"base64","references":["IANA","[Jonathan_Neitz]","{application/vnd.smart.notebook=http://www.iana.org/assignments/media-types/application/vnd.smart.notebook}"],"xrefs":{"person":["Jonathan_Neitz"],"template":["application/vnd.smart.notebook"]},"registered":true},{"content-type":"application/vnd.smart.teacher","friendly":{"en":"SMART Technologies Apps"},"encoding":"base64","extensions":["teacher"],"references":["IANA","[Michael_Boyle]","{application/vnd.smart.teacher=http://www.iana.org/assignments/media-types/application/vnd.smart.teacher}"],"xrefs":{"person":["Michael_Boyle"],"template":["application/vnd.smart.teacher"]},"registered":true},{"content-type":"application/vnd.software602.filler.form+xml","encoding":"base64","references":["IANA","[Jakub_Hytka]","[Martin_Vondrous]","{application/vnd.software602.filler.form+xml=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form+xml}"],"xrefs":{"person":["Jakub_Hytka","Martin_Vondrous"],"template":["application/vnd.software602.filler.form+xml"]},"registered":true},{"content-type":"application/vnd.software602.filler.form-xml-zip","encoding":"base64","references":["IANA","[Jakub_Hytka]","[Martin_Vondrous]","{application/vnd.software602.filler.form-xml-zip=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form-xml-zip}"],"xrefs":{"person":["Jakub_Hytka","Martin_Vondrous"],"template":["application/vnd.software602.filler.form-xml-zip"]},"registered":true},{"content-type":"application/vnd.solent.sdkm+xml","friendly":{"en":"SudokuMagic"},"encoding":"base64","extensions":["sdkd","sdkm"],"references":["IANA","[Cliff_Gauntlett]","{application/vnd.solent.sdkm+xml=http://www.iana.org/assignments/media-types/application/vnd.solent.sdkm+xml}"],"xrefs":{"person":["Cliff_Gauntlett"],"template":["application/vnd.solent.sdkm+xml"]},"registered":true},{"content-type":"application/vnd.spotfire.dxp","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["dxp"],"references":["IANA","[Stefan_Jernberg]","{application/vnd.spotfire.dxp=http://www.iana.org/assignments/media-types/application/vnd.spotfire.dxp}"],"xrefs":{"person":["Stefan_Jernberg"],"template":["application/vnd.spotfire.dxp"]},"registered":true},{"content-type":"application/vnd.spotfire.sfs","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["sfs"],"references":["IANA","[Stefan_Jernberg]","{application/vnd.spotfire.sfs=http://www.iana.org/assignments/media-types/application/vnd.spotfire.sfs}"],"xrefs":{"person":["Stefan_Jernberg"],"template":["application/vnd.spotfire.sfs"]},"registered":true},{"content-type":"application/vnd.sss-cod","encoding":"base64","references":["IANA","[Asang_Dani]","{application/vnd.sss-cod=http://www.iana.org/assignments/media-types/application/vnd.sss-cod}"],"xrefs":{"person":["Asang_Dani"],"template":["application/vnd.sss-cod"]},"registered":true},{"content-type":"application/vnd.sss-dtf","encoding":"base64","references":["IANA","[Eric_Bruno]","{application/vnd.sss-dtf=http://www.iana.org/assignments/media-types/application/vnd.sss-dtf}"],"xrefs":{"person":["Eric_Bruno"],"template":["application/vnd.sss-dtf"]},"registered":true},{"content-type":"application/vnd.sss-ntf","encoding":"base64","references":["IANA","[Eric_Bruno]","{application/vnd.sss-ntf=http://www.iana.org/assignments/media-types/application/vnd.sss-ntf}"],"xrefs":{"person":["Eric_Bruno"],"template":["application/vnd.sss-ntf"]},"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"],"references":["IANA","[Henrik_Andersson]","{application/vnd.stepmania.package=http://www.iana.org/assignments/media-types/application/vnd.stepmania.package}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.stepmania.package"]},"registered":true},{"content-type":"application/vnd.stepmania.stepchart","friendly":{"en":"StepMania"},"encoding":"base64","extensions":["sm"],"references":["IANA","[Henrik_Andersson]","{application/vnd.stepmania.stepchart=http://www.iana.org/assignments/media-types/application/vnd.stepmania.stepchart}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.stepmania.stepchart"]},"registered":true},{"content-type":"application/vnd.street-stream","encoding":"base64","references":["IANA","[Glenn_Levitt]","{application/vnd.street-stream=http://www.iana.org/assignments/media-types/application/vnd.street-stream}"],"xrefs":{"person":["Glenn_Levitt"],"template":["application/vnd.street-stream"]},"registered":true},{"content-type":"application/vnd.sun.wadl+xml","encoding":"base64","references":["IANA","[Marc_Hadley]","{application/vnd.sun.wadl+xml=http://www.iana.org/assignments/media-types/application/vnd.sun.wadl+xml}"],"xrefs":{"person":["Marc_Hadley"],"template":["application/vnd.sun.wadl+xml"]},"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"],"references":["IANA","[Jonathan_Niedfeldt]","{application/vnd.sus-calendar=http://www.iana.org/assignments/media-types/application/vnd.sus-calendar}"],"xrefs":{"person":["Jonathan_Niedfeldt"],"template":["application/vnd.sus-calendar"]},"registered":true},{"content-type":"application/vnd.svd","friendly":{"en":"SourceView Document"},"encoding":"base64","extensions":["svd"],"references":["IANA","[Scott_Becker]","{application/vnd.svd=http://www.iana.org/assignments/media-types/application/vnd.svd}"],"xrefs":{"person":["Scott_Becker"],"template":["application/vnd.svd"]},"registered":true},{"content-type":"application/vnd.swiftview-ics","encoding":"base64","references":["IANA","[Glenn_Widener]","{application/vnd.swiftview-ics=http://www.iana.org/assignments/media-types/application/vnd.swiftview-ics}"],"xrefs":{"person":["Glenn_Widener"],"template":["application/vnd.swiftview-ics"]},"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"],"references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.syncml+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.syncml+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dm+wbxml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["bdm"],"references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dm+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dm+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dm+xml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["xdm"],"references":["IANA","[Bindu_Rama_Rao]","[OMA-DM_Work_Group]","{application/vnd.syncml.dm+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+xml}"],"xrefs":{"person":["Bindu_Rama_Rao","OMA-DM_Work_Group"],"template":["application/vnd.syncml.dm+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dm.notification","encoding":"base64","references":["IANA","[Peter_Thompson]","[OMA-DM_Work_Group]","{application/vnd.syncml.dm.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm.notification}"],"xrefs":{"person":["OMA-DM_Work_Group","Peter_Thompson"],"template":["application/vnd.syncml.dm.notification"]},"registered":true},{"content-type":"application/vnd.syncml.dmddf+wbxml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmddf+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmddf+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dmddf+xml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmddf+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+xml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmddf+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+wbxml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmtnds+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmtnds+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+xml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmtnds+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+xml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmtnds+xml"]},"registered":true},{"content-type":"application/vnd.syncml.ds.notification","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.syncml.ds.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.ds.notification}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.syncml.ds.notification"]},"registered":true},{"content-type":"application/vnd.tao.intent-module-archive","friendly":{"en":"Tao Intent"},"encoding":"base64","extensions":["tao"],"references":["IANA","[Daniel_Shelton]","{application/vnd.tao.intent-module-archive=http://www.iana.org/assignments/media-types/application/vnd.tao.intent-module-archive}"],"xrefs":{"person":["Daniel_Shelton"],"template":["application/vnd.tao.intent-module-archive"]},"registered":true},{"content-type":"application/vnd.tcpdump.pcap","encoding":"base64","extensions":["cap","dmp","pcap"],"references":["IANA","[Guy_Harris]","[Glen_Turner]","{application/vnd.tcpdump.pcap=http://www.iana.org/assignments/media-types/application/vnd.tcpdump.pcap}"],"xrefs":{"person":["Glen_Turner","Guy_Harris"],"template":["application/vnd.tcpdump.pcap"]},"registered":true},{"content-type":"application/vnd.tmd.mediaflex.api+xml","encoding":"base64","references":["IANA","[Alex_Sibilev]","{application/vnd.tmd.mediaflex.api+xml=http://www.iana.org/assignments/media-types/application/vnd.tmd.mediaflex.api+xml}"],"xrefs":{"person":["Alex_Sibilev"],"template":["application/vnd.tmd.mediaflex.api+xml"]},"registered":true},{"content-type":"application/vnd.tmobile-livetv","friendly":{"en":"MobileTV"},"encoding":"base64","extensions":["tmo"],"references":["IANA","[Nicolas_Helin]","{application/vnd.tmobile-livetv=http://www.iana.org/assignments/media-types/application/vnd.tmobile-livetv}"],"xrefs":{"person":["Nicolas_Helin"],"template":["application/vnd.tmobile-livetv"]},"registered":true},{"content-type":"application/vnd.trid.tpt","friendly":{"en":"TRI Systems Config"},"encoding":"base64","extensions":["tpt"],"references":["IANA","[Frank_Cusack]","{application/vnd.trid.tpt=http://www.iana.org/assignments/media-types/application/vnd.trid.tpt}"],"xrefs":{"person":["Frank_Cusack"],"template":["application/vnd.trid.tpt"]},"registered":true},{"content-type":"application/vnd.triscape.mxs","friendly":{"en":"Triscape Map Explorer"},"encoding":"base64","extensions":["mxs"],"references":["IANA","[Steven_Simonoff]","{application/vnd.triscape.mxs=http://www.iana.org/assignments/media-types/application/vnd.triscape.mxs}"],"xrefs":{"person":["Steven_Simonoff"],"template":["application/vnd.triscape.mxs"]},"registered":true},{"content-type":"application/vnd.trueapp","friendly":{"en":"True BASIC"},"encoding":"base64","extensions":["tra"],"references":["IANA","[J._Scott_Hepler]","{application/vnd.trueapp=http://www.iana.org/assignments/media-types/application/vnd.trueapp}"],"xrefs":{"person":["J._Scott_Hepler"],"template":["application/vnd.trueapp"]},"registered":true},{"content-type":"application/vnd.truedoc","encoding":"base64","references":["IANA","[Brad_Chase]","{application/vnd.truedoc=http://www.iana.org/assignments/media-types/application/vnd.truedoc}"],"xrefs":{"person":["Brad_Chase"],"template":["application/vnd.truedoc"]},"registered":true},{"content-type":"application/vnd.ubisoft.webplayer","encoding":"base64","references":["IANA","[Martin_Talbot]","{application/vnd.ubisoft.webplayer=http://www.iana.org/assignments/media-types/application/vnd.ubisoft.webplayer}"],"xrefs":{"person":["Martin_Talbot"],"template":["application/vnd.ubisoft.webplayer"]},"registered":true},{"content-type":"application/vnd.ufdl","friendly":{"en":"Universal Forms Description Language"},"encoding":"base64","extensions":["ufd","ufdl"],"references":["IANA","[Dave_Manning]","{application/vnd.ufdl=http://www.iana.org/assignments/media-types/application/vnd.ufdl}"],"xrefs":{"person":["Dave_Manning"],"template":["application/vnd.ufdl"]},"registered":true},{"content-type":"application/vnd.uiq.theme","friendly":{"en":"User Interface Quartz - Theme (Symbian)"},"encoding":"base64","extensions":["utz"],"references":["IANA","[Tim_Ocock]","{application/vnd.uiq.theme=http://www.iana.org/assignments/media-types/application/vnd.uiq.theme}"],"xrefs":{"person":["Tim_Ocock"],"template":["application/vnd.uiq.theme"]},"registered":true},{"content-type":"application/vnd.umajin","friendly":{"en":"UMAJIN"},"encoding":"base64","extensions":["umj"],"references":["IANA","[Jamie_Riden]","{application/vnd.umajin=http://www.iana.org/assignments/media-types/application/vnd.umajin}"],"xrefs":{"person":["Jamie_Riden"],"template":["application/vnd.umajin"]},"registered":true},{"content-type":"application/vnd.unity","friendly":{"en":"Unity 3d"},"encoding":"base64","extensions":["unityweb"],"references":["IANA","[Unity3d]","{application/vnd.unity=http://www.iana.org/assignments/media-types/application/vnd.unity}"],"xrefs":{"person":["Unity3d"],"template":["application/vnd.unity"]},"registered":true},{"content-type":"application/vnd.uoml+xml","friendly":{"en":"Unique Object Markup Language"},"encoding":"base64","extensions":["uoml"],"references":["IANA","[Arne_Gerdes]","{application/vnd.uoml+xml=http://www.iana.org/assignments/media-types/application/vnd.uoml+xml}"],"xrefs":{"person":["Arne_Gerdes"],"template":["application/vnd.uoml+xml"]},"registered":true},{"content-type":"application/vnd.uplanet.alert","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.alert=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.alert"]},"registered":true},{"content-type":"application/vnd.uplanet.alert-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.alert-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.alert-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.bearer-choice=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.bearer-choice"]},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.bearer-choice-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.bearer-choice-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.cacheop","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.cacheop=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.cacheop"]},"registered":true},{"content-type":"application/vnd.uplanet.cacheop-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.cacheop-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.cacheop-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.channel","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.channel=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.channel"]},"registered":true},{"content-type":"application/vnd.uplanet.channel-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.channel-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.channel-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.list","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.list=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.list"]},"registered":true},{"content-type":"application/vnd.uplanet.list-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.list-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.list-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.listcmd","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.listcmd=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.listcmd"]},"registered":true},{"content-type":"application/vnd.uplanet.listcmd-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.listcmd-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.listcmd-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.signal","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.signal=http://www.iana.org/assignments/media-types/application/vnd.uplanet.signal}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.signal"]},"registered":true},{"content-type":"application/vnd.valve.source.material","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.valve.source.material=http://www.iana.org/assignments/media-types/application/vnd.valve.source.material}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.valve.source.material"]},"registered":true},{"content-type":"application/vnd.vcx","friendly":{"en":"VirtualCatalog"},"encoding":"base64","extensions":["vcx"],"references":["IANA","[Taisuke_Sugimoto]","{application/vnd.vcx=http://www.iana.org/assignments/media-types/application/vnd.vcx}"],"xrefs":{"person":["Taisuke_Sugimoto"],"template":["application/vnd.vcx"]},"registered":true},{"content-type":"application/vnd.vd-study","encoding":"base64","references":["IANA","[Luc_Rogge]","{application/vnd.vd-study=http://www.iana.org/assignments/media-types/application/vnd.vd-study}"],"xrefs":{"person":["Luc_Rogge"],"template":["application/vnd.vd-study"]},"registered":true},{"content-type":"application/vnd.vectorworks","encoding":"base64","references":["IANA","[Lyndsey_Ferguson]","[Biplab_Sarkar]","{application/vnd.vectorworks=http://www.iana.org/assignments/media-types/application/vnd.vectorworks}"],"xrefs":{"person":["Biplab_Sarkar","Lyndsey_Ferguson"],"template":["application/vnd.vectorworks"]},"registered":true},{"content-type":"application/vnd.verimatrix.vcas","encoding":"base64","references":["IANA","[Petr_Peterka]","{application/vnd.verimatrix.vcas=http://www.iana.org/assignments/media-types/application/vnd.verimatrix.vcas}"],"xrefs":{"person":["Petr_Peterka"],"template":["application/vnd.verimatrix.vcas"]},"registered":true},{"content-type":"application/vnd.vidsoft.vidconference","encoding":"8bit","extensions":["vsc"],"references":["IANA","[Robert_Hess]","{application/vnd.vidsoft.vidconference=http://www.iana.org/assignments/media-types/application/vnd.vidsoft.vidconference}"],"xrefs":{"person":["Robert_Hess"],"template":["application/vnd.vidsoft.vidconference"]},"registered":true},{"content-type":"application/vnd.visio","friendly":{"en":"Microsoft Visio"},"encoding":"base64","extensions":["vsd","vst","vsw","vss"],"references":["IANA","[Troy_Sandal]","{application/vnd.visio=http://www.iana.org/assignments/media-types/application/vnd.visio}"],"xrefs":{"person":["Troy_Sandal"],"template":["application/vnd.visio"]},"registered":true},{"content-type":"application/vnd.visionary","friendly":{"en":"Visionary"},"encoding":"base64","extensions":["vis"],"references":["IANA","[Gayatri_Aravindakumar]","{application/vnd.visionary=http://www.iana.org/assignments/media-types/application/vnd.visionary}"],"xrefs":{"person":["Gayatri_Aravindakumar"],"template":["application/vnd.visionary"]},"registered":true},{"content-type":"application/vnd.vividence.scriptfile","encoding":"base64","references":["IANA","[Mark_Risher]","{application/vnd.vividence.scriptfile=http://www.iana.org/assignments/media-types/application/vnd.vividence.scriptfile}"],"xrefs":{"person":["Mark_Risher"],"template":["application/vnd.vividence.scriptfile"]},"registered":true},{"content-type":"application/vnd.vsf","friendly":{"en":"Viewport+"},"encoding":"base64","extensions":["vsf"],"references":["IANA","[Delton_Rowe]","{application/vnd.vsf=http://www.iana.org/assignments/media-types/application/vnd.vsf}"],"xrefs":{"person":["Delton_Rowe"],"template":["application/vnd.vsf"]},"registered":true},{"content-type":"application/vnd.wap.sic","encoding":"base64","extensions":["sic"],"references":["IANA","[WAP-Forum]","{application/vnd.wap.sic=http://www.iana.org/assignments/media-types/application/vnd.wap.sic}"],"xrefs":{"person":["WAP-Forum"],"template":["application/vnd.wap.sic"]},"registered":true},{"content-type":"application/vnd.wap.slc","encoding":"base64","extensions":["slc"],"references":["IANA","[WAP-Forum]","{application/vnd.wap-slc=http://www.iana.org/assignments/media-types/application/vnd.wap-slc}"],"xrefs":{"person":["WAP-Forum"],"template":["application/vnd.wap-slc"]},"registered":true},{"content-type":"application/vnd.wap.wbxml","friendly":{"en":"WAP Binary XML (WBXML)"},"encoding":"base64","extensions":["wbxml"],"references":["IANA","[Peter_Stark]","{application/vnd.wap-wbxml=http://www.iana.org/assignments/media-types/application/vnd.wap-wbxml}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd.wap-wbxml"]},"registered":true},{"content-type":"application/vnd.wap.wmlc","friendly":{"en":"Compiled Wireless Markup Language (WMLC)"},"encoding":"base64","extensions":["wmlc"],"references":["IANA","[Peter_Stark]","{application/vnd-wap-wmlc=http://www.iana.org/assignments/media-types/application/vnd-wap-wmlc}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd-wap-wmlc"]},"registered":true},{"content-type":"application/vnd.wap.wmlscriptc","friendly":{"en":"WMLScript"},"encoding":"base64","extensions":["wmlsc"],"references":["IANA","[Peter_Stark]","{application/vnd.wap.wmlscriptc=http://www.iana.org/assignments/media-types/application/vnd.wap.wmlscriptc}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd.wap.wmlscriptc"]},"registered":true},{"content-type":"application/vnd.webturbo","friendly":{"en":"WebTurbo"},"encoding":"base64","extensions":["wtb"],"references":["IANA","[Yaser_Rehem]","{application/vnd.webturbo=http://www.iana.org/assignments/media-types/application/vnd.webturbo}"],"xrefs":{"person":["Yaser_Rehem"],"template":["application/vnd.webturbo"]},"registered":true},{"content-type":"application/vnd.wfa.p2p","encoding":"base64","references":["IANA","[Mick_Conley]","{application/vnd.wfa.p2p=http://www.iana.org/assignments/media-types/application/vnd.wfa.p2p}"],"xrefs":{"person":["Mick_Conley"],"template":["application/vnd.wfa.p2p"]},"registered":true},{"content-type":"application/vnd.wfa.wsc","encoding":"base64","references":["IANA","[Wi-Fi_Alliance]","{application/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/application/vnd.wfa.wsc}"],"xrefs":{"person":["Wi-Fi_Alliance"],"template":["application/vnd.wfa.wsc"]},"registered":true},{"content-type":"application/vnd.windows.devicepairing","encoding":"base64","references":["IANA","[Priya_Dandawate]","{application/vnd.windows.devicepairing=http://www.iana.org/assignments/media-types/application/vnd.windows.devicepairing}"],"xrefs":{"person":["Priya_Dandawate"],"template":["application/vnd.windows.devicepairing"]},"registered":true},{"content-type":"application/vnd.wmc","encoding":"base64","references":["IANA","[Thomas_Kjornes]","{application/vnd.wmc=http://www.iana.org/assignments/media-types/application/vnd.wmc}"],"xrefs":{"person":["Thomas_Kjornes"],"template":["application/vnd.wmc"]},"registered":true},{"content-type":"application/vnd.wmf.bootstrap","encoding":"base64","references":["IANA","[Thinh_Nguyenphu]","[Prakash_Iyer]","{application/vnd.wmf.bootstrap=http://www.iana.org/assignments/media-types/application/vnd.wmf.bootstrap}"],"xrefs":{"person":["Prakash_Iyer","Thinh_Nguyenphu"],"template":["application/vnd.wmf.bootstrap"]},"registered":true},{"content-type":"application/vnd.wolfram.mathematica","encoding":"base64","references":["IANA","[Wolfram]","{application/vnd.wolfram.mathematica=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.mathematica"]},"registered":true},{"content-type":"application/vnd.wolfram.mathematica.package","encoding":"base64","references":["IANA","[Wolfram]","{application/vnd.wolfram.mathematica.package=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica.package}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.mathematica.package"]},"registered":true},{"content-type":"application/vnd.wolfram.player","friendly":{"en":"Mathematica Notebook Player"},"encoding":"base64","extensions":["nbp"],"references":["IANA","[Wolfram]","{application/vnd.wolfram.player=http://www.iana.org/assignments/media-types/application/vnd.wolfram.player}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.player"]},"registered":true},{"content-type":"application/vnd.wordperfect","friendly":{"en":"Wordperfect"},"encoding":"base64","extensions":["wpd"],"references":["IANA","[Kim_Scarborough]","{application/vnd.wordperfect=http://www.iana.org/assignments/media-types/application/vnd.wordperfect}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.wordperfect"]},"registered":true},{"content-type":"application/vnd.wqd","friendly":{"en":"SundaHus WQ"},"encoding":"base64","extensions":["wqd"],"references":["IANA","[Jan_Bostrom]","{application/vnd.wqd=http://www.iana.org/assignments/media-types/application/vnd.wqd}"],"xrefs":{"person":["Jan_Bostrom"],"template":["application/vnd.wqd"]},"registered":true},{"content-type":"application/vnd.wrq-hp3000-labelled","encoding":"base64","references":["IANA","[Chris_Bartram]","{application/vnd.wrq-hp3000-labelled=http://www.iana.org/assignments/media-types/application/vnd.wrq-hp3000-labelled}"],"xrefs":{"person":["Chris_Bartram"],"template":["application/vnd.wrq-hp3000-labelled"]},"registered":true},{"content-type":"application/vnd.wt.stf","friendly":{"en":"Worldtalk"},"encoding":"base64","extensions":["stf"],"references":["IANA","[Bill_Wohler]","{application/vnd.wt.stf=http://www.iana.org/assignments/media-types/application/vnd.wt.stf}"],"xrefs":{"person":["Bill_Wohler"],"template":["application/vnd.wt.stf"]},"registered":true},{"content-type":"application/vnd.wv.csp+wbxml","encoding":"base64","extensions":["wv"],"references":["IANA","[Matti_Salmi]","{application/vnd.wv.csp+wbxml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+wbxml}"],"xrefs":{"person":["Matti_Salmi"],"template":["application/vnd.wv.csp+wbxml"]},"registered":true},{"content-type":"application/vnd.wv.csp+xml","encoding":"8bit","references":["IANA","[John_Ingi_Ingimundarson]","{application/vnd.wv.csp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+xml}"],"xrefs":{"person":["John_Ingi_Ingimundarson"],"template":["application/vnd.wv.csp+xml"]},"registered":true},{"content-type":"application/vnd.wv.ssp+xml","encoding":"8bit","references":["IANA","[John_Ingi_Ingimundarson]","{application/vnd.wv.ssp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.ssp+xml}"],"xrefs":{"person":["John_Ingi_Ingimundarson"],"template":["application/vnd.wv.ssp+xml"]},"registered":true},{"content-type":"application/vnd.xacml+json","encoding":"base64","references":["IANA","[David_Brossard]","{application/vnd.xacml+json=http://www.iana.org/assignments/media-types/application/vnd.xacml+json}"],"xrefs":{"person":["David_Brossard"],"template":["application/vnd.xacml+json"]},"registered":true},{"content-type":"application/vnd.xara","friendly":{"en":"CorelXARA"},"encoding":"base64","extensions":["xar"],"references":["IANA","[David_Matthewman]","{application/vnd.xara=http://www.iana.org/assignments/media-types/application/vnd.xara}"],"xrefs":{"person":["David_Matthewman"],"template":["application/vnd.xara"]},"registered":true},{"content-type":"application/vnd.xfdl","friendly":{"en":"Extensible Forms Description Language"},"encoding":"base64","extensions":["xfdl"],"references":["IANA","[Dave_Manning]","{application/vnd.xfdl=http://www.iana.org/assignments/media-types/application/vnd.xfdl}"],"xrefs":{"person":["Dave_Manning"],"template":["application/vnd.xfdl"]},"registered":true},{"content-type":"application/vnd.xfdl.webform","encoding":"base64","references":["IANA","[Michael_Mansell]","{application/vnd.xfdl.webform=http://www.iana.org/assignments/media-types/application/vnd.xfdl.webform}"],"xrefs":{"person":["Michael_Mansell"],"template":["application/vnd.xfdl.webform"]},"registered":true},{"content-type":"application/vnd.xmi+xml","encoding":"base64","references":["IANA","[Fred_Waskiewicz]","{application/vnd.xmi+xml=http://www.iana.org/assignments/media-types/application/vnd.xmi+xml}"],"xrefs":{"person":["Fred_Waskiewicz"],"template":["application/vnd.xmi+xml"]},"registered":true},{"content-type":"application/vnd.xmpie.cpkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.cpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.cpkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.cpkg"]},"registered":true},{"content-type":"application/vnd.xmpie.dpkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.dpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.dpkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.dpkg"]},"registered":true},{"content-type":"application/vnd.xmpie.plan","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.plan=http://www.iana.org/assignments/media-types/application/vnd.xmpie.plan}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.plan"]},"registered":true},{"content-type":"application/vnd.xmpie.ppkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.ppkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.ppkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.ppkg"]},"registered":true},{"content-type":"application/vnd.xmpie.xlim","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.xlim=http://www.iana.org/assignments/media-types/application/vnd.xmpie.xlim}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.xlim"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-dic","friendly":{"en":"HV Voice Dictionary"},"encoding":"base64","extensions":["hvd"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-dic=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-dic}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-dic"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-script","friendly":{"en":"HV Script"},"encoding":"base64","extensions":["hvs"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-script=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-script}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-script"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-voice","friendly":{"en":"HV Voice Parameter"},"encoding":"base64","extensions":["hvp"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-voice=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-voice}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-voice"]},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat","friendly":{"en":"Open Score Format"},"encoding":"base64","extensions":["osf"],"references":["IANA","[Mark_Olleson]","{application/vnd.yamaha.openscoreformat=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat}"],"xrefs":{"person":["Mark_Olleson"],"template":["application/vnd.yamaha.openscoreformat"]},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat.osfpvg+xml","friendly":{"en":"OSFPVG"},"encoding":"base64","extensions":["osfpvg"],"references":["IANA","[Mark_Olleson]","{application/vnd.yamaha.openscoreformat.osfpvg+xml=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat.osfpvg+xml}"],"xrefs":{"person":["Mark_Olleson"],"template":["application/vnd.yamaha.openscoreformat.osfpvg+xml"]},"registered":true},{"content-type":"application/vnd.yamaha.remote-setup","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.remote-setup=http://www.iana.org/assignments/media-types/application/vnd.yamaha.remote-setup}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.remote-setup"]},"registered":true},{"content-type":"application/vnd.yamaha.smaf-audio","friendly":{"en":"SMAF Audio"},"encoding":"base64","extensions":["saf"],"references":["IANA","[Keiichi_Shinoda]","{application/vnd.yamaha.smaf-audio=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-audio}"],"xrefs":{"person":["Keiichi_Shinoda"],"template":["application/vnd.yamaha.smaf-audio"]},"registered":true},{"content-type":"application/vnd.yamaha.smaf-phrase","friendly":{"en":"SMAF Phrase"},"encoding":"base64","extensions":["spf"],"references":["IANA","[Keiichi_Shinoda]","{application/vnd.yamaha.smaf-phrase=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-phrase}"],"xrefs":{"person":["Keiichi_Shinoda"],"template":["application/vnd.yamaha.smaf-phrase"]},"registered":true},{"content-type":"application/vnd.yamaha.through-ngn","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.through-ngn=http://www.iana.org/assignments/media-types/application/vnd.yamaha.through-ngn}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.through-ngn"]},"registered":true},{"content-type":"application/vnd.yamaha.tunnel-udpencap","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.tunnel-udpencap=http://www.iana.org/assignments/media-types/application/vnd.yamaha.tunnel-udpencap}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.tunnel-udpencap"]},"registered":true},{"content-type":"application/vnd.yaoweme","encoding":"base64","references":["IANA","[Jens_Jorgensen]","{application/vnd.yaoweme=http://www.iana.org/assignments/media-types/application/vnd.yaoweme}"],"xrefs":{"person":["Jens_Jorgensen"],"template":["application/vnd.yaoweme"]},"registered":true},{"content-type":"application/vnd.yellowriver-custom-menu","friendly":{"en":"CustomMenu"},"encoding":"base64","extensions":["cmp"],"references":["IANA","[Mr._Yellow]","{application/vnd.yellowriver-custom-menu=http://www.iana.org/assignments/media-types/application/vnd.yellowriver-custom-menu}"],"xrefs":{"person":["Mr._Yellow"],"template":["application/vnd.yellowriver-custom-menu"]},"registered":true},{"content-type":"application/vnd.zul","friendly":{"en":"Z.U.L. Geometry"},"encoding":"base64","extensions":["zir","zirz"],"references":["IANA","[Rene_Grothmann]","{application/vnd.zul=http://www.iana.org/assignments/media-types/application/vnd.zul}"],"xrefs":{"person":["Rene_Grothmann"],"template":["application/vnd.zul"]},"registered":true},{"content-type":"application/vnd.zzazz.deck+xml","friendly":{"en":"Zzazz Deck"},"encoding":"base64","extensions":["zaz"],"references":["IANA","[Micheal_Hewett]","{application/vnd.zzazz.deck+xml=http://www.iana.org/assignments/media-types/application/vnd.zzazz.deck+xml}"],"xrefs":{"person":["Micheal_Hewett"],"template":["application/vnd.zzazz.deck+xml"]},"registered":true},{"content-type":"application/voicexml+xml","friendly":{"en":"VoiceXML"},"encoding":"base64","extensions":["vxml"],"references":["IANA","RFC4267","{application/voicexml+xml=http://www.iana.org/assignments/media-types/application/voicexml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/voicexml+xml"]},"registered":true},{"content-type":"application/vq-rtcpxr","encoding":"base64","references":["IANA","RFC6035","{application/vq-rtcpxr=http://www.iana.org/assignments/media-types/application/vq-rtcpxr}"],"xrefs":{"rfc":["rfc6035"],"template":["application/vq-rtcpxr"]},"registered":true},{"content-type":"application/watcherinfo+xml","encoding":"base64","extensions":["wif"],"references":["IANA","RFC3858","{application/watcherinfo+xml=http://www.iana.org/assignments/media-types/application/watcherinfo+xml}"],"xrefs":{"rfc":["rfc3858"],"template":["application/watcherinfo+xml"]},"registered":true},{"content-type":"application/whoispp-query","encoding":"base64","references":["IANA","RFC2957","{application/whoispp-query=http://www.iana.org/assignments/media-types/application/whoispp-query}"],"xrefs":{"rfc":["rfc2957"],"template":["application/whoispp-query"]},"registered":true},{"content-type":"application/whoispp-response","encoding":"base64","references":["IANA","RFC2958","{application/whoispp-response=http://www.iana.org/assignments/media-types/application/whoispp-response}"],"xrefs":{"rfc":["rfc2958"],"template":["application/whoispp-response"]},"registered":true},{"content-type":"application/widget","friendly":{"en":"Widget Packaging and XML Configuration"},"encoding":"base64","extensions":["wgt"],"references":["IANA","[W3C]","[Steven_Pemberton]","{http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw}"],"xrefs":{"person":["Steven_Pemberton","W3C"],"uri":["http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw"]},"registered":true},{"content-type":"application/winhlp","friendly":{"en":"WinHelp"},"encoding":"base64","extensions":["hlp"],"registered":false},{"content-type":"application/wita","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/wita=http://www.iana.org/assignments/media-types/application/wita}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/wita"]},"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"],"references":["IANA","[Paul_Lindner]","{application/wordperfect5.1=http://www.iana.org/assignments/media-types/application/wordperfect5.1}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/wordperfect5.1"]},"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"],"references":["IANA","[W3C]","{application/wsdl+xml=http://www.iana.org/assignments/media-types/application/wsdl+xml}"],"xrefs":{"person":["W3C"],"template":["application/wsdl+xml"]},"registered":true},{"content-type":"application/wspolicy+xml","friendly":{"en":"Web Services Policy"},"encoding":"base64","extensions":["wspolicy"],"references":["IANA","[W3C]","{application/wspolicy+xml=http://www.iana.org/assignments/media-types/application/wspolicy+xml}"],"xrefs":{"person":["W3C"],"template":["application/wspolicy+xml"]},"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"],"references":["{7zip=http://www.7-zip.org/7z.html}"],"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,"system":"(?-mix:mac)"},{"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,"system":"(?-mix:mac)"},{"content-type":"application/x-mac-compactpro","encoding":"base64","extensions":["cpt"],"registered":false},{"content-type":"application/x-macbase64","encoding":"base64","extensions":["bin"],"registered":false,"system":"(?-mix:mac)"},{"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","references":["IANA","[W3C]","[Robin_Berjon]","{application/x-www-form-urlencoded=http://www.iana.org/assignments/media-types/application/x-www-form-urlencoded}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["application/x-www-form-urlencoded"]},"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","references":["IANA","RFC1494","{application/x400-bp=http://www.iana.org/assignments/media-types/application/x400-bp}"],"xrefs":{"rfc":["rfc1494"],"template":["application/x400-bp"]},"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","references":["IANA","RFC7061","{application/xacml+xml=http://www.iana.org/assignments/media-types/application/xacml+xml}"],"xrefs":{"rfc":["rfc7061"],"template":["application/xacml+xml"]},"registered":true},{"content-type":"application/xaml+xml","encoding":"base64","extensions":["xaml"],"registered":false},{"content-type":"application/xcap-att+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-att+xml=http://www.iana.org/assignments/media-types/application/xcap-att+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-att+xml"]},"registered":true},{"content-type":"application/xcap-caps+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-caps+xml=http://www.iana.org/assignments/media-types/application/xcap-caps+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-caps+xml"]},"registered":true},{"content-type":"application/xcap-diff+xml","friendly":{"en":"XML Configuration Access Protocol - XCAP Diff"},"encoding":"base64","extensions":["xdf"],"references":["IANA","RFC5874","{application/xcap-diff+xml=http://www.iana.org/assignments/media-types/application/xcap-diff+xml}"],"xrefs":{"rfc":["rfc5874"],"template":["application/xcap-diff+xml"]},"registered":true},{"content-type":"application/xcap-el+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-el+xml=http://www.iana.org/assignments/media-types/application/xcap-el+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-el+xml"]},"registered":true},{"content-type":"application/xcap-error+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-error+xml=http://www.iana.org/assignments/media-types/application/xcap-error+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-error+xml"]},"registered":true},{"content-type":"application/xcap-ns+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-ns+xml=http://www.iana.org/assignments/media-types/application/xcap-ns+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-ns+xml"]},"registered":true},{"content-type":"application/xcon-conference-info+xml","encoding":"base64","references":["IANA","RFC6502","{application/xcon-conference-info+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info+xml}"],"xrefs":{"rfc":["rfc6502"],"template":["application/xcon-conference-info+xml"]},"registered":true},{"content-type":"application/xcon-conference-info-diff+xml","encoding":"base64","references":["IANA","RFC6502","{application/xcon-conference-info-diff+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info-diff+xml}"],"xrefs":{"rfc":["rfc6502"],"template":["application/xcon-conference-info-diff+xml"]},"registered":true},{"content-type":"application/xenc+xml","friendly":{"en":"XML Encryption Syntax and Processing"},"encoding":"base64","extensions":["xenc"],"references":["IANA","[Joseph_Reagle]","[XENC_Working_Group]","{application/xenc+xml=http://www.iana.org/assignments/media-types/application/xenc+xml}"],"xrefs":{"person":["Joseph_Reagle","XENC_Working_Group"],"template":["application/xenc+xml"]},"registered":true},{"content-type":"application/xhtml+xml","friendly":{"en":"XHTML - The Extensible HyperText Markup Language"},"encoding":"8bit","extensions":["xht","xhtml"],"references":["IANA","[W3C]","[Robin_Berjon]","{application/xhtml+xml=http://www.iana.org/assignments/media-types/application/xhtml+xml}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["application/xhtml+xml"]},"registered":true},{"content-type":"application/xhtml-voice+xml","encoding":"base64","obsolete":true,"references":["IANA","DRAFT:draft-mccobb-xplusv-media-type","{application/xhtml-voice+xml=http://www.iana.org/assignments/media-types/application/xhtml-voice+xml}"],"xrefs":{"draft":["draft-mccobb-xplusv-media-type"],"template":["application/xhtml-voice+xml"],"notes":["- OBSOLETE; no replacement given"]},"registered":true},{"content-type":"application/xml","friendly":{"en":"XML - Extensible Markup Language"},"encoding":"8bit","extensions":["xml","xsl"],"references":["IANA","RFC7303","{application/xml=http://www.iana.org/assignments/media-types/application/xml}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml"]},"registered":true},{"content-type":"application/xml-dtd","friendly":{"en":"Document Type Definition"},"encoding":"8bit","extensions":["dtd"],"references":["IANA","RFC7303","{application/xml-dtd=http://www.iana.org/assignments/media-types/application/xml-dtd}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml-dtd"]},"registered":true},{"content-type":"application/xml-external-parsed-entity","encoding":"base64","references":["IANA","RFC7303","{application/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/application/xml-external-parsed-entity}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml-external-parsed-entity"]},"registered":true},{"content-type":"application/xml-patch+xml","encoding":"base64","references":["IANA","RFC7351","{application/xml-patch+xml=http://www.iana.org/assignments/media-types/application/xml-patch+xml}"],"xrefs":{"rfc":["rfc7351"],"template":["application/xml-patch+xml"]},"registered":true},{"content-type":"application/xmpp+xml","encoding":"base64","references":["IANA","RFC3923","{application/xmpp+xml=http://www.iana.org/assignments/media-types/application/xmpp+xml}"],"xrefs":{"rfc":["rfc3923"],"template":["application/xmpp+xml"]},"registered":true},{"content-type":"application/xop+xml","friendly":{"en":"XML-Binary Optimized Packaging"},"encoding":"base64","extensions":["xop"],"references":["IANA","[Mark_Nottingham]","{application/xop+xml=http://www.iana.org/assignments/media-types/application/xop+xml}"],"xrefs":{"person":["Mark_Nottingham"],"template":["application/xop+xml"]},"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"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration"]},"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"],"references":["IANA","RFC4374","{application/xv+xml=http://www.iana.org/assignments/media-types/application/xv+xml}"],"xrefs":{"rfc":["rfc4374"],"template":["application/xv+xml"]},"registered":true},{"content-type":"application/yang","friendly":{"en":"YANG Data Modeling Language"},"encoding":"base64","extensions":["yang"],"references":["IANA","RFC6020","{application/yang=http://www.iana.org/assignments/media-types/application/yang}"],"xrefs":{"rfc":["rfc6020"],"template":["application/yang"]},"registered":true},{"content-type":"application/yin+xml","friendly":{"en":"YIN (YANG - XML)"},"encoding":"base64","extensions":["yin"],"references":["IANA","RFC6020","{application/yin+xml=http://www.iana.org/assignments/media-types/application/yin+xml}"],"xrefs":{"rfc":["rfc6020"],"template":["application/yin+xml"]},"registered":true},{"content-type":"application/zip","friendly":{"en":"Zip Archive"},"encoding":"base64","extensions":["zip"],"references":["IANA","[Paul_Lindner]","{application/zip=http://www.iana.org/assignments/media-types/application/zip}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/zip"]},"registered":true},{"content-type":"application/zlib","encoding":"base64","references":["IANA","RFC6713","{application/zlib=http://www.iana.org/assignments/media-types/application/zlib}"],"xrefs":{"rfc":["rfc6713"],"template":["application/zlib"]},"registered":true},{"content-type":"audio/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{audio/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/audio/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["audio/1d-interleaved-parityfec"]},"registered":true},{"content-type":"audio/32kadpcm","encoding":"base64","references":["IANA","RFC3802","RFC2421","{audio/32kadpcm=http://www.iana.org/assignments/media-types/audio/32kadpcm}"],"xrefs":{"rfc":["rfc2421","rfc3802"],"template":["audio/32kadpcm"]},"registered":true},{"content-type":"audio/3gpp","encoding":"base64","references":["IANA","RFC3839","RFC6381","{audio/3gpp=http://www.iana.org/assignments/media-types/audio/3gpp}"],"xrefs":{"rfc":["rfc3839","rfc6381"],"template":["audio/3gpp"]},"registered":true},{"content-type":"audio/3gpp2","encoding":"base64","references":["IANA","RFC4393","RFC6381","{audio/3gpp2=http://www.iana.org/assignments/media-types/audio/3gpp2}"],"xrefs":{"rfc":["rfc4393","rfc6381"],"template":["audio/3gpp2"]},"registered":true},{"content-type":"audio/ac3","encoding":"base64","references":["IANA","RFC4184","{audio/ac3=http://www.iana.org/assignments/media-types/audio/ac3}"],"xrefs":{"rfc":["rfc4184"],"template":["audio/ac3"]},"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"],"references":["IANA","RFC4867","{audio/AMR=http://www.iana.org/assignments/media-types/audio/AMR}"],"xrefs":{"rfc":["rfc4867"],"template":["audio/AMR"]},"registered":true},{"content-type":"audio/AMR-WB","encoding":"base64","extensions":["awb"],"references":["IANA","RFC4867","{audio/AMR-WB=http://www.iana.org/assignments/media-types/audio/AMR-WB}"],"xrefs":{"rfc":["rfc4867"],"template":["audio/AMR-WB"]},"registered":true},{"content-type":"audio/amr-wb+","encoding":"base64","references":["IANA","RFC4352","{audio/amr-wb+=http://www.iana.org/assignments/media-types/audio/amr-wb+}"],"xrefs":{"rfc":["rfc4352"],"template":["audio/amr-wb+"]},"registered":true},{"content-type":"audio/aptx","encoding":"base64","references":["IANA","RFC7310","{audio/aptx=http://www.iana.org/assignments/media-types/audio/aptx}"],"xrefs":{"rfc":["rfc7310"],"template":["audio/aptx"]},"registered":true},{"content-type":"audio/asc","encoding":"base64","references":["IANA","RFC6295","{audio/asc=http://www.iana.org/assignments/media-types/audio/asc}"],"xrefs":{"rfc":["rfc6295"],"template":["audio/asc"]},"registered":true},{"content-type":"audio/ATRAC-ADVANCED-LOSSLESS","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC-ADVANCED-LOSSLESS=http://www.iana.org/assignments/media-types/audio/ATRAC-ADVANCED-LOSSLESS}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC-ADVANCED-LOSSLESS"]},"registered":true},{"content-type":"audio/ATRAC-X","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC-X=http://www.iana.org/assignments/media-types/audio/ATRAC-X}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC-X"]},"registered":true},{"content-type":"audio/ATRAC3","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC3=http://www.iana.org/assignments/media-types/audio/ATRAC3}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC3"]},"registered":true},{"content-type":"audio/basic","friendly":{"en":"Sun Audio - Au file format"},"encoding":"base64","extensions":["au","snd"],"references":["IANA","RFC2045","RFC2046","{audio/basic=http://www.iana.org/assignments/media-types/audio/basic}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["audio/basic"]},"registered":true},{"content-type":"audio/BV16","encoding":"base64","references":["IANA","RFC4298","{audio/BV16=http://www.iana.org/assignments/media-types/audio/BV16}"],"xrefs":{"rfc":["rfc4298"],"template":["audio/BV16"]},"registered":true},{"content-type":"audio/BV32","encoding":"base64","references":["IANA","RFC4298","{audio/BV32=http://www.iana.org/assignments/media-types/audio/BV32}"],"xrefs":{"rfc":["rfc4298"],"template":["audio/BV32"]},"registered":true},{"content-type":"audio/clearmode","encoding":"base64","references":["IANA","RFC4040","{audio/clearmode=http://www.iana.org/assignments/media-types/audio/clearmode}"],"xrefs":{"rfc":["rfc4040"],"template":["audio/clearmode"]},"registered":true},{"content-type":"audio/CN","encoding":"base64","references":["IANA","RFC3389","{audio/CN=http://www.iana.org/assignments/media-types/audio/CN}"],"xrefs":{"rfc":["rfc3389"],"template":["audio/CN"]},"registered":true},{"content-type":"audio/DAT12","encoding":"base64","references":["IANA","RFC3190","{audio/DAT12=http://www.iana.org/assignments/media-types/audio/DAT12}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/DAT12"]},"registered":true},{"content-type":"audio/dls","encoding":"base64","references":["IANA","RFC4613","{audio/dls=http://www.iana.org/assignments/media-types/audio/dls}"],"xrefs":{"rfc":["rfc4613"],"template":["audio/dls"]},"registered":true},{"content-type":"audio/dsr-es201108","encoding":"base64","references":["IANA","RFC3557","{audio/dsr-es201108=http://www.iana.org/assignments/media-types/audio/dsr-es201108}"],"xrefs":{"rfc":["rfc3557"],"template":["audio/dsr-es201108"]},"registered":true},{"content-type":"audio/dsr-es202050","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202050=http://www.iana.org/assignments/media-types/audio/dsr-es202050}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202050"]},"registered":true},{"content-type":"audio/dsr-es202211","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202211=http://www.iana.org/assignments/media-types/audio/dsr-es202211}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202211"]},"registered":true},{"content-type":"audio/dsr-es202212","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202212=http://www.iana.org/assignments/media-types/audio/dsr-es202212}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202212"]},"registered":true},{"content-type":"audio/DV","encoding":"base64","references":["IANA","RFC6469","{audio/DV=http://www.iana.org/assignments/media-types/audio/DV}"],"xrefs":{"rfc":["rfc6469"],"template":["audio/DV"]},"registered":true},{"content-type":"audio/DVI4","encoding":"base64","references":["IANA","RFC4856","{audio/DVI4=http://www.iana.org/assignments/media-types/audio/DVI4}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/DVI4"]},"registered":true},{"content-type":"audio/eac3","encoding":"base64","references":["IANA","RFC4598","{audio/eac3=http://www.iana.org/assignments/media-types/audio/eac3}"],"xrefs":{"rfc":["rfc4598"],"template":["audio/eac3"]},"registered":true},{"content-type":"audio/encaprtp","encoding":"base64","references":["IANA","RFC6849","{audio/encaprtp=http://www.iana.org/assignments/media-types/audio/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["audio/encaprtp"]},"registered":true},{"content-type":"audio/EVRC","encoding":"base64","extensions":["evc"],"references":["IANA","RFC4788","{audio/EVRC=http://www.iana.org/assignments/media-types/audio/EVRC}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC"]},"registered":true},{"content-type":"audio/EVRC-QCP","encoding":"base64","references":["IANA","RFC3625","{audio/EVRC-QCP=http://www.iana.org/assignments/media-types/audio/EVRC-QCP}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/EVRC-QCP"]},"registered":true},{"content-type":"audio/EVRC0","encoding":"base64","references":["IANA","RFC4788","{audio/EVRC0=http://www.iana.org/assignments/media-types/audio/EVRC0}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC0"]},"registered":true},{"content-type":"audio/EVRC1","encoding":"base64","references":["IANA","RFC4788","{audio/EVRC1=http://www.iana.org/assignments/media-types/audio/EVRC1}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC1"]},"registered":true},{"content-type":"audio/EVRCB","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCB=http://www.iana.org/assignments/media-types/audio/EVRCB}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCB"]},"registered":true},{"content-type":"audio/EVRCB0","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCB0=http://www.iana.org/assignments/media-types/audio/EVRCB0}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCB0"]},"registered":true},{"content-type":"audio/EVRCB1","encoding":"base64","references":["IANA","RFC4788","{audio/EVRCB1=http://www.iana.org/assignments/media-types/audio/EVRCB1}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRCB1"]},"registered":true},{"content-type":"audio/EVRCNW","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW=http://www.iana.org/assignments/media-types/audio/EVRCNW}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW"]},"registered":true},{"content-type":"audio/EVRCNW0","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW0=http://www.iana.org/assignments/media-types/audio/EVRCNW0}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW0"]},"registered":true},{"content-type":"audio/EVRCNW1","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW1=http://www.iana.org/assignments/media-types/audio/EVRCNW1}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW1"]},"registered":true},{"content-type":"audio/EVRCWB","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB=http://www.iana.org/assignments/media-types/audio/EVRCWB}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB"]},"registered":true},{"content-type":"audio/EVRCWB0","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB0=http://www.iana.org/assignments/media-types/audio/EVRCWB0}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB0"]},"registered":true},{"content-type":"audio/EVRCWB1","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB1=http://www.iana.org/assignments/media-types/audio/EVRCWB1}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB1"]},"registered":true},{"content-type":"audio/example","encoding":"base64","references":["IANA","RFC4735","{audio/example=http://www.iana.org/assignments/media-types/audio/example}"],"xrefs":{"rfc":["rfc4735"],"template":["audio/example"]},"registered":true},{"content-type":"audio/fwdred","encoding":"base64","references":["IANA","RFC6354","{audio/fwdred=http://www.iana.org/assignments/media-types/audio/fwdred}"],"xrefs":{"rfc":["rfc6354"],"template":["audio/fwdred"]},"registered":true},{"content-type":"audio/G719","encoding":"base64","references":["IANA","RFC5404","{RFC Errata 3245=http://www.rfc-editor.org/errata_search.php?eid=3245}","{audio/G719=http://www.iana.org/assignments/media-types/audio/G719}"],"xrefs":{"rfc":["rfc5404"],"rfc-errata":["3245"],"template":["audio/G719"]},"registered":true},{"content-type":"audio/G722","encoding":"base64","references":["IANA","RFC4856","{audio/G722=http://www.iana.org/assignments/media-types/audio/G722}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G722"]},"registered":true},{"content-type":"audio/G7221","encoding":"base64","references":["IANA","RFC5577","{audio/G721=http://www.iana.org/assignments/media-types/audio/G721}"],"xrefs":{"rfc":["rfc5577"],"template":["audio/G721"]},"registered":true},{"content-type":"audio/G723","encoding":"base64","references":["IANA","RFC4856","{audio/G723=http://www.iana.org/assignments/media-types/audio/G723}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G723"]},"registered":true},{"content-type":"audio/G726-16","encoding":"base64","references":["IANA","RFC4856","{audio/G726-16=http://www.iana.org/assignments/media-types/audio/G726-16}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-16"]},"registered":true},{"content-type":"audio/G726-24","encoding":"base64","references":["IANA","RFC4856","{audio/G726-24=http://www.iana.org/assignments/media-types/audio/G726-24}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-24"]},"registered":true},{"content-type":"audio/G726-32","encoding":"base64","references":["IANA","RFC4856","{audio/G726-32=http://www.iana.org/assignments/media-types/audio/G726-32}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-32"]},"registered":true},{"content-type":"audio/G726-40","encoding":"base64","references":["IANA","RFC4856","{audio/G726-40=http://www.iana.org/assignments/media-types/audio/G726-40}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-40"]},"registered":true},{"content-type":"audio/G728","encoding":"base64","references":["IANA","RFC4856","{audio/G728=http://www.iana.org/assignments/media-types/audio/G728}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G728"]},"registered":true},{"content-type":"audio/G729","encoding":"base64","references":["IANA","RFC4856","{audio/G729=http://www.iana.org/assignments/media-types/audio/G729}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729"]},"registered":true},{"content-type":"audio/G7291","encoding":"base64","references":["IANA","RFC4749","RFC5459"],"xrefs":{"rfc":["rfc4749","rfc5459"]},"registered":true},{"content-type":"audio/G729D","encoding":"base64","references":["IANA","RFC4856","{audio/G729D=http://www.iana.org/assignments/media-types/audio/G729D}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729D"]},"registered":true},{"content-type":"audio/G729E","encoding":"base64","references":["IANA","RFC4856","{audio/G729E=http://www.iana.org/assignments/media-types/audio/G729E}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729E"]},"registered":true},{"content-type":"audio/GSM","encoding":"base64","references":["IANA","RFC4856","{audio/GSM=http://www.iana.org/assignments/media-types/audio/GSM}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/GSM"]},"registered":true},{"content-type":"audio/GSM-EFR","encoding":"base64","references":["IANA","RFC4856","{audio/GSM-EFR=http://www.iana.org/assignments/media-types/audio/GSM-EFR}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/GSM-EFR"]},"registered":true},{"content-type":"audio/GSM-HR-08","encoding":"base64","references":["IANA","RFC5993","{audio/GSM-HR-08=http://www.iana.org/assignments/media-types/audio/GSM-HR-08}"],"xrefs":{"rfc":["rfc5993"],"template":["audio/GSM-HR-08"]},"registered":true},{"content-type":"audio/iLBC","encoding":"base64","references":["IANA","RFC3952","{audio/iLBC=http://www.iana.org/assignments/media-types/audio/iLBC}"],"xrefs":{"rfc":["rfc3952"],"template":["audio/iLBC"]},"registered":true},{"content-type":"audio/ip-mr_v2.5","encoding":"base64","references":["IANA","RFC6262","{audio/ip-mr_v2.5=http://www.iana.org/assignments/media-types/audio/ip-mr_v2.5}"],"xrefs":{"rfc":["rfc6262"],"template":["audio/ip-mr_v2.5"]},"registered":true},{"content-type":"audio/L16","encoding":"base64","extensions":["l16"],"references":["IANA","RFC4856","{audio/L16=http://www.iana.org/assignments/media-types/audio/L16}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/L16"]},"registered":true},{"content-type":"audio/L20","encoding":"base64","references":["IANA","RFC3190","{audio/L20=http://www.iana.org/assignments/media-types/audio/L20}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/L20"]},"registered":true},{"content-type":"audio/L24","encoding":"base64","references":["IANA","RFC3190","{audio/L24=http://www.iana.org/assignments/media-types/audio/L24}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/L24"]},"registered":true},{"content-type":"audio/L8","encoding":"base64","references":["IANA","RFC4856","{audio/L8=http://www.iana.org/assignments/media-types/audio/L8}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/L8"]},"registered":true},{"content-type":"audio/LPC","encoding":"base64","references":["IANA","RFC4856","{audio/LPC=http://www.iana.org/assignments/media-types/audio/LPC}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/LPC"]},"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","references":["IANA","RFC4723","{audio/mobile-xmf=http://www.iana.org/assignments/media-types/audio/mobile-xmf}"],"xrefs":{"rfc":["rfc4723"],"template":["audio/mobile-xmf"]},"registered":true},{"content-type":"audio/mp4","friendly":{"en":"MPEG-4 Audio"},"encoding":"base64","extensions":["mp4","mpg4","f4a","f4b","mp4a"],"references":["IANA","RFC4337","RFC6381","{audio/mp4=http://www.iana.org/assignments/media-types/audio/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["audio/mp4"]},"registered":true},{"content-type":"audio/MP4A-LATM","encoding":"base64","extensions":["m4a"],"references":["IANA","RFC6416","{audio/MP4A-LATM=http://www.iana.org/assignments/media-types/audio/MP4A-LATM}"],"xrefs":{"rfc":["rfc6416"],"template":["audio/MP4A-LATM"]},"registered":true},{"content-type":"audio/MPA","encoding":"base64","references":["IANA","RFC3555","{audio/MPA=http://www.iana.org/assignments/media-types/audio/MPA}"],"xrefs":{"rfc":["rfc3555"],"template":["audio/MPA"]},"registered":true},{"content-type":"audio/mpa-robust","encoding":"base64","references":["IANA","RFC5219","{audio/mpa-robust=http://www.iana.org/assignments/media-types/audio/mpa-robust}"],"xrefs":{"rfc":["rfc5219"],"template":["audio/mpa-robust"]},"registered":true},{"content-type":"audio/mpeg","friendly":{"en":"MPEG Audio"},"encoding":"base64","extensions":["mpga","mp2","mp3","m2a","m3a","mp2a"],"references":["IANA","RFC3003","{audio/mpeg=http://www.iana.org/assignments/media-types/audio/mpeg}"],"xrefs":{"rfc":["rfc3003"],"template":["audio/mpeg"]},"registered":true},{"content-type":"audio/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","RFC5691","RFC6295","{audio/mpeg4-generic=http://www.iana.org/assignments/media-types/audio/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640","rfc5691","rfc6295"],"template":["audio/mpeg4-generic"]},"registered":true},{"content-type":"audio/ogg","friendly":{"en":"Ogg Audio"},"encoding":"base64","extensions":["oga","ogg","spx"],"references":["IANA","RFC5334","{audio/ogg=http://www.iana.org/assignments/media-types/audio/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["audio/ogg"]},"registered":true},{"content-type":"audio/opus","encoding":"base64","references":["IANA","DRAFT:draft-ietf-payload-rtp-opus-11","{audio/opus=http://www.iana.org/assignments/media-types/audio/opus}"],"xrefs":{"draft":["RFC-ietf-payload-rtp-opus-11"],"template":["audio/opus"]},"registered":true},{"content-type":"audio/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"audio/PCMA","encoding":"base64","references":["IANA","RFC4856","{audio/PCMA=http://www.iana.org/assignments/media-types/audio/PCMA}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/PCMA"]},"registered":true},{"content-type":"audio/PCMA-WB","encoding":"base64","references":["IANA","RFC5391","{audio/PCMA-WB=http://www.iana.org/assignments/media-types/audio/PCMA-WB}"],"xrefs":{"rfc":["rfc5391"],"template":["audio/PCMA-WB"]},"registered":true},{"content-type":"audio/PCMU","encoding":"base64","references":["IANA","RFC4856","{audio/PCMU=http://www.iana.org/assignments/media-types/audio/PCMU}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/PCMU"]},"registered":true},{"content-type":"audio/PCMU-WB","encoding":"base64","references":["IANA","RFC5391","{audio/PCMU-WB=http://www.iana.org/assignments/media-types/audio/PCMU-WB}"],"xrefs":{"rfc":["rfc5391"],"template":["audio/PCMU-WB"]},"registered":true},{"content-type":"audio/prs.sid","encoding":"base64","references":["IANA","[Linus_Walleij]","{audio/prs.sid=http://www.iana.org/assignments/media-types/audio/prs.sid}"],"xrefs":{"person":["Linus_Walleij"],"template":["audio/prs.sid"]},"registered":true},{"content-type":"audio/QCELP","encoding":"base64","references":["IANA","RFC3555","RFC3625"],"xrefs":{"rfc":["rfc3555","rfc3625"]},"registered":true},{"content-type":"audio/raptorfec","encoding":"base64","references":["IANA","RFC6682","{audio/raptorfec=http://www.iana.org/assignments/media-types/audio/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["audio/raptorfec"]},"registered":true},{"content-type":"audio/RED","encoding":"base64","references":["IANA","RFC3555","{audio/RED=http://www.iana.org/assignments/media-types/audio/RED}"],"xrefs":{"rfc":["rfc3555"],"template":["audio/RED"]},"registered":true},{"content-type":"audio/rtp-enc-aescm128","encoding":"base64","references":["IANA","[ThreeGPP]","{audio/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/audio/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["audio/rtp-enc-aescm128"]},"registered":true},{"content-type":"audio/rtp-midi","encoding":"base64","references":["IANA","RFC6295","{audio/rtp-midi=http://www.iana.org/assignments/media-types/audio/rtp-midi}"],"xrefs":{"rfc":["rfc6295"],"template":["audio/rtp-midi"]},"registered":true},{"content-type":"audio/rtploopback","encoding":"base64","references":["IANA","RFC6849","{audio/rtploopback=http://www.iana.org/assignments/media-types/audio/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["audio/rtploopback"]},"registered":true},{"content-type":"audio/rtx","encoding":"base64","references":["IANA","RFC4588","{audio/rtx=http://www.iana.org/assignments/media-types/audio/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["audio/rtx"]},"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"],"references":["IANA","RFC3558","{audio/SMV=http://www.iana.org/assignments/media-types/audio/SMV}"],"xrefs":{"rfc":["rfc3558"],"template":["audio/SMV"]},"registered":true},{"content-type":"audio/SMV-QCP","encoding":"base64","references":["IANA","RFC3625","{audio/SMV-QCP=http://www.iana.org/assignments/media-types/audio/SMV-QCP}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/SMV-QCP"]},"registered":true},{"content-type":"audio/SMV0","encoding":"base64","references":["IANA","RFC3558","{audio/SMV0=http://www.iana.org/assignments/media-types/audio/SMV0}"],"xrefs":{"rfc":["rfc3558"],"template":["audio/SMV0"]},"registered":true},{"content-type":"audio/sp-midi","encoding":"base64","references":["IANA","[Timo_Kosonen]","[Tom_White]","{audio/sp-midi=http://www.iana.org/assignments/media-types/audio/sp-midi}"],"xrefs":{"person":["Timo_Kosonen","Tom_White"],"template":["audio/sp-midi"]},"registered":true},{"content-type":"audio/speex","encoding":"base64","references":["IANA","RFC5574","{audio/speex=http://www.iana.org/assignments/media-types/audio/speex}"],"xrefs":{"rfc":["rfc5574"],"template":["audio/speex"]},"registered":true},{"content-type":"audio/t140c","encoding":"base64","references":["IANA","RFC4351","{audio/t140c=http://www.iana.org/assignments/media-types/audio/t140c}"],"xrefs":{"rfc":["rfc4351"],"template":["audio/t140c"]},"registered":true},{"content-type":"audio/t38","encoding":"base64","references":["IANA","RFC4612","{audio/t38=http://www.iana.org/assignments/media-types/audio/t38}"],"xrefs":{"rfc":["rfc4612"],"template":["audio/t38"]},"registered":true},{"content-type":"audio/telephone-event","encoding":"base64","references":["IANA","RFC4733","{audio/telephone-event=http://www.iana.org/assignments/media-types/audio/telephone-event}"],"xrefs":{"rfc":["rfc4733"],"template":["audio/telephone-event"]},"registered":true},{"content-type":"audio/tone","encoding":"base64","references":["IANA","RFC4733","{audio/tone=http://www.iana.org/assignments/media-types/audio/tone}"],"xrefs":{"rfc":["rfc4733"],"template":["audio/tone"]},"registered":true},{"content-type":"audio/UEMCLIP","encoding":"base64","references":["IANA","RFC5686","{audio/UEMCLIP=http://www.iana.org/assignments/media-types/audio/UEMCLIP}"],"xrefs":{"rfc":["rfc5686"],"template":["audio/UEMCLIP"]},"registered":true},{"content-type":"audio/ulpfec","encoding":"base64","references":["IANA","RFC5109","{audio/ulpfec=http://www.iana.org/assignments/media-types/audio/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["audio/ulpfec"]},"registered":true},{"content-type":"audio/VDVI","encoding":"base64","references":["IANA","RFC4856","{audio/VDVI=http://www.iana.org/assignments/media-types/audio/VDVI}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/VDVI"]},"registered":true},{"content-type":"audio/VMR-WB","encoding":"base64","references":["IANA","RFC4348","RFC4424","{audio/VMR-WB=http://www.iana.org/assignments/media-types/audio/VMR-WB}"],"xrefs":{"rfc":["rfc4348","rfc4424"],"template":["audio/VMR-WB"]},"registered":true},{"content-type":"audio/vnd.3gpp.iufp","encoding":"base64","references":["IANA","[Thomas_Belling]","{audio/vnd.3gpp.iufp=http://www.iana.org/assignments/media-types/audio/vnd.3gpp.iufp}"],"xrefs":{"person":["Thomas_Belling"],"template":["audio/vnd.3gpp.iufp"]},"registered":true},{"content-type":"audio/vnd.4SB","encoding":"base64","references":["IANA","[Serge_De_Jaham]","{audio/vnd.4SB=http://www.iana.org/assignments/media-types/audio/vnd.4SB}"],"xrefs":{"person":["Serge_De_Jaham"],"template":["audio/vnd.4SB"]},"registered":true},{"content-type":"audio/vnd.audiokoz","encoding":"base64","references":["IANA","[Vicki_DeBarros]","{audio/vnd.audiokoz=http://www.iana.org/assignments/media-types/audio/vnd.audiokoz}"],"xrefs":{"person":["Vicki_DeBarros"],"template":["audio/vnd.audiokoz"]},"registered":true},{"content-type":"audio/vnd.CELP","encoding":"base64","references":["IANA","[Serge_De_Jaham]","{audio/vnd.CELP=http://www.iana.org/assignments/media-types/audio/vnd.CELP}"],"xrefs":{"person":["Serge_De_Jaham"],"template":["audio/vnd.CELP"]},"registered":true},{"content-type":"audio/vnd.cisco.nse","encoding":"base64","references":["IANA","[Rajesh_Kumar]","{audio/vnd.cisco.nse=http://www.iana.org/assignments/media-types/audio/vnd.cisco.nse}"],"xrefs":{"person":["Rajesh_Kumar"],"template":["audio/vnd.cisco.nse"]},"registered":true},{"content-type":"audio/vnd.cmles.radio-events","encoding":"base64","references":["IANA","[Jean-Philippe_Goulet]","{audio/vnd.cmles.radio-events=http://www.iana.org/assignments/media-types/audio/vnd.cmles.radio-events}"],"xrefs":{"person":["Jean-Philippe_Goulet"],"template":["audio/vnd.cmles.radio-events"]},"registered":true},{"content-type":"audio/vnd.cns.anp1","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{audio/vnd.cns.anp1=http://www.iana.org/assignments/media-types/audio/vnd.cns.anp1}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["audio/vnd.cns.anp1"]},"registered":true},{"content-type":"audio/vnd.cns.inf1","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{audio/vnd.cns.inf1=http://www.iana.org/assignments/media-types/audio/vnd.cns.inf1}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["audio/vnd.cns.inf1"]},"registered":true},{"content-type":"audio/vnd.dece.audio","friendly":{"en":"DECE Audio"},"encoding":"base64","extensions":["uva","uvva"],"references":["IANA","[Michael_A_Dolan]","{audio/vnd.dece.audio=http://www.iana.org/assignments/media-types/audio/vnd.dece.audio}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["audio/vnd.dece.audio"]},"registered":true},{"content-type":"audio/vnd.digital-winds","friendly":{"en":"Digital Winds Music"},"encoding":"7bit","extensions":["eol"],"references":["IANA","[Armands_Strazds]","{audio/vnd.digital-winds=http://www.iana.org/assignments/media-types/audio/vnd.digital-winds}"],"xrefs":{"person":["Armands_Strazds"],"template":["audio/vnd.digital-winds"]},"registered":true},{"content-type":"audio/vnd.dlna.adts","encoding":"base64","references":["IANA","[Edwin_Heredia]","{audio/vnd.dlna.adts=http://www.iana.org/assignments/media-types/audio/vnd.dlna.adts}"],"xrefs":{"person":["Edwin_Heredia"],"template":["audio/vnd.dlna.adts"]},"registered":true},{"content-type":"audio/vnd.dolby.heaac.1","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.heaac.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.heaac.1"]},"registered":true},{"content-type":"audio/vnd.dolby.heaac.2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.heaac.2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.heaac.2"]},"registered":true},{"content-type":"audio/vnd.dolby.mlp","encoding":"base64","references":["IANA","[Mike_Ward]","{audio/vnd.dolby.mlp=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mlp}"],"xrefs":{"person":["Mike_Ward"],"template":["audio/vnd.dolby.mlp"]},"registered":true},{"content-type":"audio/vnd.dolby.mps","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.mps=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mps}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.mps"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2x","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2x=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2x}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2x"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2z","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2z=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2z}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2z"]},"registered":true},{"content-type":"audio/vnd.dolby.pulse.1","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pulse.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pulse.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pulse.1"]},"registered":true},{"content-type":"audio/vnd.dra","friendly":{"en":"DRA Audio"},"encoding":"base64","extensions":["dra"],"references":["IANA","[Jiang_Tian]","{audio/vnd.dra=http://www.iana.org/assignments/media-types/audio/vnd.dra}"],"xrefs":{"person":["Jiang_Tian"],"template":["audio/vnd.dra"]},"registered":true},{"content-type":"audio/vnd.dts","friendly":{"en":"DTS Audio"},"encoding":"base64","extensions":["dts"],"references":["IANA","[William_Zou]","{audio/vnd.dts=http://www.iana.org/assignments/media-types/audio/vnd.dts}"],"xrefs":{"person":["William_Zou"],"template":["audio/vnd.dts"]},"registered":true},{"content-type":"audio/vnd.dts.hd","friendly":{"en":"DTS High Definition Audio"},"encoding":"base64","extensions":["dtshd"],"references":["IANA","[William_Zou]","{audio/vnd.dts.hd=http://www.iana.org/assignments/media-types/audio/vnd.dts.hd}"],"xrefs":{"person":["William_Zou"],"template":["audio/vnd.dts.hd"]},"registered":true},{"content-type":"audio/vnd.dvb.file","encoding":"base64","references":["IANA","[Peter_Siebert]","{audio/vnd.dvb.file=http://www.iana.org/assignments/media-types/audio/vnd.dvb.file}"],"xrefs":{"person":["Peter_Siebert"],"template":["audio/vnd.dvb.file"]},"registered":true},{"content-type":"audio/vnd.everad.plj","encoding":"base64","extensions":["plj"],"references":["IANA","[Shay_Cicelsky]","{audio/vnd.everad.plj=http://www.iana.org/assignments/media-types/audio/vnd.everad.plj}"],"xrefs":{"person":["Shay_Cicelsky"],"template":["audio/vnd.everad.plj"]},"registered":true},{"content-type":"audio/vnd.hns.audio","encoding":"base64","references":["IANA","[Swaminathan]","{audio/vnd.hns.audio=http://www.iana.org/assignments/media-types/audio/vnd.hns.audio}"],"xrefs":{"person":["Swaminathan"],"template":["audio/vnd.hns.audio"]},"registered":true},{"content-type":"audio/vnd.lucent.voice","friendly":{"en":"Lucent Voice"},"encoding":"base64","extensions":["lvp"],"references":["IANA","[Greg_Vaudreuil]","{audio/vnd.lucent.voice=http://www.iana.org/assignments/media-types/audio/vnd.lucent.voice}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.lucent.voice"]},"registered":true},{"content-type":"audio/vnd.ms-playready.media.pya","friendly":{"en":"Microsoft PlayReady Ecosystem"},"encoding":"base64","extensions":["pya"],"references":["IANA","[Steve_DiAcetis]","{audio/vnd.ms-playready.media.pya=http://www.iana.org/assignments/media-types/audio/vnd.ms-playready.media.pya}"],"xrefs":{"person":["Steve_DiAcetis"],"template":["audio/vnd.ms-playready.media.pya"]},"registered":true},{"content-type":"audio/vnd.nokia.mobile-xmf","encoding":"base64","extensions":["mxmf"],"references":["IANA","[Nokia]","{audio/vnd.nokia.mobile-xmf=http://www.iana.org/assignments/media-types/audio/vnd.nokia.mobile-xmf}"],"xrefs":{"person":["Nokia"],"template":["audio/vnd.nokia.mobile-xmf"]},"registered":true},{"content-type":"audio/vnd.nortel.vbk","encoding":"base64","extensions":["vbk"],"references":["IANA","[Glenn_Parsons]","{audio/vnd.nortel.vbk=http://www.iana.org/assignments/media-types/audio/vnd.nortel.vbk}"],"xrefs":{"person":["Glenn_Parsons"],"template":["audio/vnd.nortel.vbk"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp4800","friendly":{"en":"Nuera ECELP 4800"},"encoding":"base64","extensions":["ecelp4800"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp4800=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp4800}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp4800"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp7470","friendly":{"en":"Nuera ECELP 7470"},"encoding":"base64","extensions":["ecelp7470"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp7470=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp7470}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp7470"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp9600","friendly":{"en":"Nuera ECELP 9600"},"encoding":"base64","extensions":["ecelp9600"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp9600=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp9600}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp9600"]},"registered":true},{"content-type":"audio/vnd.octel.sbc","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.octel.sbc=http://www.iana.org/assignments/media-types/audio/vnd.octel.sbc}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.octel.sbc"]},"registered":true},{"content-type":"audio/vnd.qcelp","encoding":"base64","extensions":["qcp"],"obsolete":true,"use-instead":"audio/qcelp","references":["IANA","RFC3625","{audio/vnd.qcelp=http://www.iana.org/assignments/media-types/audio/vnd.qcelp}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/vnd.qcelp"],"notes":["- DEPRECATED in favor of audio/qcelp"]},"registered":true},{"content-type":"audio/vnd.rhetorex.32kadpcm","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.rhetorex.32kadpcm=http://www.iana.org/assignments/media-types/audio/vnd.rhetorex.32kadpcm}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.rhetorex.32kadpcm"]},"registered":true},{"content-type":"audio/vnd.rip","friendly":{"en":"Hit'n'Mix"},"encoding":"base64","extensions":["rip"],"references":["IANA","[Martin_Dawe]","{audio/vnd.rip=http://www.iana.org/assignments/media-types/audio/vnd.rip}"],"xrefs":{"person":["Martin_Dawe"],"template":["audio/vnd.rip"]},"registered":true},{"content-type":"audio/vnd.sealedmedia.softseal.mpeg","encoding":"base64","extensions":["smp3","smp","s1m"],"references":["IANA","[David_Petersen]","{audio/vnd.sealedmedia.softseal-mpeg=http://www.iana.org/assignments/media-types/audio/vnd.sealedmedia.softseal-mpeg}"],"xrefs":{"person":["David_Petersen"],"template":["audio/vnd.sealedmedia.softseal-mpeg"]},"registered":true},{"content-type":"audio/vnd.vmx.cvsd","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.vmx.cvsd=http://www.iana.org/assignments/media-types/audio/vnd.vmx.cvsd}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.vmx.cvsd"]},"registered":true},{"content-type":"audio/vorbis","encoding":"base64","references":["IANA","RFC5215","{audio/vorbis=http://www.iana.org/assignments/media-types/audio/vorbis}"],"xrefs":{"rfc":["rfc5215"],"template":["audio/vorbis"]},"registered":true},{"content-type":"audio/vorbis-config","encoding":"base64","references":["IANA","RFC5215","{audio/vorbis-config=http://www.iana.org/assignments/media-types/audio/vorbis-config}"],"xrefs":{"rfc":["rfc5215"],"template":["audio/vorbis-config"]},"registered":true},{"content-type":"audio/webm","friendly":{"en":"Open Web Media Project - Audio"},"encoding":"base64","extensions":["weba","webm"],"references":["{WebM=http://www.webmproject.org/code/specs/container/}"],"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"],"references":["IANA","[Alan_Francis]","{image/cgm=http://www.iana.org/assignments/media-types/image/cgm}"],"xrefs":{"person":["Alan_Francis"],"template":["image/cgm"]},"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","references":["IANA","RFC4735","{image/example=http://www.iana.org/assignments/media-types/image/example}"],"xrefs":{"rfc":["rfc4735"],"template":["image/example"]},"registered":true},{"content-type":"image/fits","encoding":"base64","references":["IANA","RFC4047","{image/fits=http://www.iana.org/assignments/media-types/image/fits}"],"xrefs":{"rfc":["rfc4047"],"template":["image/fits"]},"registered":true},{"content-type":"image/g3fax","friendly":{"en":"G3 Fax Image"},"encoding":"base64","extensions":["g3"],"references":["IANA","RFC1494","{image/g3fax=http://www.iana.org/assignments/media-types/image/g3fax}"],"xrefs":{"rfc":["rfc1494"],"template":["image/g3fax"]},"registered":true},{"content-type":"image/gif","friendly":{"en":"Graphics Interchange Format"},"encoding":"base64","extensions":["gif"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"image/ief","friendly":{"en":"Image Exchange Format"},"encoding":"base64","extensions":["ief"],"references":["IANA","RFC1314"],"xrefs":{"rfc":["rfc1314"]},"registered":true},{"content-type":"image/jp2","encoding":"base64","extensions":["jp2","jpg2"],"references":["IANA","RFC3745","{image/jp2=http://www.iana.org/assignments/media-types/image/jp2}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jp2"]},"registered":true},{"content-type":"image/jpeg","friendly":{"en":"JPEG Image"},"encoding":"base64","extensions":["jpeg","jpg","jpe"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"image/jpm","encoding":"base64","extensions":["jpm","jpgm"],"references":["IANA","RFC3745","{image/jpm=http://www.iana.org/assignments/media-types/image/jpm}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jpm"]},"registered":true},{"content-type":"image/jpx","encoding":"base64","extensions":["jpx","jpf"],"references":["IANA","RFC3745","{image/jpx=http://www.iana.org/assignments/media-types/image/jpx}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jpx"]},"registered":true},{"content-type":"image/ktx","friendly":{"en":"OpenGL Textures (KTX)"},"encoding":"base64","extensions":["ktx"],"references":["IANA","[Mark_Callow]","[Khronos]","{http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration}"],"xrefs":{"person":["Khronos","Mark_Callow"],"uri":["http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration"]},"registered":true},{"content-type":"image/naplps","encoding":"base64","references":["IANA","[Ilya_Ferber]","{image/naplps=http://www.iana.org/assignments/media-types/image/naplps}"],"xrefs":{"person":["Ilya_Ferber"],"template":["image/naplps"]},"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"],"references":["IANA","[Glenn_Randers-Pehrson]","{image/png=http://www.iana.org/assignments/media-types/image/png}"],"xrefs":{"person":["Glenn_Randers-Pehrson"],"template":["image/png"]},"registered":true},{"content-type":"image/prs.btif","friendly":{"en":"BTIF"},"encoding":"base64","extensions":["btif"],"references":["IANA","[Ben_Simon]","{image/prs.btif=http://www.iana.org/assignments/media-types/image/prs.btif}"],"xrefs":{"person":["Ben_Simon"],"template":["image/prs.btif"]},"registered":true},{"content-type":"image/prs.pti","encoding":"base64","references":["IANA","[Juern_Laun]","{image/prs.pti=http://www.iana.org/assignments/media-types/image/prs.pti}"],"xrefs":{"person":["Juern_Laun"],"template":["image/prs.pti"]},"registered":true},{"content-type":"image/pwg-raster","encoding":"base64","references":["IANA","[Michael_Sweet]","{image/pwg-raster=http://www.iana.org/assignments/media-types/image/pwg-raster}"],"xrefs":{"person":["Michael_Sweet"],"template":["image/pwg-raster"]},"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"],"references":["IANA","[W3C]","{http://www.w3.org/TR/SVG/mimereg.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/SVG/mimereg.html"]},"registered":true},{"content-type":"image/t38","encoding":"base64","references":["IANA","RFC3362","{image/t38=http://www.iana.org/assignments/media-types/image/t38}"],"xrefs":{"rfc":["rfc3362"],"template":["image/t38"]},"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"],"references":["IANA","RFC3302","{image/tiff=http://www.iana.org/assignments/media-types/image/tiff}"],"xrefs":{"rfc":["rfc3302"],"template":["image/tiff"]},"registered":true},{"content-type":"image/tiff-fx","encoding":"base64","references":["IANA","RFC3950","{image/tiff-fx=http://www.iana.org/assignments/media-types/image/tiff-fx}"],"xrefs":{"rfc":["rfc3950"],"template":["image/tiff-fx"]},"registered":true},{"content-type":"image/vnd.adobe.photoshop","friendly":{"en":"Photoshop Document"},"encoding":"base64","extensions":["psd"],"references":["IANA","[Kim_Scarborough]","{image/vnd.adobe.photoshop=http://www.iana.org/assignments/media-types/image/vnd.adobe.photoshop}"],"xrefs":{"person":["Kim_Scarborough"],"template":["image/vnd.adobe.photoshop"]},"registered":true},{"content-type":"image/vnd.airzip.accelerator.azv","encoding":"base64","references":["IANA","[Gary_Clueit]","{image/vnd.airzip.accelerator.azv=http://www.iana.org/assignments/media-types/image/vnd.airzip.accelerator.azv}"],"xrefs":{"person":["Gary_Clueit"],"template":["image/vnd.airzip.accelerator.azv"]},"registered":true},{"content-type":"image/vnd.cns.inf2","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{image/vnd.cns.inf2=http://www.iana.org/assignments/media-types/image/vnd.cns.inf2}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["image/vnd.cns.inf2"]},"registered":true},{"content-type":"image/vnd.dece.graphic","friendly":{"en":"DECE Graphic"},"encoding":"base64","extensions":["uvg","uvi","uvvg","uvvi"],"references":["IANA","[Michael_A_Dolan]","{image/vnd.dece.graphic=http://www.iana.org/assignments/media-types/image/vnd.dece.graphic}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["image/vnd.dece.graphic"]},"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"],"references":["IANA","[Leon_Bottou]","{image/vnd-djvu=http://www.iana.org/assignments/media-types/image/vnd-djvu}"],"xrefs":{"person":["Leon_Bottou"],"template":["image/vnd-djvu"]},"registered":true},{"content-type":"image/vnd.dvb.subtitle","friendly":{"en":"Close Captioning - Subtitle"},"encoding":"base64","extensions":["sub"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{image/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/image/vnd.dvb.subtitle}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["image/vnd.dvb.subtitle"]},"registered":true},{"content-type":"image/vnd.dwg","friendly":{"en":"DWG Drawing"},"encoding":"base64","extensions":["dwg"],"references":["IANA","[Jodi_Moline]","{image/vnd.dwg=http://www.iana.org/assignments/media-types/image/vnd.dwg}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd.dwg"]},"registered":true},{"content-type":"image/vnd.dxf","friendly":{"en":"AutoCAD DXF"},"encoding":"base64","extensions":["dxf"],"references":["IANA","[Jodi_Moline]","{image/vnd.dxf=http://www.iana.org/assignments/media-types/image/vnd.dxf}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd.dxf"]},"registered":true},{"content-type":"image/vnd.fastbidsheet","friendly":{"en":"FastBid Sheet"},"encoding":"base64","extensions":["fbs"],"references":["IANA","[Scott_Becker]","{image/vnd.fastbidsheet=http://www.iana.org/assignments/media-types/image/vnd.fastbidsheet}"],"xrefs":{"person":["Scott_Becker"],"template":["image/vnd.fastbidsheet"]},"registered":true},{"content-type":"image/vnd.fpx","friendly":{"en":"FlashPix"},"encoding":"base64","extensions":["fpx"],"references":["IANA","[Marc_Douglas_Spencer]","{image/vnd.fpx=http://www.iana.org/assignments/media-types/image/vnd.fpx}"],"xrefs":{"person":["Marc_Douglas_Spencer"],"template":["image/vnd.fpx"]},"registered":true},{"content-type":"image/vnd.fst","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fst"],"references":["IANA","[Arild_Fuldseth]","{image/vnd.fst=http://www.iana.org/assignments/media-types/image/vnd.fst}"],"xrefs":{"person":["Arild_Fuldseth"],"template":["image/vnd.fst"]},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-mmr","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["mmr"],"references":["IANA","[Masanori_Onda]","{image/vnd.fujixerox.edmics-mmr=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-mmr}"],"xrefs":{"person":["Masanori_Onda"],"template":["image/vnd.fujixerox.edmics-mmr"]},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-rlc","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["rlc"],"references":["IANA","[Masanori_Onda]","{image/vnd.fujixerox.edmics-rlc=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-rlc}"],"xrefs":{"person":["Masanori_Onda"],"template":["image/vnd.fujixerox.edmics-rlc"]},"registered":true},{"content-type":"image/vnd.globalgraphics.pgb","encoding":"base64","extensions":["pgb"],"references":["IANA","[Martin_Bailey]","{image/vnd.globalgraphics.pgb=http://www.iana.org/assignments/media-types/image/vnd.globalgraphics.pgb}"],"xrefs":{"person":["Martin_Bailey"],"template":["image/vnd.globalgraphics.pgb"]},"registered":true},{"content-type":"image/vnd.microsoft.icon","encoding":"base64","extensions":["ico"],"references":["IANA","[Simon_Butcher]","{image/vnd.microsoft.icon=http://www.iana.org/assignments/media-types/image/vnd.microsoft.icon}"],"xrefs":{"person":["Simon_Butcher"],"template":["image/vnd.microsoft.icon"]},"registered":true},{"content-type":"image/vnd.mix","encoding":"base64","references":["IANA","[Saveen_Reddy]","{image/vnd.mix=http://www.iana.org/assignments/media-types/image/vnd.mix}"],"xrefs":{"person":["Saveen_Reddy"],"template":["image/vnd.mix"]},"registered":true},{"content-type":"image/vnd.ms-modi","friendly":{"en":"Microsoft Document Imaging Format"},"encoding":"base64","extensions":["mdi"],"references":["IANA","[Gregory_Vaughan]","{image/vnd.ms-modi=http://www.iana.org/assignments/media-types/image/vnd.ms-modi}"],"xrefs":{"person":["Gregory_Vaughan"],"template":["image/vnd.ms-modi"]},"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"],"references":["IANA","[Marc_Douglas_Spencer]","{image/vnd.net-fpx=http://www.iana.org/assignments/media-types/image/vnd.net-fpx}"],"xrefs":{"person":["Marc_Douglas_Spencer"],"template":["image/vnd.net-fpx"]},"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","references":["IANA","[Randolph_Fritz]","[Greg_Ward]","{image/vnd.radiance=http://www.iana.org/assignments/media-types/image/vnd.radiance}"],"xrefs":{"person":["Greg_Ward","Randolph_Fritz"],"template":["image/vnd.radiance"]},"registered":true},{"content-type":"image/vnd.sealed.png","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealed-png=http://www.iana.org/assignments/media-types/image/vnd.sealed-png}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealed-png"]},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.gif","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealedmedia.softseal-gif=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-gif}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealedmedia.softseal-gif"]},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.jpg","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealedmedia.softseal-jpg=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-jpg}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealedmedia.softseal-jpg"]},"registered":true},{"content-type":"image/vnd.svf","encoding":"base64","references":["IANA","[Jodi_Moline]","{image/vnd-svf=http://www.iana.org/assignments/media-types/image/vnd-svf}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd-svf"]},"registered":true},{"content-type":"image/vnd.tencent.tap","encoding":"base64","references":["IANA","[Ni_Hui]","{image/vnd.tencent.tap=http://www.iana.org/assignments/media-types/image/vnd.tencent.tap}"],"xrefs":{"person":["Ni_Hui"],"template":["image/vnd.tencent.tap"]},"registered":true},{"content-type":"image/vnd.valve.source.texture","encoding":"base64","references":["IANA","[Henrik_Andersson]","{image/vnd.valve.source.texture=http://www.iana.org/assignments/media-types/image/vnd.valve.source.texture}"],"xrefs":{"person":["Henrik_Andersson"],"template":["image/vnd.valve.source.texture"]},"registered":true},{"content-type":"image/vnd.wap.wbmp","friendly":{"en":"WAP Bitamp (WBMP)"},"encoding":"base64","extensions":["wbmp"],"references":["IANA","[Peter_Stark]","{image/vnd-wap-wbmp=http://www.iana.org/assignments/media-types/image/vnd-wap-wbmp}"],"xrefs":{"person":["Peter_Stark"],"template":["image/vnd-wap-wbmp"]},"registered":true},{"content-type":"image/vnd.xiff","friendly":{"en":"eXtended Image File Format (XIFF)"},"encoding":"base64","extensions":["xif"],"references":["IANA","[Steven_Martin]","{image/vnd.xiff=http://www.iana.org/assignments/media-types/image/vnd.xiff}"],"xrefs":{"person":["Steven_Martin"],"template":["image/vnd.xiff"]},"registered":true},{"content-type":"image/vnd.zbrush.pcx","encoding":"base64","references":["IANA","[Chris_Charabaruk]","{image/vnd.zbrush.pcx=http://www.iana.org/assignments/media-types/image/vnd.zbrush.pcx}"],"xrefs":{"person":["Chris_Charabaruk"],"template":["image/vnd.zbrush.pcx"]},"registered":true},{"content-type":"image/webp","friendly":{"en":"WebP Image"},"encoding":"base64","extensions":["webp"],"references":["{WebP=https://developers.google.com/speed/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"],"references":["{XCF=http://git.gnome.org/browse/gimp/tree/devel-docs/xcf.txt}"],"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","references":["IANA","RFC3862","{message/CPIM=http://www.iana.org/assignments/media-types/message/CPIM}"],"xrefs":{"rfc":["rfc3862"],"template":["message/CPIM"]},"registered":true},{"content-type":"message/delivery-status","encoding":"base64","references":["IANA","RFC1894","{message/delivery-status=http://www.iana.org/assignments/media-types/message/delivery-status}"],"xrefs":{"rfc":["rfc1894"],"template":["message/delivery-status"]},"registered":true},{"content-type":"message/disposition-notification","encoding":"base64","references":["IANA","RFC3798","{message/disposition-notification=http://www.iana.org/assignments/media-types/message/disposition-notification}"],"xrefs":{"rfc":["rfc3798"],"template":["message/disposition-notification"]},"registered":true},{"content-type":"message/example","encoding":"base64","references":["IANA","RFC4735","{message/example=http://www.iana.org/assignments/media-types/message/example}"],"xrefs":{"rfc":["rfc4735"],"template":["message/example"]},"registered":true},{"content-type":"message/external-body","encoding":"8bit","references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/feedback-report","encoding":"base64","references":["IANA","RFC5965","{message/feedback-report=http://www.iana.org/assignments/media-types/message/feedback-report}"],"xrefs":{"rfc":["rfc5965"],"template":["message/feedback-report"]},"registered":true},{"content-type":"message/global","encoding":"base64","references":["IANA","RFC6532","{message/global=http://www.iana.org/assignments/media-types/message/global}"],"xrefs":{"rfc":["rfc6532"],"template":["message/global"]},"registered":true},{"content-type":"message/global-delivery-status","encoding":"base64","references":["IANA","RFC6533","{message/global-delivery-status=http://www.iana.org/assignments/media-types/message/global-delivery-status}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-delivery-status"]},"registered":true},{"content-type":"message/global-disposition-notification","encoding":"base64","references":["IANA","RFC6533","{message/global-disposition-notification=http://www.iana.org/assignments/media-types/message/global-disposition-notification}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-disposition-notification"]},"registered":true},{"content-type":"message/global-headers","encoding":"base64","references":["IANA","RFC6533","{message/global-headers=http://www.iana.org/assignments/media-types/message/global-headers}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-headers"]},"registered":true},{"content-type":"message/http","encoding":"base64","references":["IANA","RFC7230","{message/http=http://www.iana.org/assignments/media-types/message/http}"],"xrefs":{"rfc":["rfc7230"],"template":["message/http"]},"registered":true},{"content-type":"message/imdn+xml","encoding":"base64","references":["IANA","RFC5438","{message/imdn+xml=http://www.iana.org/assignments/media-types/message/imdn+xml}"],"xrefs":{"rfc":["rfc5438"],"template":["message/imdn+xml"]},"registered":true},{"content-type":"message/news","encoding":"8bit","obsolete":true,"references":["IANA","RFC5537","[Henry_Spencer]","{message/news=http://www.iana.org/assignments/media-types/message/news}"],"xrefs":{"rfc":["rfc5537"],"person":["Henry_Spencer"],"template":["message/news"],"notes":["- OBSOLETED by RFC5537"]},"registered":true},{"content-type":"message/partial","encoding":"8bit","references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/rfc822","friendly":{"en":"Email Message"},"encoding":"8bit","extensions":["eml","mime"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/s-http","encoding":"base64","references":["IANA","RFC2660","{message/s-http=http://www.iana.org/assignments/media-types/message/s-http}"],"xrefs":{"rfc":["rfc2660"],"template":["message/s-http"]},"registered":true},{"content-type":"message/sip","encoding":"base64","references":["IANA","RFC3261","{message/sip=http://www.iana.org/assignments/media-types/message/sip}"],"xrefs":{"rfc":["rfc3261"],"template":["message/sip"]},"registered":true},{"content-type":"message/sipfrag","encoding":"base64","references":["IANA","RFC3420","{message/sipfrag=http://www.iana.org/assignments/media-types/message/sipfrag}"],"xrefs":{"rfc":["rfc3420"],"template":["message/sipfrag"]},"registered":true},{"content-type":"message/tracking-status","encoding":"base64","references":["IANA","RFC3886","{message/tracking-status=http://www.iana.org/assignments/media-types/message/tracking-status}"],"xrefs":{"rfc":["rfc3886"],"template":["message/tracking-status"]},"registered":true},{"content-type":"message/vnd.si.simp","encoding":"base64","obsolete":true,"references":["IANA","[Nicholas_Parks_Young]","{message/vnd.si.simp=http://www.iana.org/assignments/media-types/message/vnd.si.simp}"],"xrefs":{"person":["Nicholas_Parks_Young"],"template":["message/vnd.si.simp"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"message/vnd.wfa.wsc","encoding":"base64","references":["IANA","[Mick_Conley]","{message/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/message/vnd.wfa.wsc}"],"xrefs":{"person":["Mick_Conley"],"template":["message/vnd.wfa.wsc"]},"registered":true},{"content-type":"model/example","encoding":"base64","references":["IANA","RFC4735","{model/example=http://www.iana.org/assignments/media-types/model/example}"],"xrefs":{"rfc":["rfc4735"],"template":["model/example"]},"registered":true},{"content-type":"model/iges","friendly":{"en":"Initial Graphics Exchange Specification (IGES)"},"encoding":"base64","extensions":["igs","iges"],"references":["IANA","[Curtis_Parks]","{model/iges=http://www.iana.org/assignments/media-types/model/iges}"],"xrefs":{"person":["Curtis_Parks"],"template":["model/iges"]},"registered":true},{"content-type":"model/mesh","friendly":{"en":"Mesh Data Type"},"encoding":"base64","extensions":["msh","mesh","silo"],"references":["IANA","RFC2077"],"xrefs":{"rfc":["rfc2077"]},"registered":true},{"content-type":"model/vnd.collada+xml","friendly":{"en":"COLLADA"},"encoding":"base64","extensions":["dae"],"references":["IANA","[James_Riordon]","{model/vnd.collada+xml=http://www.iana.org/assignments/media-types/model/vnd.collada+xml}"],"xrefs":{"person":["James_Riordon"],"template":["model/vnd.collada+xml"]},"registered":true},{"content-type":"model/vnd.dwf","friendly":{"en":"Autodesk Design Web Format (DWF)"},"encoding":"base64","extensions":["dwf"],"references":["IANA","[Jason_Pratt]","{model/vnd-dwf=http://www.iana.org/assignments/media-types/model/vnd-dwf}"],"xrefs":{"person":["Jason_Pratt"],"template":["model/vnd-dwf"]},"registered":true},{"content-type":"model/vnd.flatland.3dml","encoding":"base64","references":["IANA","[Michael_Powers]","{model/vnd.flatland.3dml=http://www.iana.org/assignments/media-types/model/vnd.flatland.3dml}"],"xrefs":{"person":["Michael_Powers"],"template":["model/vnd.flatland.3dml"]},"registered":true},{"content-type":"model/vnd.gdl","friendly":{"en":"Geometric Description Language (GDL)"},"encoding":"base64","extensions":["gdl"],"references":["IANA","[Attila_Babits]","{model/vnd.gdl=http://www.iana.org/assignments/media-types/model/vnd.gdl}"],"xrefs":{"person":["Attila_Babits"],"template":["model/vnd.gdl"]},"registered":true},{"content-type":"model/vnd.gs-gdl","encoding":"base64","references":["IANA","[Attila_Babits]","{model/vnd.gs-gdl=http://www.iana.org/assignments/media-types/model/vnd.gs-gdl}"],"xrefs":{"person":["Attila_Babits"],"template":["model/vnd.gs-gdl"]},"registered":true},{"content-type":"model/vnd.gtw","friendly":{"en":"Gen-Trix Studio"},"encoding":"base64","extensions":["gtw"],"references":["IANA","[Yutaka_Ozaki]","{model/vnd.gtw=http://www.iana.org/assignments/media-types/model/vnd.gtw}"],"xrefs":{"person":["Yutaka_Ozaki"],"template":["model/vnd.gtw"]},"registered":true},{"content-type":"model/vnd.moml+xml","encoding":"base64","references":["IANA","[Christopher_Brooks]","{model/vnd.moml+xml=http://www.iana.org/assignments/media-types/model/vnd.moml+xml}"],"xrefs":{"person":["Christopher_Brooks"],"template":["model/vnd.moml+xml"]},"registered":true},{"content-type":"model/vnd.mts","friendly":{"en":"Virtue MTS"},"encoding":"base64","extensions":["mts"],"references":["IANA","[Boris_Rabinovitch]","{model/vnd.mts=http://www.iana.org/assignments/media-types/model/vnd.mts}"],"xrefs":{"person":["Boris_Rabinovitch"],"template":["model/vnd.mts"]},"registered":true},{"content-type":"model/vnd.opengex","encoding":"base64","references":["IANA","[Eric_Lengyel]","{model/vnd.opengex=http://www.iana.org/assignments/media-types/model/vnd.opengex}"],"xrefs":{"person":["Eric_Lengyel"],"template":["model/vnd.opengex"]},"registered":true},{"content-type":"model/vnd.parasolid.transmit.binary","encoding":"base64","extensions":["x_b","xmt_bin"],"references":["IANA","[Parasolid]","{model/vnd.parasolid.transmit-binary=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-binary}"],"xrefs":{"person":["Parasolid"],"template":["model/vnd.parasolid.transmit-binary"]},"registered":true},{"content-type":"model/vnd.parasolid.transmit.text","encoding":"quoted-printable","extensions":["x_t","xmt_txt"],"references":["IANA","[Parasolid]","{model/vnd.parasolid.transmit-text=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-text}"],"xrefs":{"person":["Parasolid"],"template":["model/vnd.parasolid.transmit-text"]},"registered":true},{"content-type":"model/vnd.valve.source.compiled-map","encoding":"base64","references":["IANA","[Henrik_Andersson]","{model/vnd.valve.source.compiled-map=http://www.iana.org/assignments/media-types/model/vnd.valve.source.compiled-map}"],"xrefs":{"person":["Henrik_Andersson"],"template":["model/vnd.valve.source.compiled-map"]},"registered":true},{"content-type":"model/vnd.vtu","friendly":{"en":"Virtue VTU"},"encoding":"base64","extensions":["vtu"],"references":["IANA","[Boris_Rabinovitch]","{model/vnd.vtu=http://www.iana.org/assignments/media-types/model/vnd.vtu}"],"xrefs":{"person":["Boris_Rabinovitch"],"template":["model/vnd.vtu"]},"registered":true},{"content-type":"model/vrml","friendly":{"en":"Virtual Reality Modeling Language"},"encoding":"base64","extensions":["wrl","vrml"],"references":["IANA","RFC2077"],"xrefs":{"rfc":["rfc2077"]},"registered":true},{"content-type":"model/x3d+binary","encoding":"base64","extensions":["x3db","x3dbz"],"registered":false},{"content-type":"model/x3d+fastinfoset","encoding":"base64","references":["IANA","[Web3D_X3D]","{model/x3d+fastinfoset=http://www.iana.org/assignments/media-types/model/x3d+fastinfoset}"],"xrefs":{"person":["Web3D_X3D"],"template":["model/x3d+fastinfoset"]},"registered":true},{"content-type":"model/x3d+vrml","encoding":"base64","extensions":["x3dv","x3dvz"],"registered":false},{"content-type":"model/x3d+xml","encoding":"base64","extensions":["x3d","x3dz"],"references":["IANA","[Web3D]","[Web3D_X3D]","{model/x3d+xml=http://www.iana.org/assignments/media-types/model/x3d+xml}"],"xrefs":{"person":["Web3D","Web3D_X3D"],"template":["model/x3d+xml"]},"registered":true},{"content-type":"model/x3d-vrml","encoding":"base64","references":["IANA","[Web3D]","[Web3D_X3D]","{model/x3d-vrml=http://www.iana.org/assignments/media-types/model/x3d-vrml}"],"xrefs":{"person":["Web3D","Web3D_X3D"],"template":["model/x3d-vrml"]},"registered":true},{"content-type":"multipart/alternative","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/appledouble","encoding":"8bit","references":["IANA","[Patrik_Faltstrom]","{multipart/appledouble=http://www.iana.org/assignments/media-types/multipart/appledouble}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["multipart/appledouble"]},"registered":true},{"content-type":"multipart/byteranges","encoding":"base64","references":["IANA","RFC7233","{multipart/byteranges=http://www.iana.org/assignments/media-types/multipart/byteranges}"],"xrefs":{"rfc":["rfc7233"],"template":["multipart/byteranges"]},"registered":true},{"content-type":"multipart/digest","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/encrypted","encoding":"base64","references":["IANA","RFC1847","{multipart/encrypted=http://www.iana.org/assignments/media-types/multipart/encrypted}"],"xrefs":{"rfc":["rfc1847"],"template":["multipart/encrypted"]},"registered":true},{"content-type":"multipart/example","encoding":"base64","references":["IANA","RFC4735","{multipart/example=http://www.iana.org/assignments/media-types/multipart/example}"],"xrefs":{"rfc":["rfc4735"],"template":["multipart/example"]},"registered":true},{"content-type":"multipart/form-data","encoding":"base64","references":["IANA","DRAFT:draft-ietf-appsawg-multipart-form-data-11","{multipart/form-data=http://www.iana.org/assignments/media-types/multipart/form-data}"],"xrefs":{"draft":["RFC-ietf-appsawg-multipart-form-data-11"],"template":["multipart/form-data"]},"registered":true},{"content-type":"multipart/header-set","encoding":"base64","references":["IANA","[Dave_Crocker]","{multipart/header-set=http://www.iana.org/assignments/media-types/multipart/header-set}"],"xrefs":{"person":["Dave_Crocker"],"template":["multipart/header-set"]},"registered":true},{"content-type":"multipart/mixed","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/parallel","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/related","encoding":"base64","references":["IANA","RFC2387","{multipart/related=http://www.iana.org/assignments/media-types/multipart/related}"],"xrefs":{"rfc":["rfc2387"],"template":["multipart/related"]},"registered":true},{"content-type":"multipart/report","encoding":"base64","references":["IANA","RFC6522","{multipart/report=http://www.iana.org/assignments/media-types/multipart/report}"],"xrefs":{"rfc":["rfc6522"],"template":["multipart/report"]},"registered":true},{"content-type":"multipart/signed","encoding":"base64","references":["IANA","RFC1847","{multipart/signed=http://www.iana.org/assignments/media-types/multipart/signed}"],"xrefs":{"rfc":["rfc1847"],"template":["multipart/signed"]},"registered":true},{"content-type":"multipart/voice-message","encoding":"base64","references":["IANA","RFC2421","RFC2423","{multipart/voice-message=http://www.iana.org/assignments/media-types/multipart/voice-message}"],"xrefs":{"rfc":["rfc2421","rfc2423"],"template":["multipart/voice-message"]},"registered":true},{"content-type":"multipart/x-gzip","encoding":"base64","registered":false},{"content-type":"multipart/x-mixed-replace","encoding":"base64","references":["IANA","[W3C]","[Robin_Berjon]","{multipart/x-mixed-replace=http://www.iana.org/assignments/media-types/multipart/x-mixed-replace}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["multipart/x-mixed-replace"]},"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","references":["IANA","RFC6015","{text/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/text/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["text/1d-interleaved-parityfec"]},"registered":true},{"content-type":"text/cache-manifest","encoding":"quoted-printable","extensions":["appcache","manifest"],"references":["IANA","[W3C]","[Robin_Berjon]","{text/cache-manifest=http://www.iana.org/assignments/media-types/text/cache-manifest}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["text/cache-manifest"]},"registered":true},{"content-type":"text/calendar","friendly":{"en":"iCalendar"},"encoding":"quoted-printable","extensions":["ics","ifb"],"references":["IANA","RFC5545","{text/calendar=http://www.iana.org/assignments/media-types/text/calendar}"],"xrefs":{"rfc":["rfc5545"],"template":["text/calendar"]},"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"],"references":["IANA","RFC2318","{text/css=http://www.iana.org/assignments/media-types/text/css}"],"xrefs":{"rfc":["rfc2318"],"template":["text/css"]},"registered":true},{"content-type":"text/csv","friendly":{"en":"Comma-Separated Values"},"encoding":"8bit","extensions":["csv"],"references":["IANA","RFC4180","RFC7111","{text/csv=http://www.iana.org/assignments/media-types/text/csv}"],"xrefs":{"rfc":["rfc4180","rfc7111"],"template":["text/csv"]},"registered":true},{"content-type":"text/csv-schema","encoding":"quoted-printable","references":["IANA","[National_Archives_UK]","[David_Underdown]","{text/csv-schema=http://www.iana.org/assignments/media-types/text/csv-schema}"],"xrefs":{"person":["David_Underdown","National_Archives_UK"],"template":["text/csv-schema"]},"registered":true},{"content-type":"text/directory","encoding":"quoted-printable","obsolete":true,"references":["IANA","RFC2425","RFC6350","{text/directory=http://www.iana.org/assignments/media-types/text/directory}"],"xrefs":{"rfc":["rfc2425","rfc6350"],"template":["text/directory"],"notes":["- DEPRECATED by RFC6350"]},"registered":true},{"content-type":"text/dns","encoding":"quoted-printable","references":["IANA","RFC4027","{text/dns=http://www.iana.org/assignments/media-types/text/dns}"],"xrefs":{"rfc":["rfc4027"],"template":["text/dns"]},"registered":true},{"content-type":"text/ecmascript","encoding":"quoted-printable","obsolete":true,"use-instead":"application/ecmascript","references":["IANA","RFC4329","{text/ecmascript=http://www.iana.org/assignments/media-types/text/ecmascript}"],"xrefs":{"rfc":["rfc4329"],"template":["text/ecmascript"],"notes":["- OBSOLETED in favor of application/ecmascript"]},"registered":true},{"content-type":"text/encaprtp","encoding":"quoted-printable","references":["IANA","RFC6849","{text/encaprtp=http://www.iana.org/assignments/media-types/text/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["text/encaprtp"]},"registered":true},{"content-type":"text/enriched","encoding":"quoted-printable","references":["IANA","RFC1896"],"xrefs":{"rfc":["rfc1896"]},"registered":true},{"content-type":"text/example","encoding":"quoted-printable","references":["IANA","RFC4735","{text/example=http://www.iana.org/assignments/media-types/text/example}"],"xrefs":{"rfc":["rfc4735"],"template":["text/example"]},"registered":true},{"content-type":"text/fwdred","encoding":"quoted-printable","references":["IANA","RFC6354","{text/fwdred=http://www.iana.org/assignments/media-types/text/fwdred}"],"xrefs":{"rfc":["rfc6354"],"template":["text/fwdred"]},"registered":true},{"content-type":"text/grammar-ref-list","encoding":"quoted-printable","references":["IANA","RFC6787","{text/grammar-ref-list=http://www.iana.org/assignments/media-types/text/grammar-ref-list}"],"xrefs":{"rfc":["rfc6787"],"template":["text/grammar-ref-list"]},"registered":true},{"content-type":"text/html","friendly":{"en":"HyperText Markup Language (HTML)"},"encoding":"8bit","extensions":["html","htm","htmlx","shtml","htx"],"references":["IANA","[W3C]","[Robin_Berjon]","{text/html=http://www.iana.org/assignments/media-types/text/html}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["text/html"]},"registered":true},{"content-type":"text/javascript","encoding":"quoted-printable","extensions":["js"],"obsolete":true,"use-instead":"application/javascript","references":["IANA","RFC4329","{text/javascript=http://www.iana.org/assignments/media-types/text/javascript}"],"xrefs":{"rfc":["rfc4329"],"template":["text/javascript"],"notes":["- OBSOLETED in favor of application/javascript"]},"registered":true},{"content-type":"text/jcr-cnd","encoding":"quoted-printable","references":["IANA","[Peeter_Piegaze]","{text/jcr-cnd=http://www.iana.org/assignments/media-types/text/jcr-cnd}"],"xrefs":{"person":["Peeter_Piegaze"],"template":["text/jcr-cnd"]},"registered":true},{"content-type":"text/markdown","encoding":"quoted-printable","references":["IANA","DRAFT:draft-ietf-appsawg-text-markdown","{text/markdown=http://www.iana.org/assignments/media-types/text/markdown}"],"xrefs":{"draft":["draft-ietf-appsawg-text-markdown"],"template":["text/markdown"],"notes":["(TEMPORARY - registered 2014-11-11, expires 2015-11-11)"]},"registered":true},{"content-type":"text/mizar","encoding":"quoted-printable","references":["IANA","[Jesse_Alama]","{text/mizar=http://www.iana.org/assignments/media-types/text/mizar}"],"xrefs":{"person":["Jesse_Alama"],"template":["text/mizar"]},"registered":true},{"content-type":"text/n3","friendly":{"en":"Notation3"},"encoding":"quoted-printable","extensions":["n3"],"references":["IANA","[W3C]","[Eric_Prudhommeaux]","{text/n3=http://www.iana.org/assignments/media-types/text/n3}"],"xrefs":{"person":["Eric_Prudhommeaux","W3C"],"template":["text/n3"]},"registered":true},{"content-type":"text/parameters","encoding":"quoted-printable","references":["IANA","DRAFT:draft-ietf-mmusic-rfc2326bis-40","{text/parameters=http://www.iana.org/assignments/media-types/text/parameters}"],"xrefs":{"draft":["RFC-ietf-mmusic-rfc2326bis-40"],"template":["text/parameters"]},"registered":true},{"content-type":"text/parityfec","encoding":"quoted-printable","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"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"],"references":["IANA","RFC2046","RFC3676","RFC5147"],"xrefs":{"rfc":["rfc2046","rfc3676","rfc5147"]},"registered":true},{"content-type":"text/provenance-notation","encoding":"quoted-printable","references":["IANA","[W3C]","[Ivan_Herman]","{text/provenance-notation=http://www.iana.org/assignments/media-types/text/provenance-notation}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["text/provenance-notation"]},"registered":true},{"content-type":"text/prs.fallenstein.rst","encoding":"quoted-printable","extensions":["rst"],"references":["IANA","[Benja_Fallenstein]","{text/prs.fallenstein.rst=http://www.iana.org/assignments/media-types/text/prs.fallenstein.rst}"],"xrefs":{"person":["Benja_Fallenstein"],"template":["text/prs.fallenstein.rst"]},"registered":true},{"content-type":"text/prs.lines.tag","friendly":{"en":"PRS Lines Tag"},"encoding":"quoted-printable","extensions":["dsc"],"references":["IANA","[John_Lines]","{text/prs.lines.tag=http://www.iana.org/assignments/media-types/text/prs.lines.tag}"],"xrefs":{"person":["John_Lines"],"template":["text/prs.lines.tag"]},"registered":true},{"content-type":"text/raptorfec","encoding":"quoted-printable","references":["IANA","RFC6682","{text/raptorfec=http://www.iana.org/assignments/media-types/text/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["text/raptorfec"]},"registered":true},{"content-type":"text/RED","encoding":"quoted-printable","references":["IANA","RFC4102","{text/RED=http://www.iana.org/assignments/media-types/text/RED}"],"xrefs":{"rfc":["rfc4102"],"template":["text/RED"]},"registered":true},{"content-type":"text/rfc822-headers","encoding":"quoted-printable","references":["IANA","RFC6522","{text/rfc822-headers=http://www.iana.org/assignments/media-types/text/rfc822-headers}"],"xrefs":{"rfc":["rfc6522"],"template":["text/rfc822-headers"]},"registered":true},{"content-type":"text/richtext","friendly":{"en":"Rich Text Format (RTF)"},"encoding":"8bit","extensions":["rtx"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"text/rtf","encoding":"8bit","extensions":["rtf"],"references":["IANA","[Paul_Lindner]","{text/rtf=http://www.iana.org/assignments/media-types/text/rtf}"],"xrefs":{"person":["Paul_Lindner"],"template":["text/rtf"]},"registered":true},{"content-type":"text/rtp-enc-aescm128","encoding":"quoted-printable","references":["IANA","[ThreeGPP]","{text/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/text/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["text/rtp-enc-aescm128"]},"registered":true},{"content-type":"text/rtploopback","encoding":"quoted-printable","references":["IANA","RFC6849","{text/rtploopback=http://www.iana.org/assignments/media-types/text/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["text/rtploopback"]},"registered":true},{"content-type":"text/rtx","encoding":"quoted-printable","references":["IANA","RFC4588","{text/rtx=http://www.iana.org/assignments/media-types/text/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["text/rtx"]},"registered":true},{"content-type":"text/sgml","friendly":{"en":"Standard Generalized Markup Language (SGML)"},"encoding":"quoted-printable","extensions":["sgml","sgm"],"references":["IANA","RFC1874","{text/SGML=http://www.iana.org/assignments/media-types/text/SGML}"],"xrefs":{"rfc":["rfc1874"],"template":["text/SGML"]},"registered":true},{"content-type":"text/t140","encoding":"quoted-printable","references":["IANA","RFC4103","{text/t140=http://www.iana.org/assignments/media-types/text/t140}"],"xrefs":{"rfc":["rfc4103"],"template":["text/t140"]},"registered":true},{"content-type":"text/tab-separated-values","friendly":{"en":"Tab Separated Values"},"encoding":"quoted-printable","extensions":["tsv"],"references":["IANA","[Paul_Lindner]","{text/tab-separated-values=http://www.iana.org/assignments/media-types/text/tab-separated-values}"],"xrefs":{"person":["Paul_Lindner"],"template":["text/tab-separated-values"]},"registered":true},{"content-type":"text/troff","friendly":{"en":"troff"},"encoding":"8bit","extensions":["t","tr","roff","troff","man","me","ms"],"references":["IANA","RFC4263","{text/troff=http://www.iana.org/assignments/media-types/text/troff}"],"xrefs":{"rfc":["rfc4263"],"template":["text/troff"]},"registered":true},{"content-type":"text/turtle","friendly":{"en":"Turtle (Terse RDF Triple Language)"},"encoding":"quoted-printable","extensions":["ttl"],"references":["IANA","[W3C]","[Eric_Prudhommeaux]","{text/turtle=http://www.iana.org/assignments/media-types/text/turtle}"],"xrefs":{"person":["Eric_Prudhommeaux","W3C"],"template":["text/turtle"]},"registered":true},{"content-type":"text/ulpfec","encoding":"quoted-printable","references":["IANA","RFC5109","{text/ulpfec=http://www.iana.org/assignments/media-types/text/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["text/ulpfec"]},"registered":true},{"content-type":"text/uri-list","friendly":{"en":"URI Resolution Services"},"encoding":"quoted-printable","extensions":["uri","uris","urls"],"references":["IANA","RFC2483","{text/uri-list=http://www.iana.org/assignments/media-types/text/uri-list}"],"xrefs":{"rfc":["rfc2483"],"template":["text/uri-list"]},"registered":true},{"content-type":"text/vcard","encoding":"quoted-printable","extensions":["vcard"],"references":["IANA","RFC6350","{text/vcard=http://www.iana.org/assignments/media-types/text/vcard}"],"xrefs":{"rfc":["rfc6350"],"template":["text/vcard"]},"registered":true,"signature":true},{"content-type":"text/vnd.a","encoding":"quoted-printable","references":["IANA","[Regis_Dehoux]","{text/vnd-a=http://www.iana.org/assignments/media-types/text/vnd-a}"],"xrefs":{"person":["Regis_Dehoux"],"template":["text/vnd-a"]},"registered":true},{"content-type":"text/vnd.abc","encoding":"quoted-printable","references":["IANA","[Steve_Allen]","{text/vnd.abc=http://www.iana.org/assignments/media-types/text/vnd.abc}"],"xrefs":{"person":["Steve_Allen"],"template":["text/vnd.abc"]},"registered":true},{"content-type":"text/vnd.curl","friendly":{"en":"Curl - Applet"},"encoding":"quoted-printable","extensions":["curl"],"references":["IANA","[Robert_Byrnes]","{text/vnd-curl=http://www.iana.org/assignments/media-types/text/vnd-curl}"],"xrefs":{"person":["Robert_Byrnes"],"template":["text/vnd-curl"]},"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","references":["IANA","[Charles_Plessy]","{text/vnd.debian.copyright=http://www.iana.org/assignments/media-types/text/vnd.debian.copyright}"],"xrefs":{"person":["Charles_Plessy"],"template":["text/vnd.debian.copyright"]},"registered":true},{"content-type":"text/vnd.DMClientScript","encoding":"quoted-printable","references":["IANA","[Dan_Bradley]","{text/vnd.DMClientScript=http://www.iana.org/assignments/media-types/text/vnd.DMClientScript}"],"xrefs":{"person":["Dan_Bradley"],"template":["text/vnd.DMClientScript"]},"registered":true},{"content-type":"text/vnd.dvb.subtitle","encoding":"quoted-printable","extensions":["sub"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{text/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/text/vnd.dvb.subtitle}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["text/vnd.dvb.subtitle"]},"registered":true},{"content-type":"text/vnd.esmertec.theme-descriptor","encoding":"quoted-printable","references":["IANA","[Stefan_Eilemann]","{text/vnd.esmertec.theme-descriptor=http://www.iana.org/assignments/media-types/text/vnd.esmertec.theme-descriptor}"],"xrefs":{"person":["Stefan_Eilemann"],"template":["text/vnd.esmertec.theme-descriptor"]},"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"],"references":["IANA","[John-Mark_Gurney]","{text/vnd.fly=http://www.iana.org/assignments/media-types/text/vnd.fly}"],"xrefs":{"person":["John-Mark_Gurney"],"template":["text/vnd.fly"]},"registered":true},{"content-type":"text/vnd.fmi.flexstor","friendly":{"en":"FLEXSTOR"},"encoding":"quoted-printable","extensions":["flx"],"references":["IANA","[Kari_E._Hurtta]","{text/vnd.fmi.flexstor=http://www.iana.org/assignments/media-types/text/vnd.fmi.flexstor}"],"xrefs":{"person":["Kari_E._Hurtta"],"template":["text/vnd.fmi.flexstor"]},"registered":true},{"content-type":"text/vnd.graphviz","friendly":{"en":"Graphviz"},"encoding":"quoted-printable","extensions":["gv"],"references":["IANA","[John_Ellson]","{text/vnd.graphviz=http://www.iana.org/assignments/media-types/text/vnd.graphviz}"],"xrefs":{"person":["John_Ellson"],"template":["text/vnd.graphviz"]},"registered":true},{"content-type":"text/vnd.in3d.3dml","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["3dml"],"references":["IANA","[Michael_Powers]","{text/vnd.in3d.3dml=http://www.iana.org/assignments/media-types/text/vnd.in3d.3dml}"],"xrefs":{"person":["Michael_Powers"],"template":["text/vnd.in3d.3dml"]},"registered":true},{"content-type":"text/vnd.in3d.spot","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["spot"],"references":["IANA","[Michael_Powers]","{text/vnd.in3d.spot=http://www.iana.org/assignments/media-types/text/vnd.in3d.spot}"],"xrefs":{"person":["Michael_Powers"],"template":["text/vnd.in3d.spot"]},"registered":true},{"content-type":"text/vnd.IPTC.NewsML","encoding":"quoted-printable","references":["IANA","[IPTC]","{text/vnd.IPTC.NewsML=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NewsML}"],"xrefs":{"person":["IPTC"],"template":["text/vnd.IPTC.NewsML"]},"registered":true},{"content-type":"text/vnd.IPTC.NITF","encoding":"quoted-printable","references":["IANA","[IPTC]","{text/vnd.IPTC.NITF=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NITF}"],"xrefs":{"person":["IPTC"],"template":["text/vnd.IPTC.NITF"]},"registered":true},{"content-type":"text/vnd.latex-z","encoding":"quoted-printable","references":["IANA","[Mikusiak_Lubos]","{text/vnd.latex-z=http://www.iana.org/assignments/media-types/text/vnd.latex-z}"],"xrefs":{"person":["Mikusiak_Lubos"],"template":["text/vnd.latex-z"]},"registered":true},{"content-type":"text/vnd.motorola.reflex","encoding":"quoted-printable","references":["IANA","[Mark_Patton]","{text/vnd.motorola.reflex=http://www.iana.org/assignments/media-types/text/vnd.motorola.reflex}"],"xrefs":{"person":["Mark_Patton"],"template":["text/vnd.motorola.reflex"]},"registered":true},{"content-type":"text/vnd.ms-mediapackage","encoding":"quoted-printable","references":["IANA","[Jan_Nelson]","{text/vnd.ms-mediapackage=http://www.iana.org/assignments/media-types/text/vnd.ms-mediapackage}"],"xrefs":{"person":["Jan_Nelson"],"template":["text/vnd.ms-mediapackage"]},"registered":true},{"content-type":"text/vnd.net2phone.commcenter.command","encoding":"quoted-printable","extensions":["ccc"],"references":["IANA","[Feiyu_Xie]","{text/vnd.net2phone.commcenter.command=http://www.iana.org/assignments/media-types/text/vnd.net2phone.commcenter.command}"],"xrefs":{"person":["Feiyu_Xie"],"template":["text/vnd.net2phone.commcenter.command"]},"registered":true},{"content-type":"text/vnd.radisys.msml-basic-layout","encoding":"quoted-printable","references":["IANA","RFC5707","{text/vnd.radisys.msml-basic-layout=http://www.iana.org/assignments/media-types/text/vnd.radisys.msml-basic-layout}"],"xrefs":{"rfc":["rfc5707"],"template":["text/vnd.radisys.msml-basic-layout"]},"registered":true},{"content-type":"text/vnd.si.uricatalogue","encoding":"quoted-printable","obsolete":true,"references":["IANA","[Nicholas_Parks_Young]","{text/vnd.si.uricatalogue=http://www.iana.org/assignments/media-types/text/vnd.si.uricatalogue}"],"xrefs":{"person":["Nicholas_Parks_Young"],"template":["text/vnd.si.uricatalogue"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"text/vnd.sun.j2me.app-descriptor","friendly":{"en":"J2ME App Descriptor"},"encoding":"8bit","extensions":["jad"],"references":["IANA","[Gary_Adams]","{text/vnd.sun.j2me.app-descriptor=http://www.iana.org/assignments/media-types/text/vnd.sun.j2me.app-descriptor}"],"xrefs":{"person":["Gary_Adams"],"template":["text/vnd.sun.j2me.app-descriptor"]},"registered":true},{"content-type":"text/vnd.trolltech.linguist","encoding":"quoted-printable","references":["IANA","[David_Lee_Lambert]","{text/vnd.trolltech.linguist=http://www.iana.org/assignments/media-types/text/vnd.trolltech.linguist}"],"xrefs":{"person":["David_Lee_Lambert"],"template":["text/vnd.trolltech.linguist"]},"registered":true},{"content-type":"text/vnd.wap.si","encoding":"quoted-printable","extensions":["si"],"references":["IANA","[WAP-Forum]","{text/vnd.wap.si=http://www.iana.org/assignments/media-types/text/vnd.wap.si}"],"xrefs":{"person":["WAP-Forum"],"template":["text/vnd.wap.si"]},"registered":true},{"content-type":"text/vnd.wap.sl","encoding":"quoted-printable","extensions":["sl"],"references":["IANA","[WAP-Forum]","{text/vnd.wap.sl=http://www.iana.org/assignments/media-types/text/vnd.wap.sl}"],"xrefs":{"person":["WAP-Forum"],"template":["text/vnd.wap.sl"]},"registered":true},{"content-type":"text/vnd.wap.wml","friendly":{"en":"Wireless Markup Language (WML)"},"encoding":"quoted-printable","extensions":["wml"],"references":["IANA","[Peter_Stark]","{text/vnd.wap-wml=http://www.iana.org/assignments/media-types/text/vnd.wap-wml}"],"xrefs":{"person":["Peter_Stark"],"template":["text/vnd.wap-wml"]},"registered":true},{"content-type":"text/vnd.wap.wmlscript","friendly":{"en":"Wireless Markup Language Script (WMLScript)"},"encoding":"quoted-printable","extensions":["wmls"],"references":["IANA","[Peter_Stark]","{text/vnd.wap.wmlscript=http://www.iana.org/assignments/media-types/text/vnd.wap.wmlscript}"],"xrefs":{"person":["Peter_Stark"],"template":["text/vnd.wap.wmlscript"]},"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"],"references":["IANA","RFC7303","{text/xml=http://www.iana.org/assignments/media-types/text/xml}"],"xrefs":{"rfc":["rfc7303"],"template":["text/xml"]},"registered":true},{"content-type":"text/xml-external-parsed-entity","encoding":"quoted-printable","references":["IANA","RFC7303","{text/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/text/xml-external-parsed-entity}"],"xrefs":{"rfc":["rfc7303"],"template":["text/xml-external-parsed-entity"]},"registered":true},{"content-type":"video/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{video/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/video/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["video/1d-interleaved-parityfec"]},"registered":true},{"content-type":"video/3gpp","friendly":{"en":"3GP"},"encoding":"base64","extensions":["3gp","3gpp"],"references":["IANA","RFC3839","RFC6381","{video/3gpp=http://www.iana.org/assignments/media-types/video/3gpp}"],"xrefs":{"rfc":["rfc3839","rfc6381"],"template":["video/3gpp"]},"registered":true},{"content-type":"video/3gpp-tt","encoding":"base64","references":["IANA","RFC4396","{video/3gpp-tt=http://www.iana.org/assignments/media-types/video/3gpp-tt}"],"xrefs":{"rfc":["rfc4396"],"template":["video/3gpp-tt"]},"registered":true},{"content-type":"video/3gpp2","friendly":{"en":"3GP2"},"encoding":"base64","extensions":["3g2","3gpp2"],"references":["IANA","RFC4393","RFC6381","{video/3gpp2=http://www.iana.org/assignments/media-types/video/3gpp2}"],"xrefs":{"rfc":["rfc4393","rfc6381"],"template":["video/3gpp2"]},"registered":true},{"content-type":"video/BMPEG","encoding":"base64","references":["IANA","RFC3555","{video/BMPEG=http://www.iana.org/assignments/media-types/video/BMPEG}"],"xrefs":{"rfc":["rfc3555"],"template":["video/BMPEG"]},"registered":true},{"content-type":"video/BT656","encoding":"base64","references":["IANA","RFC3555","{video/BT656=http://www.iana.org/assignments/media-types/video/BT656}"],"xrefs":{"rfc":["rfc3555"],"template":["video/BT656"]},"registered":true},{"content-type":"video/CelB","encoding":"base64","references":["IANA","RFC3555","{video/CelB=http://www.iana.org/assignments/media-types/video/CelB}"],"xrefs":{"rfc":["rfc3555"],"template":["video/CelB"]},"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"],"references":["IANA","RFC6469","{video/DV=http://www.iana.org/assignments/media-types/video/DV}"],"xrefs":{"rfc":["rfc6469"],"template":["video/DV"]},"registered":true},{"content-type":"video/encaprtp","encoding":"base64","references":["IANA","RFC6849","{video/encaprtp=http://www.iana.org/assignments/media-types/video/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["video/encaprtp"]},"registered":true},{"content-type":"video/example","encoding":"base64","references":["IANA","RFC4735","{video/example=http://www.iana.org/assignments/media-types/video/example}"],"xrefs":{"rfc":["rfc4735"],"template":["video/example"]},"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"],"references":["IANA","RFC4587","{video/H261=http://www.iana.org/assignments/media-types/video/H261}"],"xrefs":{"rfc":["rfc4587"],"template":["video/H261"]},"registered":true},{"content-type":"video/H263","friendly":{"en":"H.263"},"encoding":"base64","extensions":["h263"],"references":["IANA","RFC3555","{video/H263=http://www.iana.org/assignments/media-types/video/H263}"],"xrefs":{"rfc":["rfc3555"],"template":["video/H263"]},"registered":true},{"content-type":"video/H263-1998","encoding":"base64","references":["IANA","RFC4629","{video/H263-1998=http://www.iana.org/assignments/media-types/video/H263-1998}"],"xrefs":{"rfc":["rfc4629"],"template":["video/H263-1998"]},"registered":true},{"content-type":"video/H263-2000","encoding":"base64","references":["IANA","RFC4629","{video/H263-2000=http://www.iana.org/assignments/media-types/video/H263-2000}"],"xrefs":{"rfc":["rfc4629"],"template":["video/H263-2000"]},"registered":true},{"content-type":"video/H264","friendly":{"en":"H.264"},"encoding":"base64","extensions":["h264"],"references":["IANA","RFC6184","{video/H264=http://www.iana.org/assignments/media-types/video/H264}"],"xrefs":{"rfc":["rfc6184"],"template":["video/H264"]},"registered":true},{"content-type":"video/H264-RCDO","encoding":"base64","references":["IANA","RFC6185","{video/H264-RCDO=http://www.iana.org/assignments/media-types/video/H264-RCDO}"],"xrefs":{"rfc":["rfc6185"],"template":["video/H264-RCDO"]},"registered":true},{"content-type":"video/H264-SVC","encoding":"base64","references":["IANA","RFC6190","{video/H264-SVC=http://www.iana.org/assignments/media-types/video/H264-SVC}"],"xrefs":{"rfc":["rfc6190"],"template":["video/H264-SVC"]},"registered":true},{"content-type":"video/iso.segment","encoding":"base64","references":["IANA","[David_Singer]","[ISO-IEC_JTC1]","{video/iso.segment=http://www.iana.org/assignments/media-types/video/iso.segment}"],"xrefs":{"person":["David_Singer","ISO-IEC_JTC1"],"template":["video/iso.segment"]},"registered":true},{"content-type":"video/JPEG","friendly":{"en":"JPGVideo"},"encoding":"base64","extensions":["jpgv"],"references":["IANA","RFC3555","{video/JPEG=http://www.iana.org/assignments/media-types/video/JPEG}"],"xrefs":{"rfc":["rfc3555"],"template":["video/JPEG"]},"registered":true},{"content-type":"video/jpeg2000","encoding":"base64","references":["IANA","RFC5371","RFC5372","{video/jpeg2000=http://www.iana.org/assignments/media-types/video/jpeg2000}"],"xrefs":{"rfc":["rfc5371","rfc5372"],"template":["video/jpeg2000"]},"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"],"references":["IANA","RFC3745","{video/mj2=http://www.iana.org/assignments/media-types/video/mj2}"],"xrefs":{"rfc":["rfc3745"],"template":["video/mj2"]},"registered":true},{"content-type":"video/MP1S","encoding":"base64","references":["IANA","RFC3555","{video/MP1S=http://www.iana.org/assignments/media-types/video/MP1S}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP1S"]},"registered":true},{"content-type":"video/MP2P","encoding":"base64","references":["IANA","RFC3555","{video/MP2P=http://www.iana.org/assignments/media-types/video/MP2P}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP2P"]},"registered":true},{"content-type":"video/MP2T","encoding":"base64","extensions":["ts"],"references":["IANA","RFC3555","{video/MP2T=http://www.iana.org/assignments/media-types/video/MP2T}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP2T"]},"registered":true},{"content-type":"video/mp4","friendly":{"en":"MPEG-4 Video"},"encoding":"base64","extensions":["mp4","mpg4","f4v","f4p","mp4v"],"references":["IANA","RFC4337","RFC6381","{video/mp4=http://www.iana.org/assignments/media-types/video/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["video/mp4"]},"registered":true},{"content-type":"video/MP4V-ES","encoding":"base64","references":["IANA","RFC6416","{video/MP4V-ES=http://www.iana.org/assignments/media-types/video/MP4V-ES}"],"xrefs":{"rfc":["rfc6416"],"template":["video/MP4V-ES"]},"registered":true},{"content-type":"video/mpeg","friendly":{"en":"MPEG Video"},"encoding":"base64","extensions":["mp2","mp3g","mpe","mpeg","mpg","m1v","m2v"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"video/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","{video/mpeg4-generic=http://www.iana.org/assignments/media-types/video/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640"],"template":["video/mpeg4-generic"]},"registered":true},{"content-type":"video/MPV","encoding":"base64","references":["IANA","RFC3555","{video/MPV=http://www.iana.org/assignments/media-types/video/MPV}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MPV"]},"registered":true},{"content-type":"video/nv","encoding":"base64","references":["IANA","RFC4856","{video/nv=http://www.iana.org/assignments/media-types/video/nv}"],"xrefs":{"rfc":["rfc4856"],"template":["video/nv"]},"registered":true},{"content-type":"video/ogg","friendly":{"en":"Ogg Video"},"encoding":"base64","extensions":["ogg","ogv"],"references":["IANA","RFC5334","{video/ogg=http://www.iana.org/assignments/media-types/video/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["video/ogg"]},"registered":true},{"content-type":"video/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"video/pointer","encoding":"base64","references":["IANA","RFC2862","{video/pointer=http://www.iana.org/assignments/media-types/video/pointer}"],"xrefs":{"rfc":["rfc2862"],"template":["video/pointer"]},"registered":true},{"content-type":"video/quicktime","friendly":{"en":"Quicktime Video"},"encoding":"base64","extensions":["qt","mov"],"references":["IANA","RFC6381","[Paul_Lindner]","{video/quicktime=http://www.iana.org/assignments/media-types/video/quicktime}"],"xrefs":{"rfc":["rfc6381"],"person":["Paul_Lindner"],"template":["video/quicktime"]},"registered":true},{"content-type":"video/raptorfec","encoding":"base64","references":["IANA","RFC6682","{video/raptorfec=http://www.iana.org/assignments/media-types/video/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["video/raptorfec"]},"registered":true},{"content-type":"video/raw","encoding":"base64","references":["IANA","RFC4175"],"xrefs":{"rfc":["rfc4175"]},"registered":true},{"content-type":"video/rtp-enc-aescm128","encoding":"base64","references":["IANA","[ThreeGPP]","{video/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/video/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["video/rtp-enc-aescm128"]},"registered":true},{"content-type":"video/rtploopback","encoding":"base64","references":["IANA","RFC6849","{video/rtploopback=http://www.iana.org/assignments/media-types/video/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["video/rtploopback"]},"registered":true},{"content-type":"video/rtx","encoding":"base64","references":["IANA","RFC4588","{video/rtx=http://www.iana.org/assignments/media-types/video/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["video/rtx"]},"registered":true},{"content-type":"video/SMPTE292M","encoding":"base64","references":["IANA","RFC3497","{video/SMPTE292M=http://www.iana.org/assignments/media-types/video/SMPTE292M}"],"xrefs":{"rfc":["rfc3497"],"template":["video/SMPTE292M"]},"registered":true},{"content-type":"video/ulpfec","encoding":"base64","references":["IANA","RFC5109","{video/ulpfec=http://www.iana.org/assignments/media-types/video/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["video/ulpfec"]},"registered":true},{"content-type":"video/vc1","encoding":"base64","references":["IANA","RFC4425","{video/vc1=http://www.iana.org/assignments/media-types/video/vc1}"],"xrefs":{"rfc":["rfc4425"],"template":["video/vc1"]},"registered":true},{"content-type":"video/vnd.CCTV","encoding":"base64","references":["IANA","[Frank_Rottmann]","{video/vnd.CCTV=http://www.iana.org/assignments/media-types/video/vnd.CCTV}"],"xrefs":{"person":["Frank_Rottmann"],"template":["video/vnd.CCTV"]},"registered":true},{"content-type":"video/vnd.dece.hd","friendly":{"en":"DECE High Definition Video"},"encoding":"base64","extensions":["uvh","uvvh"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.hd=http://www.iana.org/assignments/media-types/video/vnd.dece.hd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.hd"]},"registered":true},{"content-type":"video/vnd.dece.mobile","friendly":{"en":"DECE Mobile Video"},"encoding":"base64","extensions":["uvm","uvvm"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.mobile=http://www.iana.org/assignments/media-types/video/vnd.dece.mobile}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.mobile"]},"registered":true},{"content-type":"video/vnd.dece.mp4","encoding":"base64","references":["IANA","[Michael_A_Dolan]","{video/vnd.dece-mp4=http://www.iana.org/assignments/media-types/video/vnd.dece-mp4}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece-mp4"]},"registered":true},{"content-type":"video/vnd.dece.pd","friendly":{"en":"DECE PD Video"},"encoding":"base64","extensions":["uvp","uvvp"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.pd=http://www.iana.org/assignments/media-types/video/vnd.dece.pd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.pd"]},"registered":true},{"content-type":"video/vnd.dece.sd","friendly":{"en":"DECE SD Video"},"encoding":"base64","extensions":["uvs","uvvs"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.sd=http://www.iana.org/assignments/media-types/video/vnd.dece.sd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.sd"]},"registered":true},{"content-type":"video/vnd.dece.video","friendly":{"en":"DECE Video"},"encoding":"base64","extensions":["uvv","uvvv"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.video=http://www.iana.org/assignments/media-types/video/vnd.dece.video}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.video"]},"registered":true},{"content-type":"video/vnd.directv.mpeg","encoding":"base64","references":["IANA","[Nathan_Zerbe]","{video/vnd.directv-mpeg=http://www.iana.org/assignments/media-types/video/vnd.directv-mpeg}"],"xrefs":{"person":["Nathan_Zerbe"],"template":["video/vnd.directv-mpeg"]},"registered":true},{"content-type":"video/vnd.directv.mpeg-tts","encoding":"base64","references":["IANA","[Nathan_Zerbe]","{video/vnd.directv.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.directv.mpeg-tts}"],"xrefs":{"person":["Nathan_Zerbe"],"template":["video/vnd.directv.mpeg-tts"]},"registered":true},{"content-type":"video/vnd.dlna.mpeg-tts","encoding":"base64","references":["IANA","[Edwin_Heredia]","{video/vnd.dlna.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.dlna.mpeg-tts}"],"xrefs":{"person":["Edwin_Heredia"],"template":["video/vnd.dlna.mpeg-tts"]},"registered":true},{"content-type":"video/vnd.dvb.file","encoding":"base64","extensions":["dvb"],"references":["IANA","[Peter_Siebert]","[Kevin_Murray]","{video/vnd.dvb.file=http://www.iana.org/assignments/media-types/video/vnd.dvb.file}"],"xrefs":{"person":["Kevin_Murray","Peter_Siebert"],"template":["video/vnd.dvb.file"]},"registered":true},{"content-type":"video/vnd.fvt","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fvt"],"references":["IANA","[Arild_Fuldseth]","{video/vnd.fvt=http://www.iana.org/assignments/media-types/video/vnd.fvt}"],"xrefs":{"person":["Arild_Fuldseth"],"template":["video/vnd.fvt"]},"registered":true},{"content-type":"video/vnd.hns.video","encoding":"base64","references":["IANA","[Swaminathan]","{video/vnd.hns.video=http://www.iana.org/assignments/media-types/video/vnd.hns.video}"],"xrefs":{"person":["Swaminathan"],"template":["video/vnd.hns.video"]},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-1010","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.1dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-1010}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.1dparityfec-1010"]},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-2005","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.1dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-2005}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.1dparityfec-2005"]},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-1010","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.2dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-1010}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.2dparityfec-1010"]},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-2005","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.2dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-2005}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.2dparityfec-2005"]},"registered":true},{"content-type":"video/vnd.iptvforum.ttsavc","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.ttsavc=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsavc}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.ttsavc"]},"registered":true},{"content-type":"video/vnd.iptvforum.ttsmpeg2","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.ttsmpeg2=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsmpeg2}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.ttsmpeg2"]},"registered":true},{"content-type":"video/vnd.motorola.video","encoding":"base64","references":["IANA","[Tom_McGinty]","{video/vnd.motorola.video=http://www.iana.org/assignments/media-types/video/vnd.motorola.video}"],"xrefs":{"person":["Tom_McGinty"],"template":["video/vnd.motorola.video"]},"registered":true},{"content-type":"video/vnd.motorola.videop","encoding":"base64","references":["IANA","[Tom_McGinty]","{video/vnd.motorola.videop=http://www.iana.org/assignments/media-types/video/vnd.motorola.videop}"],"xrefs":{"person":["Tom_McGinty"],"template":["video/vnd.motorola.videop"]},"registered":true},{"content-type":"video/vnd.mpegurl","friendly":{"en":"MPEG Url"},"encoding":"8bit","extensions":["mxu","m4u"],"references":["IANA","[Heiko_Recktenwald]","{video/vnd-mpegurl=http://www.iana.org/assignments/media-types/video/vnd-mpegurl}"],"xrefs":{"person":["Heiko_Recktenwald"],"template":["video/vnd-mpegurl"]},"registered":true},{"content-type":"video/vnd.ms-playready.media.pyv","friendly":{"en":"Microsoft PlayReady Ecosystem Video"},"encoding":"base64","extensions":["pyv"],"references":["IANA","[Steve_DiAcetis]","{video/vnd.ms-playready.media.pyv=http://www.iana.org/assignments/media-types/video/vnd.ms-playready.media.pyv}"],"xrefs":{"person":["Steve_DiAcetis"],"template":["video/vnd.ms-playready.media.pyv"]},"registered":true},{"content-type":"video/vnd.nokia.interleaved-multimedia","encoding":"base64","extensions":["nim"],"references":["IANA","[Petteri_Kangaslampi]","{video/vnd.nokia.interleaved-multimedia=http://www.iana.org/assignments/media-types/video/vnd.nokia.interleaved-multimedia}"],"xrefs":{"person":["Petteri_Kangaslampi"],"template":["video/vnd.nokia.interleaved-multimedia"]},"registered":true},{"content-type":"video/vnd.nokia.videovoip","encoding":"base64","references":["IANA","[Nokia]","{video/vnd.nokia.videovoip=http://www.iana.org/assignments/media-types/video/vnd.nokia.videovoip}"],"xrefs":{"person":["Nokia"],"template":["video/vnd.nokia.videovoip"]},"registered":true},{"content-type":"video/vnd.objectvideo","encoding":"base64","extensions":["mp4","m4v"],"references":["IANA","[John_Clark]","{video/vnd.objectvideo=http://www.iana.org/assignments/media-types/video/vnd.objectvideo}"],"xrefs":{"person":["John_Clark"],"template":["video/vnd.objectvideo"]},"registered":true},{"content-type":"video/vnd.radgamettools.bink","encoding":"base64","references":["IANA","[Henrik_Andersson]","{video/vnd.radgamettools.bink=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.bink}"],"xrefs":{"person":["Henrik_Andersson"],"template":["video/vnd.radgamettools.bink"]},"registered":true},{"content-type":"video/vnd.radgamettools.smacker","encoding":"base64","references":["IANA","[Henrik_Andersson]","{video/vnd.radgamettools.smacker=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.smacker}"],"xrefs":{"person":["Henrik_Andersson"],"template":["video/vnd.radgamettools.smacker"]},"registered":true},{"content-type":"video/vnd.sealed.mpeg1","encoding":"base64","extensions":["s11"],"references":["IANA","[David_Petersen]","{video/vnd.sealed.mpeg1=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg1}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed.mpeg1"]},"registered":true},{"content-type":"video/vnd.sealed.mpeg4","encoding":"base64","extensions":["smpg","s14"],"references":["IANA","[David_Petersen]","{video/vnd.sealed.mpeg4=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg4}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed.mpeg4"]},"registered":true},{"content-type":"video/vnd.sealed.swf","encoding":"base64","extensions":["sswf","ssw"],"references":["IANA","[David_Petersen]","{video/vnd.sealed-swf=http://www.iana.org/assignments/media-types/video/vnd.sealed-swf}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed-swf"]},"registered":true},{"content-type":"video/vnd.sealedmedia.softseal.mov","encoding":"base64","extensions":["smov","smo","s1q"],"references":["IANA","[David_Petersen]","{video/vnd.sealedmedia.softseal-mov=http://www.iana.org/assignments/media-types/video/vnd.sealedmedia.softseal-mov}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealedmedia.softseal-mov"]},"registered":true},{"content-type":"video/vnd.uvvu.mp4","friendly":{"en":"DECE MP4"},"encoding":"base64","extensions":["uvu","uvvu"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.uvvu-mp4=http://www.iana.org/assignments/media-types/video/vnd.uvvu-mp4}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.uvvu-mp4"]},"registered":true},{"content-type":"video/vnd.vivo","friendly":{"en":"Vivo"},"encoding":"base64","extensions":["viv","vivo"],"references":["IANA","[John_Wolfe]","{video/vnd-vivo=http://www.iana.org/assignments/media-types/video/vnd-vivo}"],"xrefs":{"person":["John_Wolfe"],"template":["video/vnd-vivo"]},"registered":true},{"content-type":"video/webm","friendly":{"en":"Open Web Media Project - Video"},"encoding":"base64","extensions":["webm"],"references":["{WebM=http://www.webmproject.org/code/specs/container/}"],"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}]
+[{"content-type":"application/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{application/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/application/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["application/1d-interleaved-parityfec"]},"registered":true},{"content-type":"application/3gpdash-qoe-report+xml","encoding":"base64","references":["IANA","[Ozgur_Oyman]","[ThreeGPP]","{application/3gpdash-qoe-report+xml=http://www.iana.org/assignments/media-types/application/3gpdash-qoe-report+xml}"],"xrefs":{"person":["Ozgur_Oyman","ThreeGPP"],"template":["application/3gpdash-qoe-report+xml"]},"registered":true},{"content-type":"application/3gpp-ims+xml","encoding":"base64","references":["IANA","[John_M_Meredith]","{application/3gpp-ims+xml=http://www.iana.org/assignments/media-types/application/3gpp-ims+xml}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/3gpp-ims+xml"]},"registered":true},{"content-type":"application/A2L","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/A2L=http://www.iana.org/assignments/media-types/application/A2L}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/A2L"]},"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","references":["IANA","[Ehud_Shapiro]","{application/activemessage=http://www.iana.org/assignments/media-types/application/activemessage}"],"xrefs":{"person":["Ehud_Shapiro"],"template":["application/activemessage"]},"registered":true},{"content-type":"application/alto-costmap+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-costmap+json=http://www.iana.org/assignments/media-types/application/alto-costmap+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-costmap+json"]},"registered":true},{"content-type":"application/alto-costmapfilter+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-costmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-costmapfilter+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-costmapfilter+json"]},"registered":true},{"content-type":"application/alto-directory+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-directory+json=http://www.iana.org/assignments/media-types/application/alto-directory+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-directory+json"]},"registered":true},{"content-type":"application/alto-endpointcost+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointcost+json=http://www.iana.org/assignments/media-types/application/alto-endpointcost+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointcost+json"]},"registered":true},{"content-type":"application/alto-endpointcostparams+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointcostparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointcostparams+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointcostparams+json"]},"registered":true},{"content-type":"application/alto-endpointprop+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointprop+json=http://www.iana.org/assignments/media-types/application/alto-endpointprop+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointprop+json"]},"registered":true},{"content-type":"application/alto-endpointpropparams+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-endpointpropparams+json=http://www.iana.org/assignments/media-types/application/alto-endpointpropparams+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-endpointpropparams+json"]},"registered":true},{"content-type":"application/alto-error+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-error+json=http://www.iana.org/assignments/media-types/application/alto-error+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-error+json"]},"registered":true},{"content-type":"application/alto-networkmap+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-networkmap+json=http://www.iana.org/assignments/media-types/application/alto-networkmap+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-networkmap+json"]},"registered":true},{"content-type":"application/alto-networkmapfilter+json","encoding":"base64","references":["IANA","RFC7285","{application/alto-networkmapfilter+json=http://www.iana.org/assignments/media-types/application/alto-networkmapfilter+json}"],"xrefs":{"rfc":["rfc7285"],"template":["application/alto-networkmapfilter+json"]},"registered":true},{"content-type":"application/AML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/AML=http://www.iana.org/assignments/media-types/application/AML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/AML"]},"registered":true},{"content-type":"application/andrew-inset","friendly":{"en":"Andrew Toolkit"},"encoding":"base64","extensions":["ez"],"references":["IANA","[Nathaniel_Borenstein]","{application/andrew-inset=http://www.iana.org/assignments/media-types/application/andrew-inset}"],"xrefs":{"person":["Nathaniel_Borenstein"],"template":["application/andrew-inset"]},"registered":true},{"content-type":"application/appledouble","encoding":"base64","registered":false},{"content-type":"application/applefile","encoding":"base64","references":["IANA","[Patrik_Faltstrom]","{application/applefile=http://www.iana.org/assignments/media-types/application/applefile}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["application/applefile"]},"registered":true},{"content-type":"application/applixware","friendly":{"en":"Applixware"},"encoding":"base64","extensions":["aw"],"registered":false},{"content-type":"application/ATF","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATF=http://www.iana.org/assignments/media-types/application/ATF}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATF"]},"registered":true},{"content-type":"application/ATFX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATFX=http://www.iana.org/assignments/media-types/application/ATFX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATFX"]},"registered":true},{"content-type":"application/atom+xml","friendly":{"en":"Atom Syndication Format"},"encoding":"8bit","extensions":["atom"],"references":["IANA","RFC4287","RFC5023","{application/atom+xml=http://www.iana.org/assignments/media-types/application/atom+xml}"],"xrefs":{"rfc":["rfc4287","rfc5023"],"template":["application/atom+xml"]},"registered":true},{"content-type":"application/atomcat+xml","friendly":{"en":"Atom Publishing Protocol"},"encoding":"8bit","extensions":["atomcat"],"references":["IANA","RFC5023","{application/atomcat+xml=http://www.iana.org/assignments/media-types/application/atomcat+xml}"],"xrefs":{"rfc":["rfc5023"],"template":["application/atomcat+xml"]},"registered":true},{"content-type":"application/atomdeleted+xml","encoding":"8bit","references":["IANA","RFC6721","{application/atomdeleted+xml=http://www.iana.org/assignments/media-types/application/atomdeleted+xml}"],"xrefs":{"rfc":["rfc6721"],"template":["application/atomdeleted+xml"]},"registered":true},{"content-type":"application/atomicmail","encoding":"base64","references":["IANA","[Nathaniel_Borenstein]","{application/atomicmail=http://www.iana.org/assignments/media-types/application/atomicmail}"],"xrefs":{"person":["Nathaniel_Borenstein"],"template":["application/atomicmail"]},"registered":true},{"content-type":"application/atomsvc+xml","friendly":{"en":"Atom Publishing Protocol Service Document"},"encoding":"8bit","extensions":["atomsvc"],"references":["IANA","RFC5023","{application/atomsvc+xml=http://www.iana.org/assignments/media-types/application/atomsvc+xml}"],"xrefs":{"rfc":["rfc5023"],"template":["application/atomsvc+xml"]},"registered":true},{"content-type":"application/ATXML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ATXML=http://www.iana.org/assignments/media-types/application/ATXML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ATXML"]},"registered":true},{"content-type":"application/auth-policy+xml","encoding":"8bit","references":["IANA","RFC4745","{application/auth-policy+xml=http://www.iana.org/assignments/media-types/application/auth-policy+xml}"],"xrefs":{"rfc":["rfc4745"],"template":["application/auth-policy+xml"]},"registered":true},{"content-type":"application/bacnet-xdd+zip","encoding":"base64","references":["IANA","[ASHRAE]","[Dave_Robin]","{application/bacnet-xdd+zip=http://www.iana.org/assignments/media-types/application/bacnet-xdd+zip}"],"xrefs":{"person":["ASHRAE","Dave_Robin"],"template":["application/bacnet-xdd+zip"]},"registered":true},{"content-type":"application/batch-SMTP","encoding":"base64","references":["IANA","RFC2442","{application/batch-SMTP=http://www.iana.org/assignments/media-types/application/batch-SMTP}"],"xrefs":{"rfc":["rfc2442"],"template":["application/batch-SMTP"]},"registered":true},{"content-type":"application/beep+xml","encoding":"base64","references":["IANA","RFC3080","{application/beep+xml=http://www.iana.org/assignments/media-types/application/beep+xml}"],"xrefs":{"rfc":["rfc3080"],"template":["application/beep+xml"]},"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","references":["IANA","RFC7265","{application/calendar+json=http://www.iana.org/assignments/media-types/application/calendar+json}"],"xrefs":{"rfc":["rfc7265"],"template":["application/calendar+json"]},"registered":true},{"content-type":"application/calendar+xml","encoding":"base64","references":["IANA","RFC6321","{application/calendar+xml=http://www.iana.org/assignments/media-types/application/calendar+xml}"],"xrefs":{"rfc":["rfc6321"],"template":["application/calendar+xml"]},"registered":true},{"content-type":"application/call-completion","encoding":"base64","references":["IANA","RFC6910","{application/call-completion=http://www.iana.org/assignments/media-types/application/call-completion}"],"xrefs":{"rfc":["rfc6910"],"template":["application/call-completion"]},"registered":true},{"content-type":"application/cals-1840","encoding":"base64","references":["IANA","RFC1895","{application/cals-1840=http://www.iana.org/assignments/media-types/application/cals-1840}"],"xrefs":{"rfc":["rfc1895"],"template":["application/cals-1840"]},"registered":true},{"content-type":"application/cals1840","encoding":"base64","obsolete":true,"use-instead":"application/cals-1840","registered":false},{"content-type":"application/cbor","encoding":"base64","references":["IANA","RFC7049","{application/cbor=http://www.iana.org/assignments/media-types/application/cbor}"],"xrefs":{"rfc":["rfc7049"],"template":["application/cbor"]},"registered":true},{"content-type":"application/ccmp+xml","encoding":"base64","references":["IANA","RFC6503","{application/ccmp+xml=http://www.iana.org/assignments/media-types/application/ccmp+xml}"],"xrefs":{"rfc":["rfc6503"],"template":["application/ccmp+xml"]},"registered":true},{"content-type":"application/ccxml+xml","friendly":{"en":"Voice Browser Call Control"},"encoding":"base64","extensions":["ccxml"],"references":["IANA","RFC4267","{application/ccxml+xml=http://www.iana.org/assignments/media-types/application/ccxml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/ccxml+xml"]},"registered":true},{"content-type":"application/CDFX+XML","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/CDFX+XML=http://www.iana.org/assignments/media-types/application/CDFX+XML}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/CDFX+XML"]},"registered":true},{"content-type":"application/cdmi-capability","friendly":{"en":"Cloud Data Management Interface (CDMI) - Capability"},"encoding":"base64","extensions":["cdmia"],"references":["IANA","RFC6208","{application/cdmi-capability=http://www.iana.org/assignments/media-types/application/cdmi-capability}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-capability"]},"registered":true},{"content-type":"application/cdmi-container","friendly":{"en":"Cloud Data Management Interface (CDMI) - Contaimer"},"encoding":"base64","extensions":["cdmic"],"references":["IANA","RFC6208","{application/cdmi-container=http://www.iana.org/assignments/media-types/application/cdmi-container}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-container"]},"registered":true},{"content-type":"application/cdmi-domain","friendly":{"en":"Cloud Data Management Interface (CDMI) - Domain"},"encoding":"base64","extensions":["cdmid"],"references":["IANA","RFC6208","{application/cdmi-domain=http://www.iana.org/assignments/media-types/application/cdmi-domain}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-domain"]},"registered":true},{"content-type":"application/cdmi-object","friendly":{"en":"Cloud Data Management Interface (CDMI) - Object"},"encoding":"base64","extensions":["cdmio"],"references":["IANA","RFC6208","{application/cdmi-object=http://www.iana.org/assignments/media-types/application/cdmi-object}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-object"]},"registered":true},{"content-type":"application/cdmi-queue","friendly":{"en":"Cloud Data Management Interface (CDMI) - Queue"},"encoding":"base64","extensions":["cdmiq"],"references":["IANA","RFC6208","{application/cdmi-queue=http://www.iana.org/assignments/media-types/application/cdmi-queue}"],"xrefs":{"rfc":["rfc6208"],"template":["application/cdmi-queue"]},"registered":true},{"content-type":"application/CEA","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/CEA=http://www.iana.org/assignments/media-types/application/CEA}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/CEA"]},"registered":true},{"content-type":"application/cea-2018+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/cea-2018+xml=http://www.iana.org/assignments/media-types/application/cea-2018+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/cea-2018+xml"]},"registered":true},{"content-type":"application/cellml+xml","encoding":"base64","references":["IANA","RFC4708","{application/cellml+xml=http://www.iana.org/assignments/media-types/application/cellml+xml}"],"xrefs":{"rfc":["rfc4708"],"template":["application/cellml+xml"]},"registered":true},{"content-type":"application/cfw","encoding":"base64","references":["IANA","RFC6230","{application/cfw=http://www.iana.org/assignments/media-types/application/cfw}"],"xrefs":{"rfc":["rfc6230"],"template":["application/cfw"]},"registered":true},{"content-type":"application/clariscad","encoding":"base64","registered":false},{"content-type":"application/cms","encoding":"base64","references":["IANA","RFC7193","{application/cms=http://www.iana.org/assignments/media-types/application/cms}"],"xrefs":{"rfc":["rfc7193"],"template":["application/cms"]},"registered":true},{"content-type":"application/cnrp+xml","encoding":"base64","references":["IANA","RFC3367","{application/cnrp+xml=http://www.iana.org/assignments/media-types/application/cnrp+xml}"],"xrefs":{"rfc":["rfc3367"],"template":["application/cnrp+xml"]},"registered":true},{"content-type":"application/coap-group+json","encoding":"base64","references":["IANA","RFC7390","{application/coap-group+json=http://www.iana.org/assignments/media-types/application/coap-group+json}"],"xrefs":{"rfc":["rfc7390"],"template":["application/coap-group+json"]},"registered":true},{"content-type":"application/commonground","encoding":"base64","references":["IANA","[David_Glazer]","{application/commonground=http://www.iana.org/assignments/media-types/application/commonground}"],"xrefs":{"person":["David_Glazer"],"template":["application/commonground"]},"registered":true},{"content-type":"application/conference-info+xml","encoding":"base64","references":["IANA","RFC4575","{application/conference-info+xml=http://www.iana.org/assignments/media-types/application/conference-info+xml}"],"xrefs":{"rfc":["rfc4575"],"template":["application/conference-info+xml"]},"registered":true},{"content-type":"application/cpl+xml","encoding":"base64","references":["IANA","RFC3880","{application/cpl+xml=http://www.iana.org/assignments/media-types/application/cpl+xml}"],"xrefs":{"rfc":["rfc3880"],"template":["application/cpl+xml"]},"registered":true},{"content-type":"application/csrattrs","encoding":"base64","references":["IANA","RFC7030","{application/csrattrs=http://www.iana.org/assignments/media-types/application/csrattrs}"],"xrefs":{"rfc":["rfc7030"],"template":["application/csrattrs"]},"registered":true},{"content-type":"application/csta+xml","encoding":"base64","references":["IANA","[Ecma_International_Helpdesk]","{application/csta+xml=http://www.iana.org/assignments/media-types/application/csta+xml}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/csta+xml"]},"registered":true},{"content-type":"application/CSTAdata+xml","encoding":"base64","references":["IANA","[Ecma_International_Helpdesk]","{application/CSTAdata+xml=http://www.iana.org/assignments/media-types/application/CSTAdata+xml}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/CSTAdata+xml"]},"registered":true},{"content-type":"application/cu-seeme","friendly":{"en":"CU-SeeMe"},"encoding":"base64","extensions":["cu"],"registered":false},{"content-type":"application/cybercash","encoding":"base64","references":["IANA","[Donald_E._Eastlake_3rd]","{application/cybercash=http://www.iana.org/assignments/media-types/application/cybercash}"],"xrefs":{"person":["Donald_E._Eastlake_3rd"],"template":["application/cybercash"]},"registered":true},{"content-type":"application/dash+xml","encoding":"base64","references":["IANA","[Thomas_Stockhammer]","[ISO-IEC_JTC1]","{application/dash+xml=http://www.iana.org/assignments/media-types/application/dash+xml}"],"xrefs":{"person":["ISO-IEC_JTC1","Thomas_Stockhammer"],"template":["application/dash+xml"]},"registered":true},{"content-type":"application/dashdelta","encoding":"base64","references":["IANA","[David_Furbeck]","{application/dashdelta=http://www.iana.org/assignments/media-types/application/dashdelta}"],"xrefs":{"person":["David_Furbeck"],"template":["application/dashdelta"]},"registered":true},{"content-type":"application/davmount+xml","friendly":{"en":"Web Distributed Authoring and Versioning"},"encoding":"base64","extensions":["davmount"],"references":["IANA","RFC4709","{application/davmount+xml=http://www.iana.org/assignments/media-types/application/davmount+xml}"],"xrefs":{"rfc":["rfc4709"],"template":["application/davmount+xml"]},"registered":true},{"content-type":"application/dca-rft","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/dca-rft=http://www.iana.org/assignments/media-types/application/dca-rft}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/dca-rft"]},"registered":true},{"content-type":"application/DCD","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DCD=http://www.iana.org/assignments/media-types/application/DCD}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DCD"]},"registered":true},{"content-type":"application/dec-dx","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/dec-dx=http://www.iana.org/assignments/media-types/application/dec-dx}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/dec-dx"]},"registered":true},{"content-type":"application/dialog-info+xml","encoding":"base64","references":["IANA","RFC4235","{application/dialog-info+xml=http://www.iana.org/assignments/media-types/application/dialog-info+xml}"],"xrefs":{"rfc":["rfc4235"],"template":["application/dialog-info+xml"]},"registered":true},{"content-type":"application/dicom","encoding":"base64","extensions":["dcm"],"references":["IANA","RFC3240","{application/dicom=http://www.iana.org/assignments/media-types/application/dicom}"],"xrefs":{"rfc":["rfc3240"],"template":["application/dicom"]},"registered":true},{"content-type":"application/DII","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DII=http://www.iana.org/assignments/media-types/application/DII}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DII"]},"registered":true},{"content-type":"application/DIT","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/DIT=http://www.iana.org/assignments/media-types/application/DIT}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/DIT"]},"registered":true},{"content-type":"application/dns","encoding":"base64","references":["IANA","RFC4027","{application/dns=http://www.iana.org/assignments/media-types/application/dns}"],"xrefs":{"rfc":["rfc4027"],"template":["application/dns"]},"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","references":["IANA","RFC6063","{application/dskpp+xml=http://www.iana.org/assignments/media-types/application/dskpp+xml}"],"xrefs":{"rfc":["rfc6063"],"template":["application/dskpp+xml"]},"registered":true},{"content-type":"application/dssc+der","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["dssc"],"references":["IANA","RFC5698","{application/dssc+der=http://www.iana.org/assignments/media-types/application/dssc+der}"],"xrefs":{"rfc":["rfc5698"],"template":["application/dssc+der"]},"registered":true},{"content-type":"application/dssc+xml","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["xdssc"],"references":["IANA","RFC5698","{application/dssc+xml=http://www.iana.org/assignments/media-types/application/dssc+xml}"],"xrefs":{"rfc":["rfc5698"],"template":["application/dssc+xml"]},"registered":true},{"content-type":"application/dvcs","encoding":"base64","references":["IANA","RFC3029","{application/dvcs=http://www.iana.org/assignments/media-types/application/dvcs}"],"xrefs":{"rfc":["rfc3029"],"template":["application/dvcs"]},"registered":true},{"content-type":"application/dxf","encoding":"base64","registered":false},{"content-type":"application/ecmascript","friendly":{"en":"ECMAScript"},"encoding":"base64","extensions":["ecma"],"references":["IANA","RFC4329","{application/ecmascript=http://www.iana.org/assignments/media-types/application/ecmascript}"],"xrefs":{"rfc":["rfc4329"],"template":["application/ecmascript"]},"registered":true},{"content-type":"application/EDI-consent","encoding":"base64","references":["IANA","RFC1767","{application/EDI-consent=http://www.iana.org/assignments/media-types/application/EDI-consent}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDI-consent"]},"registered":true},{"content-type":"application/EDI-X12","encoding":"base64","references":["IANA","RFC1767","{application/EDI-X12=http://www.iana.org/assignments/media-types/application/EDI-X12}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDI-X12"]},"registered":true},{"content-type":"application/EDIFACT","encoding":"base64","references":["IANA","RFC1767","{application/EDIFACT=http://www.iana.org/assignments/media-types/application/EDIFACT}"],"xrefs":{"rfc":["rfc1767"],"template":["application/EDIFACT"]},"registered":true},{"content-type":"application/emma+xml","friendly":{"en":"Extensible MultiModal Annotation"},"encoding":"base64","extensions":["emma"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration"]},"registered":true},{"content-type":"application/emotionml+xml","encoding":"base64","references":["IANA","[W3C]","[Kazuyuki_Ashimura]","{application/emotionml+xml=http://www.iana.org/assignments/media-types/application/emotionml+xml}"],"xrefs":{"person":["Kazuyuki_Ashimura","W3C"],"template":["application/emotionml+xml"]},"registered":true},{"content-type":"application/encaprtp","encoding":"base64","references":["IANA","RFC6849","{application/encaprtp=http://www.iana.org/assignments/media-types/application/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["application/encaprtp"]},"registered":true},{"content-type":"application/epp+xml","encoding":"base64","references":["IANA","RFC5730","{application/epp+xml=http://www.iana.org/assignments/media-types/application/epp+xml}"],"xrefs":{"rfc":["rfc5730"],"template":["application/epp+xml"]},"registered":true},{"content-type":"application/epub+zip","friendly":{"en":"Electronic Publication"},"encoding":"base64","extensions":["epub"],"references":["IANA","[International_Digital_Publishing_Forum]","[William_McCoy]","{application/epub+zip=http://www.iana.org/assignments/media-types/application/epub+zip}"],"xrefs":{"person":["International_Digital_Publishing_Forum","William_McCoy"],"template":["application/epub+zip"]},"registered":true},{"content-type":"application/eshop","encoding":"base64","references":["IANA","[Steve_Katz]","{application/eshop=http://www.iana.org/assignments/media-types/application/eshop}"],"xrefs":{"person":["Steve_Katz"],"template":["application/eshop"]},"registered":true},{"content-type":"application/example","encoding":"base64","references":["IANA","RFC4735","{application/example=http://www.iana.org/assignments/media-types/application/example}"],"xrefs":{"rfc":["rfc4735"],"template":["application/example"]},"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"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration"]},"registered":true},{"content-type":"application/fastinfoset","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/fastinfoset=http://www.iana.org/assignments/media-types/application/fastinfoset}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/fastinfoset"]},"registered":true},{"content-type":"application/fastsoap","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/fastsoap=http://www.iana.org/assignments/media-types/application/fastsoap}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/fastsoap"]},"registered":true},{"content-type":"application/fdt+xml","encoding":"base64","references":["IANA","RFC6726","{application/fdt+xml=http://www.iana.org/assignments/media-types/application/fdt+xml}"],"xrefs":{"rfc":["rfc6726"],"template":["application/fdt+xml"]},"registered":true},{"content-type":"application/fits","encoding":"base64","references":["IANA","RFC4047","{application/fits=http://www.iana.org/assignments/media-types/application/fits}"],"xrefs":{"rfc":["rfc4047"],"template":["application/fits"]},"registered":true},{"content-type":"application/font-sfnt","encoding":"base64","extensions":["otf","ttf"],"references":["IANA","[Levantovsky]","{application/font-sfnt=http://www.iana.org/assignments/media-types/application/font-sfnt}"],"xrefs":{"person":["Levantovsky"],"template":["application/font-sfnt"]},"registered":true},{"content-type":"application/font-tdpfr","friendly":{"en":"Portable Font Resource"},"encoding":"base64","extensions":["pfr"],"references":["IANA","RFC3073","{application/font-tdpfr=http://www.iana.org/assignments/media-types/application/font-tdpfr}"],"xrefs":{"rfc":["rfc3073"],"template":["application/font-tdpfr"]},"registered":true},{"content-type":"application/font-woff","friendly":{"en":"Web Open Font Format"},"encoding":"base64","extensions":["woff","woff2"],"references":["IANA","[W3C]","{application/font-woff=http://www.iana.org/assignments/media-types/application/font-woff}"],"xrefs":{"person":["W3C"],"template":["application/font-woff"]},"registered":true},{"content-type":"application/fractals","encoding":"base64","registered":false},{"content-type":"application/framework-attributes+xml","encoding":"base64","references":["IANA","RFC6230","{application/framework-attributes+xml=http://www.iana.org/assignments/media-types/application/framework-attributes+xml}"],"xrefs":{"rfc":["rfc6230"],"template":["application/framework-attributes+xml"]},"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"],"references":["IANA","RFC6713","{application/gzip=http://www.iana.org/assignments/media-types/application/gzip}"],"xrefs":{"rfc":["rfc6713"],"template":["application/gzip"]},"registered":true},{"content-type":"application/H224","encoding":"base64","references":["IANA","RFC4573","{application/H224=http://www.iana.org/assignments/media-types/application/H224}"],"xrefs":{"rfc":["rfc4573"],"template":["application/H224"]},"registered":true},{"content-type":"application/held+xml","encoding":"base64","references":["IANA","RFC5985","{application/held+xml=http://www.iana.org/assignments/media-types/application/held+xml}"],"xrefs":{"rfc":["rfc5985"],"template":["application/held+xml"]},"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","references":["IANA","RFC7230","{application/http=http://www.iana.org/assignments/media-types/application/http}"],"xrefs":{"rfc":["rfc7230"],"template":["application/http"]},"registered":true},{"content-type":"application/hyperstudio","friendly":{"en":"Hyperstudio"},"encoding":"base64","extensions":["stk"],"references":["IANA","[Michael_Domino]","{application/hyperstudio=http://www.iana.org/assignments/media-types/application/hyperstudio}"],"xrefs":{"person":["Michael_Domino"],"template":["application/hyperstudio"]},"registered":true},{"content-type":"application/i-deas","encoding":"base64","registered":false},{"content-type":"application/ibe-key-request+xml","encoding":"base64","references":["IANA","RFC5408","{application/ibe-key-request+xml=http://www.iana.org/assignments/media-types/application/ibe-key-request+xml}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-key-request+xml"]},"registered":true},{"content-type":"application/ibe-pkg-reply+xml","encoding":"base64","references":["IANA","RFC5408","{application/ibe-pkg-reply+xml=http://www.iana.org/assignments/media-types/application/ibe-pkg-reply+xml}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-pkg-reply+xml"]},"registered":true},{"content-type":"application/ibe-pp-data","encoding":"base64","references":["IANA","RFC5408","{application/ibe-pp-data=http://www.iana.org/assignments/media-types/application/ibe-pp-data}"],"xrefs":{"rfc":["rfc5408"],"template":["application/ibe-pp-data"]},"registered":true},{"content-type":"application/iges","encoding":"base64","references":["IANA","[Curtis_Parks]","{application/iges=http://www.iana.org/assignments/media-types/application/iges}"],"xrefs":{"person":["Curtis_Parks"],"template":["application/iges"]},"registered":true},{"content-type":"application/im-iscomposing+xml","encoding":"base64","references":["IANA","RFC3994","{application/im-iscomposing+xml=http://www.iana.org/assignments/media-types/application/im-iscomposing+xml}"],"xrefs":{"rfc":["rfc3994"],"template":["application/im-iscomposing+xml"]},"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","references":["IANA","RFC2652","{application/index=http://www.iana.org/assignments/media-types/application/index}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index"]},"registered":true},{"content-type":"application/index.cmd","encoding":"base64","references":["IANA","RFC2652","{application/index.cmd=http://www.iana.org/assignments/media-types/application/index.cmd}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.cmd"]},"registered":true},{"content-type":"application/index.obj","encoding":"base64","references":["IANA","RFC2652","{application/index.obj=http://www.iana.org/assignments/media-types/application/index.obj}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.obj"]},"registered":true},{"content-type":"application/index.response","encoding":"base64","references":["IANA","RFC2652","{application/index.response=http://www.iana.org/assignments/media-types/application/index.response}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.response"]},"registered":true},{"content-type":"application/index.vnd","encoding":"base64","references":["IANA","RFC2652","{application/index.vnd=http://www.iana.org/assignments/media-types/application/index.vnd}"],"xrefs":{"rfc":["rfc2652"],"template":["application/index.vnd"]},"registered":true},{"content-type":"application/inkml+xml","encoding":"base64","extensions":["ink","inkml"],"references":["IANA","[Kazuyuki_Ashimura]","{application/inkml+xml=http://www.iana.org/assignments/media-types/application/inkml+xml}"],"xrefs":{"person":["Kazuyuki_Ashimura"],"template":["application/inkml+xml"]},"registered":true},{"content-type":"application/iotp","encoding":"base64","references":["IANA","RFC2935","{application/IOTP=http://www.iana.org/assignments/media-types/application/IOTP}"],"xrefs":{"rfc":["rfc2935"],"template":["application/IOTP"]},"registered":true},{"content-type":"application/ipfix","friendly":{"en":"Internet Protocol Flow Information Export"},"encoding":"base64","extensions":["ipfix"],"references":["IANA","RFC5655","{application/ipfix=http://www.iana.org/assignments/media-types/application/ipfix}"],"xrefs":{"rfc":["rfc5655"],"template":["application/ipfix"]},"registered":true},{"content-type":"application/ipp","encoding":"base64","references":["IANA","RFC2910","{application/ipp=http://www.iana.org/assignments/media-types/application/ipp}"],"xrefs":{"rfc":["rfc2910"],"template":["application/ipp"]},"registered":true},{"content-type":"application/isup","encoding":"base64","references":["IANA","RFC3204","{application/ISUP=http://www.iana.org/assignments/media-types/application/ISUP}"],"xrefs":{"rfc":["rfc3204"],"template":["application/ISUP"]},"registered":true},{"content-type":"application/its+xml","encoding":"base64","references":["IANA","[W3C]","[ITS-IG-W3C]","{application/its+xml=http://www.iana.org/assignments/media-types/application/its+xml}"],"xrefs":{"person":["ITS-IG-W3C","W3C"],"template":["application/its+xml"]},"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"],"references":["IANA","RFC4329","{application/javascript=http://www.iana.org/assignments/media-types/application/javascript}"],"xrefs":{"rfc":["rfc4329"],"template":["application/javascript"]},"registered":true},{"content-type":"application/jose","encoding":"base64","references":["IANA","RFC7515","{application/jose=http://www.iana.org/assignments/media-types/application/jose}"],"xrefs":{"rfc":["rfc7515"],"template":["application/jose"]},"registered":true},{"content-type":"application/jose+json","encoding":"base64","references":["IANA","RFC7515","{application/jose+json=http://www.iana.org/assignments/media-types/application/jose+json}"],"xrefs":{"rfc":["rfc7515"],"template":["application/jose+json"]},"registered":true},{"content-type":"application/jrd+json","encoding":"base64","references":["IANA","RFC7033","{application/jrd+json=http://www.iana.org/assignments/media-types/application/jrd+json}"],"xrefs":{"rfc":["rfc7033"],"template":["application/jrd+json"]},"registered":true},{"content-type":"application/json","friendly":{"en":"JavaScript Object Notation (JSON)"},"encoding":"8bit","extensions":["json"],"references":["IANA","RFC7158","{application/json=http://www.iana.org/assignments/media-types/application/json}"],"xrefs":{"rfc":["rfc7158"],"template":["application/json"]},"registered":true},{"content-type":"application/json-patch+json","encoding":"base64","references":["IANA","RFC6902","{application/json-patch+json=http://www.iana.org/assignments/media-types/application/json-patch+json}"],"xrefs":{"rfc":["rfc6902"],"template":["application/json-patch+json"]},"registered":true},{"content-type":"application/json-seq","encoding":"base64","references":["IANA","RFC7464","{application/json-seq=http://www.iana.org/assignments/media-types/application/json-seq}"],"xrefs":{"rfc":["rfc7464"],"template":["application/json-seq"]},"registered":true},{"content-type":"application/jsonml+json","encoding":"base64","extensions":["jsonml"],"registered":false},{"content-type":"application/jwk+json","encoding":"base64","references":["IANA","RFC7517","{application/jwk+json=http://www.iana.org/assignments/media-types/application/jwk+json}"],"xrefs":{"rfc":["rfc7517"],"template":["application/jwk+json"]},"registered":true},{"content-type":"application/jwk-set+json","encoding":"base64","references":["IANA","RFC7517","{application/jwk-set+json=http://www.iana.org/assignments/media-types/application/jwk-set+json}"],"xrefs":{"rfc":["rfc7517"],"template":["application/jwk-set+json"]},"registered":true},{"content-type":"application/jwt","encoding":"base64","references":["IANA","RFC7519","{application/jwt=http://www.iana.org/assignments/media-types/application/jwt}"],"xrefs":{"rfc":["rfc7519"],"template":["application/jwt"]},"registered":true},{"content-type":"application/kpml-request+xml","encoding":"base64","references":["IANA","RFC4730","{application/kpml-request+xml=http://www.iana.org/assignments/media-types/application/kpml-request+xml}"],"xrefs":{"rfc":["rfc4730"],"template":["application/kpml-request+xml"]},"registered":true},{"content-type":"application/kpml-response+xml","encoding":"base64","references":["IANA","RFC4730","{application/kpml-response+xml=http://www.iana.org/assignments/media-types/application/kpml-response+xml}"],"xrefs":{"rfc":["rfc4730"],"template":["application/kpml-response+xml"]},"registered":true},{"content-type":"application/ld+json","encoding":"base64","references":["IANA","[W3C]","[Ivan_Herman]","{application/ld+json=http://www.iana.org/assignments/media-types/application/ld+json}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["application/ld+json"]},"registered":true},{"content-type":"application/link-format","encoding":"base64","references":["IANA","RFC6690","{application/link-format=http://www.iana.org/assignments/media-types/application/link-format}"],"xrefs":{"rfc":["rfc6690"],"template":["application/link-format"]},"registered":true},{"content-type":"application/load-control+xml","encoding":"base64","references":["IANA","RFC7200","{application/load-control+xml=http://www.iana.org/assignments/media-types/application/load-control+xml}"],"xrefs":{"rfc":["rfc7200"],"template":["application/load-control+xml"]},"registered":true},{"content-type":"application/lost+xml","encoding":"base64","extensions":["lostxml"],"references":["IANA","RFC5222","{application/lost+xml=http://www.iana.org/assignments/media-types/application/lost+xml}"],"xrefs":{"rfc":["rfc5222"],"template":["application/lost+xml"]},"registered":true},{"content-type":"application/lostsync+xml","encoding":"base64","references":["IANA","RFC6739","{application/lostsync+xml=http://www.iana.org/assignments/media-types/application/lostsync+xml}"],"xrefs":{"rfc":["rfc6739"],"template":["application/lostsync+xml"]},"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","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/LXF=http://www.iana.org/assignments/media-types/application/LXF}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/LXF"]},"registered":true},{"content-type":"application/mac-binhex40","friendly":{"en":"Macintosh BinHex 4.0"},"encoding":"8bit","extensions":["hqx"],"references":["IANA","[Patrik_Faltstrom]","{application/mac-binhex40=http://www.iana.org/assignments/media-types/application/mac-binhex40}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["application/mac-binhex40"]},"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","references":["IANA","[Paul_Lindner]","{application/macwriteii=http://www.iana.org/assignments/media-types/application/macwriteii}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/macwriteii"]},"registered":true},{"content-type":"application/mads+xml","friendly":{"en":"Metadata Authority Description Schema"},"encoding":"base64","extensions":["mads"],"references":["IANA","RFC6207","{application/mads+xml=http://www.iana.org/assignments/media-types/application/mads+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mads+xml"]},"registered":true},{"content-type":"application/marc","friendly":{"en":"MARC Formats"},"encoding":"base64","extensions":["mrc"],"references":["IANA","RFC2220","{application/marc=http://www.iana.org/assignments/media-types/application/marc}"],"xrefs":{"rfc":["rfc2220"],"template":["application/marc"]},"registered":true},{"content-type":"application/marcxml+xml","friendly":{"en":"MARC21 XML Schema"},"encoding":"base64","extensions":["mrcx"],"references":["IANA","RFC6207","{application/marcxml+xml=http://www.iana.org/assignments/media-types/application/marcxml+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/marcxml+xml"]},"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"],"references":["IANA","[Wolfram]","{application/mathematica=http://www.iana.org/assignments/media-types/application/mathematica}"],"xrefs":{"person":["Wolfram"],"template":["application/mathematica"]},"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"],"references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mathml-content+xml","encoding":"base64","references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mathml-presentation+xml","encoding":"base64","references":["IANA","[W3C]","{http://www.w3.org/TR/MathML3/appendixb.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/MathML3/appendixb.html"]},"registered":true},{"content-type":"application/mbms-associated-procedure-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-associated-procedure-description+xml=http://www.iana.org/assignments/media-types/application/mbms-associated-procedure-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-associated-procedure-description+xml"]},"registered":true},{"content-type":"application/mbms-deregister+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-deregister+xml=http://www.iana.org/assignments/media-types/application/mbms-deregister+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-deregister+xml"]},"registered":true},{"content-type":"application/mbms-envelope+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-envelope+xml=http://www.iana.org/assignments/media-types/application/mbms-envelope+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-envelope+xml"]},"registered":true},{"content-type":"application/mbms-msk+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-msk+xml=http://www.iana.org/assignments/media-types/application/mbms-msk+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-msk+xml"]},"registered":true},{"content-type":"application/mbms-msk-response+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-msk-response+xml=http://www.iana.org/assignments/media-types/application/mbms-msk-response+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-msk-response+xml"]},"registered":true},{"content-type":"application/mbms-protection-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-protection-description+xml=http://www.iana.org/assignments/media-types/application/mbms-protection-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-protection-description+xml"]},"registered":true},{"content-type":"application/mbms-reception-report+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-reception-report+xml=http://www.iana.org/assignments/media-types/application/mbms-reception-report+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-reception-report+xml"]},"registered":true},{"content-type":"application/mbms-register+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-register+xml=http://www.iana.org/assignments/media-types/application/mbms-register+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-register+xml"]},"registered":true},{"content-type":"application/mbms-register-response+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-register-response+xml=http://www.iana.org/assignments/media-types/application/mbms-register-response+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-register-response+xml"]},"registered":true},{"content-type":"application/mbms-schedule+xml","encoding":"base64","references":["IANA","[ThreeGPP]","[Eric_Turcotte]","{application/mbms-schedule+xml=http://www.iana.org/assignments/media-types/application/mbms-schedule+xml}"],"xrefs":{"person":["Eric_Turcotte","ThreeGPP"],"template":["application/mbms-schedule+xml"]},"registered":true},{"content-type":"application/mbms-user-service-description+xml","encoding":"base64","references":["IANA","[ThreeGPP]","{application/mbms-user-service-description+xml=http://www.iana.org/assignments/media-types/application/mbms-user-service-description+xml}"],"xrefs":{"person":["ThreeGPP"],"template":["application/mbms-user-service-description+xml"]},"registered":true},{"content-type":"application/mbox","friendly":{"en":"Mbox database files"},"encoding":"base64","extensions":["mbox"],"references":["IANA","RFC4155","{application/mbox+xml=http://www.iana.org/assignments/media-types/application/mbox+xml}"],"xrefs":{"rfc":["rfc4155"],"template":["application/mbox+xml"]},"registered":true},{"content-type":"application/media-policy-dataset+xml","encoding":"base64","references":["IANA","RFC6796","{application/media-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/media-policy-dataset+xml}"],"xrefs":{"rfc":["rfc6796"],"template":["application/media-policy-dataset+xml"]},"registered":true},{"content-type":"application/media_control+xml","encoding":"base64","references":["IANA","RFC5168","{application/media_control+xml=http://www.iana.org/assignments/media-types/application/media_control+xml}"],"xrefs":{"rfc":["rfc5168"],"template":["application/media_control+xml"]},"registered":true},{"content-type":"application/mediaservercontrol+xml","friendly":{"en":"Media Server Control Markup Language"},"encoding":"base64","extensions":["mscml"],"references":["IANA","RFC5022","{application/mediaservercontrol+xml=http://www.iana.org/assignments/media-types/application/mediaservercontrol+xml}"],"xrefs":{"rfc":["rfc5022"],"template":["application/mediaservercontrol+xml"]},"registered":true},{"content-type":"application/merge-patch+json","encoding":"base64","references":["IANA","RFC7396","{application/merge-patch+json=http://www.iana.org/assignments/media-types/application/merge-patch+json}"],"xrefs":{"rfc":["rfc7396"],"template":["application/merge-patch+json"]},"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"],"references":["IANA","RFC5854","{application/metalink4+xml=http://www.iana.org/assignments/media-types/application/metalink4+xml}"],"xrefs":{"rfc":["rfc5854"],"template":["application/metalink4+xml"]},"registered":true},{"content-type":"application/mets+xml","friendly":{"en":"Metadata Encoding and Transmission Standard"},"encoding":"base64","extensions":["mets"],"references":["IANA","RFC6207","{application/mets+xml=http://www.iana.org/assignments/media-types/application/mets+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mets+xml"]},"registered":true},{"content-type":"application/MF4","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/MF4=http://www.iana.org/assignments/media-types/application/MF4}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/MF4"]},"registered":true},{"content-type":"application/mikey","encoding":"base64","references":["IANA","RFC3830","{application/mikey=http://www.iana.org/assignments/media-types/application/mikey}"],"xrefs":{"rfc":["rfc3830"],"template":["application/mikey"]},"registered":true},{"content-type":"application/mods+xml","friendly":{"en":"Metadata Object Description Schema"},"encoding":"base64","extensions":["mods"],"references":["IANA","RFC6207","{application/mods+xml=http://www.iana.org/assignments/media-types/application/mods+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/mods+xml"]},"registered":true},{"content-type":"application/moss-keys","encoding":"base64","references":["IANA","RFC1848","{application/moss-keys=http://www.iana.org/assignments/media-types/application/moss-keys}"],"xrefs":{"rfc":["rfc1848"],"template":["application/moss-keys"]},"registered":true},{"content-type":"application/moss-signature","encoding":"base64","references":["IANA","RFC1848","{application/moss-signature=http://www.iana.org/assignments/media-types/application/moss-signature}"],"xrefs":{"rfc":["rfc1848"],"template":["application/moss-signature"]},"registered":true},{"content-type":"application/mosskey-data","encoding":"base64","references":["IANA","RFC1848","{application/mosskey-data=http://www.iana.org/assignments/media-types/application/mosskey-data}"],"xrefs":{"rfc":["rfc1848"],"template":["application/mosskey-data"]},"registered":true},{"content-type":"application/mosskey-request","encoding":"base64","references":["IANA","RFC1848","{application/mosskey-request=http://www.iana.org/assignments/media-types/application/mosskey-request}"],"xrefs":{"rfc":["rfc1848"],"template":["application/mosskey-request"]},"registered":true},{"content-type":"application/mp21","friendly":{"en":"MPEG-21"},"encoding":"base64","extensions":["m21","mp21"],"references":["IANA","RFC6381","[David_Singer]","{application/mp21=http://www.iana.org/assignments/media-types/application/mp21}"],"xrefs":{"rfc":["rfc6381"],"person":["David_Singer"],"template":["application/mp21"]},"registered":true},{"content-type":"application/mp4","friendly":{"en":"MPEG4"},"encoding":"base64","extensions":["mp4","mpg4","mp4s"],"references":["IANA","RFC4337","RFC6381","{application/mp4=http://www.iana.org/assignments/media-types/application/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["application/mp4"]},"registered":true},{"content-type":"application/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","{application/mpeg4-generic=http://www.iana.org/assignments/media-types/application/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640"],"template":["application/mpeg4-generic"]},"registered":true},{"content-type":"application/mpeg4-iod","encoding":"base64","references":["IANA","RFC4337","{application/mpeg4-iod=http://www.iana.org/assignments/media-types/application/mpeg4-iod}"],"xrefs":{"rfc":["rfc4337"],"template":["application/mpeg4-iod"]},"registered":true},{"content-type":"application/mpeg4-iod-xmt","encoding":"base64","references":["IANA","RFC4337","{application/mpeg4-iod-xmt=http://www.iana.org/assignments/media-types/application/mpeg4-iod-xmt}"],"xrefs":{"rfc":["rfc4337"],"template":["application/mpeg4-iod-xmt"]},"registered":true},{"content-type":"application/mrb-consumer+xml","encoding":"base64","references":["IANA","RFC6917","{application/mrb-consumer+xml=http://www.iana.org/assignments/media-types/application/mrb-consumer+xml}"],"xrefs":{"rfc":["rfc6917"],"template":["application/mrb-consumer+xml"]},"registered":true},{"content-type":"application/mrb-publish+xml","encoding":"base64","references":["IANA","RFC6917","{application/mrb-publish+xml=http://www.iana.org/assignments/media-types/application/mrb-publish+xml}"],"xrefs":{"rfc":["rfc6917"],"template":["application/mrb-publish+xml"]},"registered":true},{"content-type":"application/msc-ivr+xml","encoding":"base64","references":["IANA","RFC6231","{application/msc-ivr+xml=http://www.iana.org/assignments/media-types/application/msc-ivr+xml}"],"xrefs":{"rfc":["rfc6231"],"template":["application/msc-ivr+xml"]},"registered":true},{"content-type":"application/msc-mixer+xml","encoding":"base64","references":["IANA","RFC6505","{application/msc-mixer+xml=http://www.iana.org/assignments/media-types/application/msc-mixer+xml}"],"xrefs":{"rfc":["rfc6505"],"template":["application/msc-mixer+xml"]},"registered":true},{"content-type":"application/msword","friendly":{"en":"Microsoft Word"},"encoding":"base64","extensions":["doc","dot","wrd"],"references":["IANA","[Paul_Lindner]","{application/msword=http://www.iana.org/assignments/media-types/application/msword}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/msword"]},"registered":true},{"content-type":"application/mxf","friendly":{"en":"Material Exchange Format"},"encoding":"base64","extensions":["mxf"],"references":["IANA","RFC4539","{application/mxf=http://www.iana.org/assignments/media-types/application/mxf}"],"xrefs":{"rfc":["rfc4539"],"template":["application/mxf"]},"registered":true},{"content-type":"application/nasdata","encoding":"base64","references":["IANA","RFC4707","{application/nasdata=http://www.iana.org/assignments/media-types/application/nasdata}"],"xrefs":{"rfc":["rfc4707"],"template":["application/nasdata"]},"registered":true},{"content-type":"application/netcdf","encoding":"base64","extensions":["nc","cdf"],"registered":false},{"content-type":"application/news-checkgroups","encoding":"base64","references":["IANA","RFC5537","{application/news-checkgroups=http://www.iana.org/assignments/media-types/application/news-checkgroups}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-checkgroups"]},"registered":true},{"content-type":"application/news-groupinfo","encoding":"base64","references":["IANA","RFC5537","{application/news-groupinfo=http://www.iana.org/assignments/media-types/application/news-groupinfo}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-groupinfo"]},"registered":true},{"content-type":"application/news-message-id","encoding":"base64","obsolete":true,"references":["IANA","RFC1036","[Spencer]"],"registered":false},{"content-type":"application/news-transmission","encoding":"base64","references":["IANA","RFC5537","{application/news-transmission=http://www.iana.org/assignments/media-types/application/news-transmission}"],"xrefs":{"rfc":["rfc5537"],"template":["application/news-transmission"]},"registered":true},{"content-type":"application/nlsml+xml","encoding":"base64","references":["IANA","RFC6787","{application/nlsml+xml=http://www.iana.org/assignments/media-types/application/nlsml+xml}"],"xrefs":{"rfc":["rfc6787"],"template":["application/nlsml+xml"]},"registered":true},{"content-type":"application/nss","encoding":"base64","references":["IANA","[Michael_Hammer]","{application/nss=http://www.iana.org/assignments/media-types/application/nss}"],"xrefs":{"person":["Michael_Hammer"],"template":["application/nss"]},"registered":true},{"content-type":"application/ocsp-request","encoding":"base64","references":["IANA","RFC6960","{application/ocsp-request=http://www.iana.org/assignments/media-types/application/ocsp-request}"],"xrefs":{"rfc":["rfc6960"],"template":["application/ocsp-request"]},"registered":true},{"content-type":"application/ocsp-response","encoding":"base64","references":["IANA","RFC6960","{application/oscp-response=http://www.iana.org/assignments/media-types/application/oscp-response}"],"xrefs":{"rfc":["rfc6960"],"template":["application/oscp-response"]},"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"],"references":["IANA","RFC2045","RFC2046","{application/octet-stream=http://www.iana.org/assignments/media-types/application/octet-stream}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/octet-stream"]},"registered":true},{"content-type":"application/oda","friendly":{"en":"Office Document Architecture"},"encoding":"base64","extensions":["oda"],"references":["IANA","RFC2045","RFC2046","{application/ODA=http://www.iana.org/assignments/media-types/application/ODA}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/ODA"]},"registered":true},{"content-type":"application/ODX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/ODX=http://www.iana.org/assignments/media-types/application/ODX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/ODX"]},"registered":true},{"content-type":"application/oebps-package+xml","friendly":{"en":"Open eBook Publication Structure"},"encoding":"base64","extensions":["opf"],"references":["IANA","RFC4839","{application/oebps-package+xml=http://www.iana.org/assignments/media-types/application/oebps-package+xml}"],"xrefs":{"rfc":["rfc4839"],"template":["application/oebps-package+xml"]},"registered":true},{"content-type":"application/ogg","friendly":{"en":"Ogg"},"encoding":"base64","extensions":["ogx"],"references":["IANA","RFC5334","{application/ogg=http://www.iana.org/assignments/media-types/application/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["application/ogg"]},"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"],"references":["IANA","[Ecma_International_Helpdesk]","{application/oxps=http://www.iana.org/assignments/media-types/application/oxps}"],"xrefs":{"person":["Ecma_International_Helpdesk"],"template":["application/oxps"]},"registered":true},{"content-type":"application/p2p-overlay+xml","encoding":"base64","references":["IANA","RFC6940","{application/p2p-overlay+xml=http://www.iana.org/assignments/media-types/application/p2p-overlay+xml}"],"xrefs":{"rfc":["rfc6940"],"template":["application/p2p-overlay+xml"]},"registered":true},{"content-type":"application/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"application/patch-ops-error+xml","friendly":{"en":"XML Patch Framework"},"encoding":"base64","extensions":["xer"],"references":["IANA","RFC5261","{application/patch-ops-error+xml=http://www.iana.org/assignments/media-types/application/patch-ops-error+xml}"],"xrefs":{"rfc":["rfc5261"],"template":["application/patch-ops-error+xml"]},"registered":true},{"content-type":"application/pdf","friendly":{"en":"Adobe Portable Document Format"},"encoding":"base64","extensions":["pdf"],"references":["IANA","RFC3778","{application/pdf=http://www.iana.org/assignments/media-types/application/pdf}"],"xrefs":{"rfc":["rfc3778"],"template":["application/pdf"]},"registered":true},{"content-type":"application/PDX","encoding":"base64","references":["IANA","[ASAM]","[Thomas_Thomsen]","{application/PDX=http://www.iana.org/assignments/media-types/application/PDX}"],"xrefs":{"person":["ASAM","Thomas_Thomsen"],"template":["application/PDX"]},"registered":true},{"content-type":"application/pgp-encrypted","friendly":{"en":"Pretty Good Privacy"},"encoding":"7bit","extensions":["pgp"],"references":["IANA","RFC3156","{application/pgp-encrypted=http://www.iana.org/assignments/media-types/application/pgp-encrypted}"],"xrefs":{"rfc":["rfc3156"],"template":["application/pgp-encrypted"]},"registered":true},{"content-type":"application/pgp-keys","encoding":"7bit","references":["IANA","RFC3156"],"xrefs":{"rfc":["rfc3156"]},"registered":true,"signature":true},{"content-type":"application/pgp-signature","friendly":{"en":"Pretty Good Privacy - Signature"},"encoding":"base64","extensions":["asc","sig"],"references":["IANA","RFC3156","{application/pgp-signature=http://www.iana.org/assignments/media-types/application/pgp-signature}"],"xrefs":{"rfc":["rfc3156"],"template":["application/pgp-signature"]},"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","references":["IANA","RFC3863","{application/pidf+xml=http://www.iana.org/assignments/media-types/application/pidf+xml}"],"xrefs":{"rfc":["rfc3863"],"template":["application/pidf+xml"]},"registered":true},{"content-type":"application/pidf-diff+xml","encoding":"base64","references":["IANA","RFC5262","{application/pidf-diff+xml=http://www.iana.org/assignments/media-types/application/pidf-diff+xml}"],"xrefs":{"rfc":["rfc5262"],"template":["application/pidf-diff+xml"]},"registered":true},{"content-type":"application/pkcs10","friendly":{"en":"PKCS #10 - Certification Request Standard"},"encoding":"base64","extensions":["p10"],"references":["IANA","RFC5967","{application/pkcs10=http://www.iana.org/assignments/media-types/application/pkcs10}"],"xrefs":{"rfc":["rfc5967"],"template":["application/pkcs10"]},"registered":true,"signature":true},{"content-type":"application/pkcs7-mime","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7m","p7c"],"references":["IANA","RFC5751","RFC7114","{application/pkcs7-mime=http://www.iana.org/assignments/media-types/application/pkcs7-mime}"],"xrefs":{"rfc":["rfc5751","rfc7114"],"template":["application/pkcs7-mime"]},"registered":true,"signature":true},{"content-type":"application/pkcs7-signature","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7s"],"references":["IANA","RFC5751","{application/pkcs7-signature=http://www.iana.org/assignments/media-types/application/pkcs7-signature}"],"xrefs":{"rfc":["rfc5751"],"template":["application/pkcs7-signature"]},"registered":true,"signature":true},{"content-type":"application/pkcs8","friendly":{"en":"PKCS #8 - Private-Key Information Syntax Standard"},"encoding":"base64","extensions":["p8"],"references":["IANA","RFC5958","{application/pkcs8=http://www.iana.org/assignments/media-types/application/pkcs8}"],"xrefs":{"rfc":["rfc5958"],"template":["application/pkcs8"]},"registered":true},{"content-type":"application/pkix-attr-cert","friendly":{"en":"Attribute Certificate"},"encoding":"base64","extensions":["ac"],"references":["IANA","RFC5877","{application/pkix-attr-cert=http://www.iana.org/assignments/media-types/application/pkix-attr-cert}"],"xrefs":{"rfc":["rfc5877"],"template":["application/pkix-attr-cert"]},"registered":true},{"content-type":"application/pkix-cert","friendly":{"en":"Internet Public Key Infrastructure - Certificate"},"encoding":"base64","extensions":["cer"],"references":["IANA","RFC2585","{application/pkix-cert=http://www.iana.org/assignments/media-types/application/pkix-cert}"],"xrefs":{"rfc":["rfc2585"],"template":["application/pkix-cert"]},"registered":true},{"content-type":"application/pkix-crl","friendly":{"en":"Internet Public Key Infrastructure - Certificate Revocation Lists"},"encoding":"base64","extensions":["crl"],"references":["IANA","RFC2585","{application/pkix-crl=http://www.iana.org/assignments/media-types/application/pkix-crl}"],"xrefs":{"rfc":["rfc2585"],"template":["application/pkix-crl"]},"registered":true},{"content-type":"application/pkix-pkipath","friendly":{"en":"Internet Public Key Infrastructure - Certification Path"},"encoding":"base64","extensions":["pkipath"],"references":["IANA","RFC6066","{application/pkix-pkipath=http://www.iana.org/assignments/media-types/application/pkix-pkipath}"],"xrefs":{"rfc":["rfc6066"],"template":["application/pkix-pkipath"]},"registered":true},{"content-type":"application/pkixcmp","friendly":{"en":"Internet Public Key Infrastructure - Certificate Management Protocole"},"encoding":"base64","extensions":["pki"],"references":["IANA","RFC2510","{application/pkixcmp=http://www.iana.org/assignments/media-types/application/pkixcmp}"],"xrefs":{"rfc":["rfc2510"],"template":["application/pkixcmp"]},"registered":true},{"content-type":"application/pls+xml","friendly":{"en":"Pronunciation Lexicon Specification"},"encoding":"base64","extensions":["pls"],"references":["IANA","RFC4267","{application/pls+xml=http://www.iana.org/assignments/media-types/application/pls+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/pls+xml"]},"registered":true},{"content-type":"application/poc-settings+xml","encoding":"base64","references":["IANA","RFC4354","{application/poc-settings+xml=http://www.iana.org/assignments/media-types/application/poc-settings+xml}"],"xrefs":{"rfc":["rfc4354"],"template":["application/poc-settings+xml"]},"registered":true},{"content-type":"application/postscript","friendly":{"en":"PostScript"},"encoding":"8bit","extensions":["ai","eps","ps"],"references":["IANA","RFC2045","RFC2046","{application/postscript=http://www.iana.org/assignments/media-types/application/postscript}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["application/postscript"]},"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","references":["IANA","[W3C]","[Ivan_Herman]","{application/provenance+xml=http://www.iana.org/assignments/media-types/application/provenance+xml}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["application/provenance+xml"]},"registered":true},{"content-type":"application/prs.alvestrand.titrax-sheet","encoding":"base64","references":["IANA","[Harald_T._Alvestrand]","{application/prs.alvestrand.titrax-sheet=http://www.iana.org/assignments/media-types/application/prs.alvestrand.titrax-sheet}"],"xrefs":{"person":["Harald_T._Alvestrand"],"template":["application/prs.alvestrand.titrax-sheet"]},"registered":true},{"content-type":"application/prs.cww","friendly":{"en":"CU-Writer"},"encoding":"base64","extensions":["cw","cww"],"references":["IANA","[Khemchart_Rungchavalnont]","{application/prs.cww=http://www.iana.org/assignments/media-types/application/prs.cww}"],"xrefs":{"person":["Khemchart_Rungchavalnont"],"template":["application/prs.cww"]},"registered":true},{"content-type":"application/prs.hpub+zip","encoding":"base64","references":["IANA","[Giulio_Zambon]","{application/prs.hpub+zip=http://www.iana.org/assignments/media-types/application/prs.hpub+zip}"],"xrefs":{"person":["Giulio_Zambon"],"template":["application/prs.hpub+zip"]},"registered":true},{"content-type":"application/prs.nprend","encoding":"base64","extensions":["rnd","rct"],"references":["IANA","[Jay_Doggett]","{application/prs.nprend=http://www.iana.org/assignments/media-types/application/prs.nprend}"],"xrefs":{"person":["Jay_Doggett"],"template":["application/prs.nprend"]},"registered":true},{"content-type":"application/prs.plucker","encoding":"base64","references":["IANA","[Bill_Janssen]","{application/prs.plucker=http://www.iana.org/assignments/media-types/application/prs.plucker}"],"xrefs":{"person":["Bill_Janssen"],"template":["application/prs.plucker"]},"registered":true},{"content-type":"application/prs.rdf-xml-crypt","encoding":"base64","references":["IANA","[Toby_Inkster]","{application/prs.rdf-xml-crypt=http://www.iana.org/assignments/media-types/application/prs.rdf-xml-crypt}"],"xrefs":{"person":["Toby_Inkster"],"template":["application/prs.rdf-xml-crypt"]},"registered":true},{"content-type":"application/prs.xsf+xml","encoding":"base64","references":["IANA","[Maik_Stührenberg]","{application/prs.xsf+xml=http://www.iana.org/assignments/media-types/application/prs.xsf+xml}"],"xrefs":{"person":["Maik_Stührenberg"],"template":["application/prs.xsf+xml"]},"registered":true},{"content-type":"application/pskc+xml","friendly":{"en":"Portable Symmetric Key Container"},"encoding":"base64","extensions":["pskcxml"],"references":["IANA","RFC6030","{application/pskc+xml=http://www.iana.org/assignments/media-types/application/pskc+xml}"],"xrefs":{"rfc":["rfc6030"],"template":["application/pskc+xml"]},"registered":true},{"content-type":"application/qsig","encoding":"base64","references":["IANA","RFC3204","{application/QSIG=http://www.iana.org/assignments/media-types/application/QSIG}"],"xrefs":{"rfc":["rfc3204"],"template":["application/QSIG"]},"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","references":["IANA","RFC6682","{application/raptorfec=http://www.iana.org/assignments/media-types/application/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["application/raptorfec"]},"registered":true},{"content-type":"application/rdap+json","encoding":"base64","references":["IANA","RFC7483","{application/rdap+json=http://www.iana.org/assignments/media-types/application/rdap+json}"],"xrefs":{"rfc":["rfc7483"],"template":["application/rdap+json"]},"registered":true},{"content-type":"application/rdf+xml","friendly":{"en":"Resource Description Framework"},"encoding":"8bit","extensions":["rdf"],"references":["IANA","RFC3870","{application/rdf+xml=http://www.iana.org/assignments/media-types/application/rdf+xml}"],"xrefs":{"rfc":["rfc3870"],"template":["application/rdf+xml"]},"registered":true},{"content-type":"application/reginfo+xml","friendly":{"en":"IMS Networks"},"encoding":"base64","extensions":["rif"],"references":["IANA","RFC3680","{application/reginfo+xml=http://www.iana.org/assignments/media-types/application/reginfo+xml}"],"xrefs":{"rfc":["rfc3680"],"template":["application/reginfo+xml"]},"registered":true},{"content-type":"application/relax-ng-compact-syntax","friendly":{"en":"Relax NG Compact Syntax"},"encoding":"base64","extensions":["rnc"],"references":["IANA","{http://www.jtc1sc34.org/repository/0661.pdf}","{application/relax-ng-compact-syntax=http://www.iana.org/assignments/media-types/application/relax-ng-compact-syntax}"],"xrefs":{"uri":["http://www.jtc1sc34.org/repository/0661.pdf"],"template":["application/relax-ng-compact-syntax"]},"registered":true},{"content-type":"application/remote-printing","encoding":"base64","references":["IANA","RFC1486","[Marshall_Rose]","{application/remote-printing=http://www.iana.org/assignments/media-types/application/remote-printing}"],"xrefs":{"rfc":["rfc1486"],"person":["Marshall_Rose"],"template":["application/remote-printing"]},"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","references":["IANA","RFC7071","{application/reputon+json=http://www.iana.org/assignments/media-types/application/reputon+json}"],"xrefs":{"rfc":["rfc7071"],"template":["application/reputon+json"]},"registered":true},{"content-type":"application/resource-lists+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rl"],"references":["IANA","RFC4826","{application/resource-lists+xml=http://www.iana.org/assignments/media-types/application/resource-lists+xml}"],"xrefs":{"rfc":["rfc4826"],"template":["application/resource-lists+xml"]},"registered":true},{"content-type":"application/resource-lists-diff+xml","friendly":{"en":"XML Resource Lists Diff"},"encoding":"base64","extensions":["rld"],"references":["IANA","RFC5362","{application/resource-lists-diff+xml=http://www.iana.org/assignments/media-types/application/resource-lists-diff+xml}"],"xrefs":{"rfc":["rfc5362"],"template":["application/resource-lists-diff+xml"]},"registered":true},{"content-type":"application/riscos","encoding":"base64","references":["IANA","[Nick_Smith]","{application/riscos=http://www.iana.org/assignments/media-types/application/riscos}"],"xrefs":{"person":["Nick_Smith"],"template":["application/riscos"]},"registered":true},{"content-type":"application/rlmi+xml","encoding":"base64","references":["IANA","RFC4662","{application/rlmi+xml=http://www.iana.org/assignments/media-types/application/rlmi+xml}"],"xrefs":{"rfc":["rfc4662"],"template":["application/rlmi+xml"]},"registered":true},{"content-type":"application/rls-services+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rs"],"references":["IANA","RFC4826","{application/rls-services+xml=http://www.iana.org/assignments/media-types/application/rls-services+xml}"],"xrefs":{"rfc":["rfc4826"],"template":["application/rls-services+xml"]},"registered":true},{"content-type":"application/rpki-ghostbusters","encoding":"base64","extensions":["gbr"],"references":["IANA","RFC6493","{application/rpki-ghostbusters=http://www.iana.org/assignments/media-types/application/rpki-ghostbusters}"],"xrefs":{"rfc":["rfc6493"],"template":["application/rpki-ghostbusters"]},"registered":true},{"content-type":"application/rpki-manifest","encoding":"base64","extensions":["mft"],"references":["IANA","RFC6481","{application/rpki-manifest=http://www.iana.org/assignments/media-types/application/rpki-manifest}"],"xrefs":{"rfc":["rfc6481"],"template":["application/rpki-manifest"]},"registered":true},{"content-type":"application/rpki-roa","encoding":"base64","extensions":["roa"],"references":["IANA","RFC6481","{application/rpki-roa=http://www.iana.org/assignments/media-types/application/rpki-roa}"],"xrefs":{"rfc":["rfc6481"],"template":["application/rpki-roa"]},"registered":true},{"content-type":"application/rpki-updown","encoding":"base64","references":["IANA","RFC6492","{application/rpki-updown=http://www.iana.org/assignments/media-types/application/rpki-updown}"],"xrefs":{"rfc":["rfc6492"],"template":["application/rpki-updown"]},"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"],"references":["IANA","[Paul_Lindner]","{application/rtf=http://www.iana.org/assignments/media-types/application/rtf}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/rtf"]},"registered":true},{"content-type":"application/rtploopback","encoding":"base64","references":["IANA","RFC6849","{application/rtploopback=http://www.iana.org/assignments/media-types/application/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["application/rtploopback"]},"registered":true},{"content-type":"application/rtx","encoding":"base64","references":["IANA","RFC4588","{application/rtx=http://www.iana.org/assignments/media-types/application/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["application/rtx"]},"registered":true},{"content-type":"application/samlassertion+xml","encoding":"base64","references":["IANA","[OASIS_Security_Services_Technical_Committee_SSTC]","{application/samlassertion+xml=http://www.iana.org/assignments/media-types/application/samlassertion+xml}"],"xrefs":{"person":["OASIS_Security_Services_Technical_Committee_SSTC"],"template":["application/samlassertion+xml"]},"registered":true},{"content-type":"application/samlmetadata+xml","encoding":"base64","references":["IANA","[OASIS_Security_Services_Technical_Committee_SSTC]","{application/samlmetadata+xml=http://www.iana.org/assignments/media-types/application/samlmetadata+xml}"],"xrefs":{"person":["OASIS_Security_Services_Technical_Committee_SSTC"],"template":["application/samlmetadata+xml"]},"registered":true},{"content-type":"application/sbml+xml","friendly":{"en":"Systems Biology Markup Language"},"encoding":"base64","extensions":["sbml"],"references":["IANA","RFC3823","{application/sbml+xml=http://www.iana.org/assignments/media-types/application/sbml+xml}"],"xrefs":{"rfc":["rfc3823"],"template":["application/sbml+xml"]},"registered":true},{"content-type":"application/scaip+xml","encoding":"base64","references":["IANA","[SIS]","[Oskar_Jonsson]","{application/scaip+xml=http://www.iana.org/assignments/media-types/application/scaip+xml}"],"xrefs":{"person":["Oskar_Jonsson","SIS"],"template":["application/scaip+xml"]},"registered":true},{"content-type":"application/scvp-cv-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Request"},"encoding":"base64","extensions":["scq"],"references":["IANA","RFC5055","{application/scvp-cv-request=http://www.iana.org/assignments/media-types/application/scvp-cv-request}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-cv-request"]},"registered":true},{"content-type":"application/scvp-cv-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Response"},"encoding":"base64","extensions":["scs"],"references":["IANA","RFC5055","{application/scvp-cv-response=http://www.iana.org/assignments/media-types/application/scvp-cv-response}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-cv-response"]},"registered":true},{"content-type":"application/scvp-vp-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Request"},"encoding":"base64","extensions":["spq"],"references":["IANA","RFC5055","{application/scvp-vp-request=http://www.iana.org/assignments/media-types/application/scvp-vp-request}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-vp-request"]},"registered":true},{"content-type":"application/scvp-vp-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Response"},"encoding":"base64","extensions":["spp"],"references":["IANA","RFC5055","{application/scvp-vp-response=http://www.iana.org/assignments/media-types/application/scvp-vp-response}"],"xrefs":{"rfc":["rfc5055"],"template":["application/scvp-vp-response"]},"registered":true},{"content-type":"application/sdp","friendly":{"en":"Session Description Protocol"},"encoding":"base64","extensions":["sdp"],"references":["IANA","RFC4566","{application/sdp=http://www.iana.org/assignments/media-types/application/sdp}"],"xrefs":{"rfc":["rfc4566"],"template":["application/sdp"]},"registered":true},{"content-type":"application/sep+xml","encoding":"base64","references":["IANA","[Robby_Simpson]","[ZigBee]","{application/sep+xml=http://www.iana.org/assignments/media-types/application/sep+xml}"],"xrefs":{"person":["Robby_Simpson","ZigBee"],"template":["application/sep+xml"]},"registered":true},{"content-type":"application/sep-exi","encoding":"base64","references":["IANA","[Robby_Simpson]","[ZigBee]","{application/sep-exi=http://www.iana.org/assignments/media-types/application/sep-exi}"],"xrefs":{"person":["Robby_Simpson","ZigBee"],"template":["application/sep-exi"]},"registered":true},{"content-type":"application/session-info","encoding":"base64","references":["IANA","[ThreeGPP]","[Frederic_Firmin]","{application/session-info=http://www.iana.org/assignments/media-types/application/session-info}"],"xrefs":{"person":["Frederic_Firmin","ThreeGPP"],"template":["application/session-info"]},"registered":true},{"content-type":"application/set","encoding":"base64","registered":false},{"content-type":"application/set-payment","encoding":"base64","references":["IANA","[Brian_Korver]","{application/set-payment=http://www.iana.org/assignments/media-types/application/set-payment}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-payment"]},"registered":true},{"content-type":"application/set-payment-initiation","friendly":{"en":"Secure Electronic Transaction - Payment"},"encoding":"base64","extensions":["setpay"],"references":["IANA","[Brian_Korver]","{application/set-payment-initiation=http://www.iana.org/assignments/media-types/application/set-payment-initiation}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-payment-initiation"]},"registered":true},{"content-type":"application/set-registration","encoding":"base64","references":["IANA","[Brian_Korver]","{application/set-registration=http://www.iana.org/assignments/media-types/application/set-registration}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-registration"]},"registered":true},{"content-type":"application/set-registration-initiation","friendly":{"en":"Secure Electronic Transaction - Registration"},"encoding":"base64","extensions":["setreg"],"references":["IANA","[Brian_Korver]","{application/set-registration-initiation=http://www.iana.org/assignments/media-types/application/set-registration-initiation}"],"xrefs":{"person":["Brian_Korver"],"template":["application/set-registration-initiation"]},"registered":true},{"content-type":"application/sgml","encoding":"base64","extensions":["sgml"],"references":["IANA","RFC1874","{application/SGML=http://www.iana.org/assignments/media-types/application/SGML}"],"xrefs":{"rfc":["rfc1874"],"template":["application/SGML"]},"registered":true},{"content-type":"application/sgml-open-catalog","encoding":"base64","extensions":["soc"],"references":["IANA","[Paul_Grosso]","{application/sgml-open-catalog=http://www.iana.org/assignments/media-types/application/sgml-open-catalog}"],"xrefs":{"person":["Paul_Grosso"],"template":["application/sgml-open-catalog"]},"registered":true},{"content-type":"application/shf+xml","friendly":{"en":"S Hexdump Format"},"encoding":"base64","extensions":["shf"],"references":["IANA","RFC4194","{application/shf+xml=http://www.iana.org/assignments/media-types/application/shf+xml}"],"xrefs":{"rfc":["rfc4194"],"template":["application/shf+xml"]},"registered":true},{"content-type":"application/sieve","encoding":"base64","extensions":["siv"],"references":["IANA","RFC5228","{application/sieve=http://www.iana.org/assignments/media-types/application/sieve}"],"xrefs":{"rfc":["rfc5228"],"template":["application/sieve"]},"registered":true},{"content-type":"application/simple-filter+xml","encoding":"base64","references":["IANA","RFC4661","{application/simple-filter+xml=http://www.iana.org/assignments/media-types/application/simple-filter+xml}"],"xrefs":{"rfc":["rfc4661"],"template":["application/simple-filter+xml"]},"registered":true},{"content-type":"application/simple-message-summary","encoding":"base64","references":["IANA","RFC3842","{application/simple-message-summary=http://www.iana.org/assignments/media-types/application/simple-message-summary}"],"xrefs":{"rfc":["rfc3842"],"template":["application/simple-message-summary"]},"registered":true},{"content-type":"application/simpleSymbolContainer","encoding":"base64","references":["IANA","[ThreeGPP]","{application/simpleSymbolContainer=http://www.iana.org/assignments/media-types/application/simpleSymbolContainer}"],"xrefs":{"person":["ThreeGPP"],"template":["application/simpleSymbolContainer"]},"registered":true},{"content-type":"application/SLA","encoding":"base64","registered":false},{"content-type":"application/slate","encoding":"base64","references":["IANA","[Terry_Crowley]","{application/slate=http://www.iana.org/assignments/media-types/application/slate}"],"xrefs":{"person":["Terry_Crowley"],"template":["application/slate"]},"registered":true},{"content-type":"application/smil","encoding":"8bit","extensions":["smi","smil"],"obsolete":true,"use-instead":"application/smil+xml","references":["IANA","RFC4536","{application/smil=http://www.iana.org/assignments/media-types/application/smil}"],"xrefs":{"rfc":["rfc4536"],"template":["application/smil"],"notes":["- OBSOLETED in favor of application/smil+xml"]},"registered":true},{"content-type":"application/smil+xml","friendly":{"en":"Synchronized Multimedia Integration Language"},"encoding":"8bit","extensions":["smi","smil"],"references":["IANA","RFC4536","{application/smil+xml=http://www.iana.org/assignments/media-types/application/smil+xml}"],"xrefs":{"rfc":["rfc4536"],"template":["application/smil+xml"]},"registered":true},{"content-type":"application/smpte336m","encoding":"base64","references":["IANA","RFC6597","{application/smpte336m=http://www.iana.org/assignments/media-types/application/smpte336m}"],"xrefs":{"rfc":["rfc6597"],"template":["application/smpte336m"]},"registered":true},{"content-type":"application/soap+fastinfoset","encoding":"base64","references":["IANA","[ITU-T_ASN.1_Rapporteur]","{application/soap+fastinfoset=http://www.iana.org/assignments/media-types/application/soap+fastinfoset}"],"xrefs":{"person":["ITU-T_ASN.1_Rapporteur"],"template":["application/soap+fastinfoset"]},"registered":true},{"content-type":"application/soap+xml","encoding":"base64","references":["IANA","RFC3902","{application/soap+xml=http://www.iana.org/assignments/media-types/application/soap+xml}"],"xrefs":{"rfc":["rfc3902"],"template":["application/soap+xml"]},"registered":true},{"content-type":"application/solids","encoding":"base64","registered":false},{"content-type":"application/sparql-query","friendly":{"en":"SPARQL - Query"},"encoding":"base64","extensions":["rq"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType"]},"registered":true},{"content-type":"application/sparql-results+xml","friendly":{"en":"SPARQL - Results"},"encoding":"base64","extensions":["srx"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime"]},"registered":true},{"content-type":"application/spirits-event+xml","encoding":"base64","references":["IANA","RFC3910","{application/spirits-event+xml=http://www.iana.org/assignments/media-types/application/spirits-event+xml}"],"xrefs":{"rfc":["rfc3910"],"template":["application/spirits-event+xml"]},"registered":true},{"content-type":"application/sql","encoding":"base64","references":["IANA","RFC6922","{application/sql=http://www.iana.org/assignments/media-types/application/sql}"],"xrefs":{"rfc":["rfc6922"],"template":["application/sql"]},"registered":true},{"content-type":"application/srgs","friendly":{"en":"Speech Recognition Grammar Specification"},"encoding":"base64","extensions":["gram"],"references":["IANA","RFC4267","{application/srgs=http://www.iana.org/assignments/media-types/application/srgs}"],"xrefs":{"rfc":["rfc4267"],"template":["application/srgs"]},"registered":true},{"content-type":"application/srgs+xml","friendly":{"en":"Speech Recognition Grammar Specification - XML"},"encoding":"base64","extensions":["grxml"],"references":["IANA","RFC4267","{application/srgs+xml=http://www.iana.org/assignments/media-types/application/srgs+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/srgs+xml"]},"registered":true},{"content-type":"application/sru+xml","friendly":{"en":"Search/Retrieve via URL Response Format"},"encoding":"base64","extensions":["sru"],"references":["IANA","RFC6207","{application/sru+xml=http://www.iana.org/assignments/media-types/application/sru+xml}"],"xrefs":{"rfc":["rfc6207"],"template":["application/sru+xml"]},"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"],"references":["IANA","RFC4267","{application/ssml+xml=http://www.iana.org/assignments/media-types/application/ssml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/ssml+xml"]},"registered":true},{"content-type":"application/STEP","encoding":"base64","registered":false},{"content-type":"application/tamp-apex-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-apex-update=http://www.iana.org/assignments/media-types/application/tamp-apex-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-apex-update"]},"registered":true},{"content-type":"application/tamp-apex-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-apex-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-apex-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-apex-update-confirm"]},"registered":true},{"content-type":"application/tamp-community-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-community-update=http://www.iana.org/assignments/media-types/application/tamp-community-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-community-update"]},"registered":true},{"content-type":"application/tamp-community-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-community-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-community-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-community-update-confirm"]},"registered":true},{"content-type":"application/tamp-error","encoding":"base64","references":["IANA","RFC5934","{application/tamp-error=http://www.iana.org/assignments/media-types/application/tamp-error}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-error"]},"registered":true},{"content-type":"application/tamp-sequence-adjust","encoding":"base64","references":["IANA","RFC5934","{application/tamp-sequence-adjust=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-sequence-adjust"]},"registered":true},{"content-type":"application/tamp-sequence-adjust-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-sequence-adjust-confirm=http://www.iana.org/assignments/media-types/application/tamp-sequence-adjust-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-sequence-adjust-confirm"]},"registered":true},{"content-type":"application/tamp-status-query","encoding":"base64","references":["IANA","RFC5934","{application/tamp-status-query=http://www.iana.org/assignments/media-types/application/tamp-status-query}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-status-query"]},"registered":true},{"content-type":"application/tamp-status-response","encoding":"base64","references":["IANA","RFC5934","{application/tamp-status-response=http://www.iana.org/assignments/media-types/application/tamp-status-response}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-status-response"]},"registered":true},{"content-type":"application/tamp-update","encoding":"base64","references":["IANA","RFC5934","{application/tamp-update=http://www.iana.org/assignments/media-types/application/tamp-update}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-update"]},"registered":true},{"content-type":"application/tamp-update-confirm","encoding":"base64","references":["IANA","RFC5934","{application/tamp-update-confirm=http://www.iana.org/assignments/media-types/application/tamp-update-confirm}"],"xrefs":{"rfc":["rfc5934"],"template":["application/tamp-update-confirm"]},"registered":true},{"content-type":"application/tei+xml","friendly":{"en":"Text Encoding and Interchange"},"encoding":"base64","extensions":["tei","teicorpus"],"references":["IANA","RFC6129","{application/tei+xml=http://www.iana.org/assignments/media-types/application/tei+xml}"],"xrefs":{"rfc":["rfc6129"],"template":["application/tei+xml"]},"registered":true},{"content-type":"application/thraud+xml","friendly":{"en":"Sharing Transaction Fraud Data"},"encoding":"base64","extensions":["tfi"],"references":["IANA","RFC5941","{application/thraud+xml=http://www.iana.org/assignments/media-types/application/thraud+xml}"],"xrefs":{"rfc":["rfc5941"],"template":["application/thraud+xml"]},"registered":true},{"content-type":"application/timestamp-query","encoding":"base64","references":["IANA","RFC3161","{application/timestamp-query=http://www.iana.org/assignments/media-types/application/timestamp-query}"],"xrefs":{"rfc":["rfc3161"],"template":["application/timestamp-query"]},"registered":true},{"content-type":"application/timestamp-reply","encoding":"base64","references":["IANA","RFC3161","{application/timestamp-reply=http://www.iana.org/assignments/media-types/application/timestamp-reply}"],"xrefs":{"rfc":["rfc3161"],"template":["application/timestamp-reply"]},"registered":true},{"content-type":"application/timestamped-data","friendly":{"en":"Time Stamped Data Envelope"},"encoding":"base64","extensions":["tsd"],"references":["IANA","RFC5955","{application/timestamped-data=http://www.iana.org/assignments/media-types/application/timestamped-data}"],"xrefs":{"rfc":["rfc5955"],"template":["application/timestamped-data"]},"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","references":["IANA","[W3C]","[W3C_Timed_Text_Working_Group]","{application/ttml+xml=http://www.iana.org/assignments/media-types/application/ttml+xml}"],"xrefs":{"person":["W3C","W3C_Timed_Text_Working_Group"],"template":["application/ttml+xml"]},"registered":true},{"content-type":"application/tve-trigger","encoding":"base64","references":["IANA","[Linda_Welsh]","{application/tve-trigger=http://www.iana.org/assignments/media-types/application/tve-trigger}"],"xrefs":{"person":["Linda_Welsh"],"template":["application/tve-trigger"]},"registered":true},{"content-type":"application/ulpfec","encoding":"base64","references":["IANA","RFC5109","{application/ulpfec=http://www.iana.org/assignments/media-types/application/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["application/ulpfec"]},"registered":true},{"content-type":"application/urc-grpsheet+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-grpsheet+xml=http://www.iana.org/assignments/media-types/application/urc-grpsheet+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-grpsheet+xml"]},"registered":true},{"content-type":"application/urc-ressheet+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-ressheet+xml=http://www.iana.org/assignments/media-types/application/urc-ressheet+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-ressheet+xml"]},"registered":true},{"content-type":"application/urc-targetdesc+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-targetdesc+xml=http://www.iana.org/assignments/media-types/application/urc-targetdesc+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-targetdesc+xml"]},"registered":true},{"content-type":"application/urc-uisocketdesc+xml","encoding":"base64","references":["IANA","[Gottfried_Zimmermann]","{application/urc-uisocketdesc+xml=http://www.iana.org/assignments/media-types/application/urc-uisocketdesc+xml}"],"xrefs":{"person":["Gottfried_Zimmermann"],"template":["application/urc-uisocketdesc+xml"]},"registered":true},{"content-type":"application/vcard+json","encoding":"base64","references":["IANA","RFC7095","{application/vcard+json=http://www.iana.org/assignments/media-types/application/vcard+json}"],"xrefs":{"rfc":["rfc7095"],"template":["application/vcard+json"]},"registered":true},{"content-type":"application/vcard+xml","encoding":"base64","references":["IANA","RFC6351","{application/vcard+xml=http://www.iana.org/assignments/media-types/application/vcard+xml}"],"xrefs":{"rfc":["rfc6351"],"template":["application/vcard+xml"]},"registered":true},{"content-type":"application/vda","encoding":"base64","registered":false},{"content-type":"application/vemmi","encoding":"base64","references":["IANA","RFC2122","{application/vemmi=http://www.iana.org/assignments/media-types/application/vemmi}"],"xrefs":{"rfc":["rfc2122"],"template":["application/vemmi"]},"registered":true},{"content-type":"application/VMSBACKUP","encoding":"base64","extensions":["bck"],"obsolete":true,"use-instead":"application/x-VMSBACKUP","registered":false},{"content-type":"application/vnd.3gpp.bsf+xml","encoding":"base64","references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.bsf+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp.bsf+xml}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.bsf+xml"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-large","friendly":{"en":"3rd Generation Partnership Project - Pic Large"},"encoding":"base64","extensions":["plb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-large=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-large}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-large"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-small","friendly":{"en":"3rd Generation Partnership Project - Pic Small"},"encoding":"base64","extensions":["psb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-small=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-small}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-small"]},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-var","friendly":{"en":"3rd Generation Partnership Project - Pic Var"},"encoding":"base64","extensions":["pvb"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.pic-bw-var=http://www.iana.org/assignments/media-types/application/vnd.3gpp.pic-bw-var}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.pic-bw-var"]},"registered":true},{"content-type":"application/vnd.3gpp.sms","encoding":"base64","extensions":["sms"],"references":["IANA","[John_M_Meredith]","{application/vnd.3gpp.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp.sms}"],"xrefs":{"person":["John_M_Meredith"],"template":["application/vnd.3gpp.sms"]},"registered":true},{"content-type":"application/vnd.3gpp2.bcmcsinfo+xml","encoding":"base64","references":["IANA","[Andy_Dryden]","{application/vnd.3gpp2.bcmcsinfo+xml=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.bcmcsinfo+xml}"],"xrefs":{"person":["Andy_Dryden"],"template":["application/vnd.3gpp2.bcmcsinfo+xml"]},"registered":true},{"content-type":"application/vnd.3gpp2.sms","encoding":"base64","references":["IANA","[AC_Mahendran]","{application/vnd.3gpp2.sms=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.sms}"],"xrefs":{"person":["AC_Mahendran"],"template":["application/vnd.3gpp2.sms"]},"registered":true},{"content-type":"application/vnd.3gpp2.tcap","friendly":{"en":"3rd Generation Partnership Project - Transaction Capabilities Application Part"},"encoding":"base64","extensions":["tcap"],"references":["IANA","[AC_Mahendran]","{application/vnd.3gpp2.tcap=http://www.iana.org/assignments/media-types/application/vnd.3gpp2.tcap}"],"xrefs":{"person":["AC_Mahendran"],"template":["application/vnd.3gpp2.tcap"]},"registered":true},{"content-type":"application/vnd.3M.Post-it-Notes","friendly":{"en":"3M Post It Notes"},"encoding":"base64","extensions":["pwn"],"references":["IANA","[Michael_OBrien]","{application/vnd.3M.Post-it-Notes=http://www.iana.org/assignments/media-types/application/vnd.3M.Post-it-Notes}"],"xrefs":{"person":["Michael_OBrien"],"template":["application/vnd.3M.Post-it-Notes"]},"registered":true},{"content-type":"application/vnd.accpac.simply.aso","friendly":{"en":"Simply Accounting"},"encoding":"base64","extensions":["aso"],"references":["IANA","[Steve_Leow]","{application/vnd.accpac.simply.aso=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.aso}"],"xrefs":{"person":["Steve_Leow"],"template":["application/vnd.accpac.simply.aso"]},"registered":true},{"content-type":"application/vnd.accpac.simply.imp","friendly":{"en":"Simply Accounting - Data Import"},"encoding":"base64","extensions":["imp"],"references":["IANA","[Steve_Leow]","{application/vnd.accpac.simply.imp=http://www.iana.org/assignments/media-types/application/vnd.accpac.simply.imp}"],"xrefs":{"person":["Steve_Leow"],"template":["application/vnd.accpac.simply.imp"]},"registered":true},{"content-type":"application/vnd.acucobol","friendly":{"en":"ACU Cobol"},"encoding":"base64","extensions":["acu"],"references":["IANA","[Dovid_Lubin]","{application/vnd-acucobol=http://www.iana.org/assignments/media-types/application/vnd-acucobol}"],"xrefs":{"person":["Dovid_Lubin"],"template":["application/vnd-acucobol"]},"registered":true},{"content-type":"application/vnd.acucorp","friendly":{"en":"ACU Cobol"},"encoding":"7bit","extensions":["atc","acutc"],"references":["IANA","[Dovid_Lubin]","{application/vnd.acucorp=http://www.iana.org/assignments/media-types/application/vnd.acucorp}"],"xrefs":{"person":["Dovid_Lubin"],"template":["application/vnd.acucorp"]},"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","references":["IANA","[Henrik_Andersson]","{application/vnd.adobe.flash-movie=http://www.iana.org/assignments/media-types/application/vnd.adobe.flash-movie}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.adobe.flash-movie"]},"registered":true},{"content-type":"application/vnd.adobe.formscentral.fcdt","encoding":"base64","extensions":["fcdt"],"references":["IANA","[Chris_Solc]","{application/vnd.adobe.formscentral.fcdt=http://www.iana.org/assignments/media-types/application/vnd.adobe.formscentral.fcdt}"],"xrefs":{"person":["Chris_Solc"],"template":["application/vnd.adobe.formscentral.fcdt"]},"registered":true},{"content-type":"application/vnd.adobe.fxp","friendly":{"en":"Adobe Flex Project"},"encoding":"base64","extensions":["fxp","fxpl"],"references":["IANA","[Robert_Brambley]","[Steven_Heintz]","{application/vnd.adobe.fxp=http://www.iana.org/assignments/media-types/application/vnd.adobe.fxp}"],"xrefs":{"person":["Robert_Brambley","Steven_Heintz"],"template":["application/vnd.adobe.fxp"]},"registered":true},{"content-type":"application/vnd.adobe.partial-upload","encoding":"base64","references":["IANA","[Tapani_Otala]","{application/vnd.adobe.partial-upload=http://www.iana.org/assignments/media-types/application/vnd.adobe.partial-upload}"],"xrefs":{"person":["Tapani_Otala"],"template":["application/vnd.adobe.partial-upload"]},"registered":true},{"content-type":"application/vnd.adobe.xdp+xml","friendly":{"en":"Adobe XML Data Package"},"encoding":"base64","extensions":["xdp"],"references":["IANA","[John_Brinkman]","{application/vnd.adobe.xdp+xml=http://www.iana.org/assignments/media-types/application/vnd.adobe.xdp+xml}"],"xrefs":{"person":["John_Brinkman"],"template":["application/vnd.adobe.xdp+xml"]},"registered":true},{"content-type":"application/vnd.adobe.xfdf","friendly":{"en":"Adobe XML Forms Data Format"},"encoding":"base64","extensions":["xfdf"],"references":["IANA","[Roberto_Perelman]","{application/vnd.adobe.xfdf=http://www.iana.org/assignments/media-types/application/vnd.adobe.xfdf}"],"xrefs":{"person":["Roberto_Perelman"],"template":["application/vnd.adobe.xfdf"]},"registered":true},{"content-type":"application/vnd.aether.imp","encoding":"base64","references":["IANA","[Jay_Moskowitz]","{application/vnd.aether.imp=http://www.iana.org/assignments/media-types/application/vnd.aether.imp}"],"xrefs":{"person":["Jay_Moskowitz"],"template":["application/vnd.aether.imp"]},"registered":true},{"content-type":"application/vnd.ah-barcode","encoding":"base64","references":["IANA","[Katsuhiko_Ichinose]","{application/vnd.ah-barcode=http://www.iana.org/assignments/media-types/application/vnd.ah-barcode}"],"xrefs":{"person":["Katsuhiko_Ichinose"],"template":["application/vnd.ah-barcode"]},"registered":true},{"content-type":"application/vnd.ahead.space","friendly":{"en":"Ahead AIR Application"},"encoding":"base64","extensions":["ahead"],"references":["IANA","[Tor_Kristensen]","{application/vnd.ahead.space=http://www.iana.org/assignments/media-types/application/vnd.ahead.space}"],"xrefs":{"person":["Tor_Kristensen"],"template":["application/vnd.ahead.space"]},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azf","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azf"],"references":["IANA","[Daniel_Mould]","[Gary_Clueit]","{application/vnd.airzip.filesecure.azf=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azf}"],"xrefs":{"person":["Daniel_Mould","Gary_Clueit"],"template":["application/vnd.airzip.filesecure.azf"]},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azs","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azs"],"references":["IANA","[Daniel_Mould]","[Gary_Clueit]","{application/vnd.airzip.filesecure.azs=http://www.iana.org/assignments/media-types/application/vnd.airzip.filesecure.azs}"],"xrefs":{"person":["Daniel_Mould","Gary_Clueit"],"template":["application/vnd.airzip.filesecure.azs"]},"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"],"references":["IANA","[Gary_Sands]","{application/vnd.americandynamics.acc=http://www.iana.org/assignments/media-types/application/vnd.americandynamics.acc}"],"xrefs":{"person":["Gary_Sands"],"template":["application/vnd.americandynamics.acc"]},"registered":true},{"content-type":"application/vnd.amiga.ami","friendly":{"en":"AmigaDE"},"encoding":"base64","extensions":["ami"],"references":["IANA","[Kevin_Blumberg]","{application/vnd.amiga.ami=http://www.iana.org/assignments/media-types/application/vnd.amiga.ami}"],"xrefs":{"person":["Kevin_Blumberg"],"template":["application/vnd.amiga.ami"]},"registered":true},{"content-type":"application/vnd.amundsen.maze+xml","encoding":"base64","references":["IANA","[Mike_Amundsen]","{application/vnd.amundsen.maze+xml=http://www.iana.org/assignments/media-types/application/vnd.amundsen.maze+xml}"],"xrefs":{"person":["Mike_Amundsen"],"template":["application/vnd.amundsen.maze+xml"]},"registered":true},{"content-type":"application/vnd.android.package-archive","friendly":{"en":"Android Package Archive"},"encoding":"base64","extensions":["apk"],"registered":false},{"content-type":"application/vnd.anser-web-certificate-issue-initiation","friendly":{"en":"ANSER-WEB Terminal Client - Certificate Issue"},"encoding":"base64","extensions":["cii"],"references":["IANA","[Hiroyoshi_Mori]","{application/vnd.anser-web-certificate-issue-initiation=http://www.iana.org/assignments/media-types/application/vnd.anser-web-certificate-issue-initiation}"],"xrefs":{"person":["Hiroyoshi_Mori"],"template":["application/vnd.anser-web-certificate-issue-initiation"]},"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"],"references":["IANA","[Daniel_Shelton]","{application/vnd.antix.game-component=http://www.iana.org/assignments/media-types/application/vnd.antix.game-component}"],"xrefs":{"person":["Daniel_Shelton"],"template":["application/vnd.antix.game-component"]},"registered":true},{"content-type":"application/vnd.apache.thrift.binary","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.binary=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.binary}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.binary"]},"registered":true},{"content-type":"application/vnd.apache.thrift.compact","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.compact=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.compact}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.compact"]},"registered":true},{"content-type":"application/vnd.apache.thrift.json","encoding":"base64","references":["IANA","[Roger_Meier]","{application/vnd.apache.thrift.json=http://www.iana.org/assignments/media-types/application/vnd.apache.thrift.json}"],"xrefs":{"person":["Roger_Meier"],"template":["application/vnd.apache.thrift.json"]},"registered":true},{"content-type":"application/vnd.api+json","encoding":"base64","references":["IANA","[Steve_Klabnik]","{application/vnd.api+json=http://www.iana.org/assignments/media-types/application/vnd.api+json}"],"xrefs":{"person":["Steve_Klabnik"],"template":["application/vnd.api+json"]},"registered":true},{"content-type":"application/vnd.apple.installer+xml","friendly":{"en":"Apple Installer Package"},"encoding":"base64","extensions":["mpkg"],"references":["IANA","[Peter_Bierman]","{application/vnd.apple.installer+xml=http://www.iana.org/assignments/media-types/application/vnd.apple.installer+xml}"],"xrefs":{"person":["Peter_Bierman"],"template":["application/vnd.apple.installer+xml"]},"registered":true},{"content-type":"application/vnd.apple.mpegurl","friendly":{"en":"Multimedia Playlist Unicode"},"encoding":"base64","extensions":["m3u8"],"references":["IANA","[David_Singer]","[Roger_Pantos]","{application/vnd.apple.mpegurl=http://www.iana.org/assignments/media-types/application/vnd.apple.mpegurl}"],"xrefs":{"person":["David_Singer","Roger_Pantos"],"template":["application/vnd.apple.mpegurl"]},"registered":true},{"content-type":"application/vnd.apple.pkpass","encoding":"base64","extensions":["pkpass"],"references":["{Passbook Programming Guide=https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/PassKit_PG/Chapters/Introduction.html}"],"registered":false},{"content-type":"application/vnd.arastra.swi","encoding":"base64","obsolete":true,"use-instead":"application/vnd.aristanetworks.swi","references":["IANA","[Bill_Fenner]","{application/vnd.arastra.swi=http://www.iana.org/assignments/media-types/application/vnd.arastra.swi}"],"xrefs":{"person":["Bill_Fenner"],"template":["application/vnd.arastra.swi"],"notes":["- OBSOLETED in favor of application/vnd.aristanetworks.swi"]},"registered":true},{"content-type":"application/vnd.aristanetworks.swi","friendly":{"en":"Arista Networks Software Image"},"encoding":"base64","extensions":["swi"],"references":["IANA","[Bill_Fenner]","{application/vnd.aristanetworks.swi=http://www.iana.org/assignments/media-types/application/vnd.aristanetworks.swi}"],"xrefs":{"person":["Bill_Fenner"],"template":["application/vnd.aristanetworks.swi"]},"registered":true},{"content-type":"application/vnd.artsquare","encoding":"base64","references":["IANA","[Christopher_Smith]","{application/vnd.artsquare=http://www.iana.org/assignments/media-types/application/vnd.artsquare}"],"xrefs":{"person":["Christopher_Smith"],"template":["application/vnd.artsquare"]},"registered":true},{"content-type":"application/vnd.astraea-software.iota","encoding":"base64","extensions":["iota"],"references":["IANA","[Christopher_Snazell]","{application/vnd.astraea-software.iota=http://www.iana.org/assignments/media-types/application/vnd.astraea-software.iota}"],"xrefs":{"person":["Christopher_Snazell"],"template":["application/vnd.astraea-software.iota"]},"registered":true},{"content-type":"application/vnd.audiograph","friendly":{"en":"Audiograph"},"encoding":"base64","extensions":["aep"],"references":["IANA","[Horia_Cristian_Slusanschi]","{application/vnd.audiograph=http://www.iana.org/assignments/media-types/application/vnd.audiograph}"],"xrefs":{"person":["Horia_Cristian_Slusanschi"],"template":["application/vnd.audiograph"]},"registered":true},{"content-type":"application/vnd.autopackage","encoding":"base64","references":["IANA","[Mike_Hearn]","{application/vnd.autopackage=http://www.iana.org/assignments/media-types/application/vnd.autopackage}"],"xrefs":{"person":["Mike_Hearn"],"template":["application/vnd.autopackage"]},"registered":true},{"content-type":"application/vnd.avistar+xml","encoding":"base64","references":["IANA","[Vladimir_Vysotsky]","{application/vnd.avistar+xml=http://www.iana.org/assignments/media-types/application/vnd.avistar+xml}"],"xrefs":{"person":["Vladimir_Vysotsky"],"template":["application/vnd.avistar+xml"]},"registered":true},{"content-type":"application/vnd.balsamiq.bmml+xml","encoding":"base64","references":["IANA","[Giacomo_Guilizzoni]","{application/vnd.balsamiq.bmml+xml=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmml+xml}"],"xrefs":{"person":["Giacomo_Guilizzoni"],"template":["application/vnd.balsamiq.bmml+xml"]},"registered":true},{"content-type":"application/vnd.balsamiq.bmpr","encoding":"base64","references":["IANA","[Giacomo_Guilizzoni]","{application/vnd.balsamiq.bmpr=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmpr}"],"xrefs":{"person":["Giacomo_Guilizzoni"],"template":["application/vnd.balsamiq.bmpr"]},"registered":true},{"content-type":"application/vnd.bekitzur-stech+json","encoding":"base64","references":["IANA","[Jegulsky]","{application/vnd.bekitzur-stech+json=http://www.iana.org/assignments/media-types/application/vnd.bekitzur-stech+json}"],"xrefs":{"person":["Jegulsky"],"template":["application/vnd.bekitzur-stech+json"]},"registered":true},{"content-type":"application/vnd.blueice.multipass","friendly":{"en":"Blueice Research Multipass"},"encoding":"base64","extensions":["mpm"],"references":["IANA","[Thomas_Holmstrom]","{application/vnd.blueice.multipass=http://www.iana.org/assignments/media-types/application/vnd.blueice.multipass}"],"xrefs":{"person":["Thomas_Holmstrom"],"template":["application/vnd.blueice.multipass"]},"registered":true},{"content-type":"application/vnd.bluetooth.ep.oob","encoding":"base64","references":["IANA","[Mike_Foley]","{application/vnd.bluetooth.ep.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.ep.oob}"],"xrefs":{"person":["Mike_Foley"],"template":["application/vnd.bluetooth.ep.oob"]},"registered":true},{"content-type":"application/vnd.bluetooth.le.oob","encoding":"base64","references":["IANA","[Mark_Powell]","{application/vnd.bluetooth.le.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.le.oob}"],"xrefs":{"person":["Mark_Powell"],"template":["application/vnd.bluetooth.le.oob"]},"registered":true},{"content-type":"application/vnd.bmi","friendly":{"en":"BMI Drawing Data Interchange"},"encoding":"base64","extensions":["bmi"],"references":["IANA","[Tadashi_Gotoh]","{application/vnd.bmi=http://www.iana.org/assignments/media-types/application/vnd.bmi}"],"xrefs":{"person":["Tadashi_Gotoh"],"template":["application/vnd.bmi"]},"registered":true},{"content-type":"application/vnd.businessobjects","friendly":{"en":"BusinessObjects"},"encoding":"base64","extensions":["rep"],"references":["IANA","[Philippe_Imoucha]","{application/vnd.businessobjects=http://www.iana.org/assignments/media-types/application/vnd.businessobjects}"],"xrefs":{"person":["Philippe_Imoucha"],"template":["application/vnd.businessobjects"]},"registered":true},{"content-type":"application/vnd.cab-jscript","encoding":"base64","references":["IANA","[Joerg_Falkenberg]","{application/vnd.cab-jscript=http://www.iana.org/assignments/media-types/application/vnd.cab-jscript}"],"xrefs":{"person":["Joerg_Falkenberg"],"template":["application/vnd.cab-jscript"]},"registered":true},{"content-type":"application/vnd.canon-cpdl","encoding":"base64","references":["IANA","[Shin_Muto]","{application/vnd.canon-cpdl=http://www.iana.org/assignments/media-types/application/vnd.canon-cpdl}"],"xrefs":{"person":["Shin_Muto"],"template":["application/vnd.canon-cpdl"]},"registered":true},{"content-type":"application/vnd.canon-lips","encoding":"base64","references":["IANA","[Shin_Muto]","{application/vnd.canon-lips=http://www.iana.org/assignments/media-types/application/vnd.canon-lips}"],"xrefs":{"person":["Shin_Muto"],"template":["application/vnd.canon-lips"]},"registered":true},{"content-type":"application/vnd.cendio.thinlinc.clientconf","encoding":"base64","references":["IANA","[Peter_Astrand]","{application/vnd.cendio.thinlinc.clientconf=http://www.iana.org/assignments/media-types/application/vnd.cendio.thinlinc.clientconf}"],"xrefs":{"person":["Peter_Astrand"],"template":["application/vnd.cendio.thinlinc.clientconf"]},"registered":true},{"content-type":"application/vnd.century-systems.tcp_stream","encoding":"base64","references":["IANA","[Shuji_Fujii]","{application/vnd.century-systems.tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.century-systems.tcp_stream}"],"xrefs":{"person":["Shuji_Fujii"],"template":["application/vnd.century-systems.tcp_stream"]},"registered":true},{"content-type":"application/vnd.chemdraw+xml","friendly":{"en":"CambridgeSoft Chem Draw"},"encoding":"base64","extensions":["cdxml"],"references":["IANA","[Glenn_Howes]","{application/vnd.chemdraw+xml=http://www.iana.org/assignments/media-types/application/vnd.chemdraw+xml}"],"xrefs":{"person":["Glenn_Howes"],"template":["application/vnd.chemdraw+xml"]},"registered":true},{"content-type":"application/vnd.chipnuts.karaoke-mmd","friendly":{"en":"Karaoke on Chipnuts Chipsets"},"encoding":"base64","extensions":["mmd"],"references":["IANA","[Chunyun_Xiong]","{application/vnd.chipnuts.karaoke-mmd=http://www.iana.org/assignments/media-types/application/vnd.chipnuts.karaoke-mmd}"],"xrefs":{"person":["Chunyun_Xiong"],"template":["application/vnd.chipnuts.karaoke-mmd"]},"registered":true},{"content-type":"application/vnd.cinderella","friendly":{"en":"Interactive Geometry Software Cinderella"},"encoding":"base64","extensions":["cdy"],"references":["IANA","[Ulrich_Kortenkamp]","{application/vnd.cinderella=http://www.iana.org/assignments/media-types/application/vnd.cinderella}"],"xrefs":{"person":["Ulrich_Kortenkamp"],"template":["application/vnd.cinderella"]},"registered":true},{"content-type":"application/vnd.cirpack.isdn-ext","encoding":"base64","references":["IANA","[Pascal_Mayeux]","{application/vnd.cirpack.isdn-ext=http://www.iana.org/assignments/media-types/application/vnd.cirpack.isdn-ext}"],"xrefs":{"person":["Pascal_Mayeux"],"template":["application/vnd.cirpack.isdn-ext"]},"registered":true},{"content-type":"application/vnd.citationstyles.style+xml","encoding":"base64","references":["IANA","[Rintze_M._Zelle]","{application/vnd.citationstyles.style+xml=http://www.iana.org/assignments/media-types/application/vnd.citationstyles.style+xml}"],"xrefs":{"person":["Rintze_M._Zelle"],"template":["application/vnd.citationstyles.style+xml"]},"registered":true},{"content-type":"application/vnd.claymore","friendly":{"en":"Claymore Data Files"},"encoding":"base64","extensions":["cla"],"references":["IANA","[Ray_Simpson]","{application/vnd.claymore=http://www.iana.org/assignments/media-types/application/vnd.claymore}"],"xrefs":{"person":["Ray_Simpson"],"template":["application/vnd.claymore"]},"registered":true},{"content-type":"application/vnd.cloanto.rp9","friendly":{"en":"RetroPlatform Player"},"encoding":"base64","extensions":["rp9"],"references":["IANA","[Mike_Labatt]","{application/vnd.cloanto.rp9=http://www.iana.org/assignments/media-types/application/vnd.cloanto.rp9}"],"xrefs":{"person":["Mike_Labatt"],"template":["application/vnd.cloanto.rp9"]},"registered":true},{"content-type":"application/vnd.clonk.c4group","friendly":{"en":"Clonk Game"},"encoding":"base64","extensions":["c4d","c4f","c4g","c4p","c4u"],"references":["IANA","[Guenther_Brammer]","{application/vnd.clonk.c4group=http://www.iana.org/assignments/media-types/application/vnd.clonk.c4group}"],"xrefs":{"person":["Guenther_Brammer"],"template":["application/vnd.clonk.c4group"]},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config","friendly":{"en":"ClueTrust CartoMobile - Config"},"encoding":"base64","extensions":["c11amc"],"references":["IANA","[Gaige_Paulsen]","{application/vnd.cluetrust.cartomobile-config=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config}"],"xrefs":{"person":["Gaige_Paulsen"],"template":["application/vnd.cluetrust.cartomobile-config"]},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config-pkg","friendly":{"en":"ClueTrust CartoMobile - Config Package"},"encoding":"base64","extensions":["c11amz"],"references":["IANA","[Gaige_Paulsen]","{application/vnd.cluetrust.cartomobile-config-pkg=http://www.iana.org/assignments/media-types/application/vnd.cluetrust.cartomobile-config-pkg}"],"xrefs":{"person":["Gaige_Paulsen"],"template":["application/vnd.cluetrust.cartomobile-config-pkg"]},"registered":true},{"content-type":"application/vnd.coffeescript","encoding":"base64","references":["IANA","[Devyn_Collier_Johnson]","{application/vnd.coffeescript=http://www.iana.org/assignments/media-types/application/vnd.coffeescript}"],"xrefs":{"person":["Devyn_Collier_Johnson"],"template":["application/vnd.coffeescript"]},"registered":true},{"content-type":"application/vnd.collection+json","encoding":"base64","references":["IANA","[Mike_Amundsen]","{application/vnd.collection+json=http://www.iana.org/assignments/media-types/application/vnd.collection+json}"],"xrefs":{"person":["Mike_Amundsen"],"template":["application/vnd.collection+json"]},"registered":true},{"content-type":"application/vnd.collection.doc+json","encoding":"base64","references":["IANA","[Irakli_Nadareishvili]","{application/vnd.collection.doc+json=http://www.iana.org/assignments/media-types/application/vnd.collection.doc+json}"],"xrefs":{"person":["Irakli_Nadareishvili"],"template":["application/vnd.collection.doc+json"]},"registered":true},{"content-type":"application/vnd.collection.next+json","encoding":"base64","references":["IANA","[Ioseb_Dzmanashvili]","{application/vnd.collection.next+json=http://www.iana.org/assignments/media-types/application/vnd.collection.next+json}"],"xrefs":{"person":["Ioseb_Dzmanashvili"],"template":["application/vnd.collection.next+json"]},"registered":true},{"content-type":"application/vnd.commerce-battelle","encoding":"base64","references":["IANA","[David_Applebaum]","{application/vnd.commerce-battelle=http://www.iana.org/assignments/media-types/application/vnd.commerce-battelle}"],"xrefs":{"person":["David_Applebaum"],"template":["application/vnd.commerce-battelle"]},"registered":true},{"content-type":"application/vnd.commonspace","friendly":{"en":"Sixth Floor Media - CommonSpace"},"encoding":"base64","extensions":["csp"],"references":["IANA","[Ravinder_Chandhok]","{application/vnd.commonspace=http://www.iana.org/assignments/media-types/application/vnd.commonspace}"],"xrefs":{"person":["Ravinder_Chandhok"],"template":["application/vnd.commonspace"]},"registered":true},{"content-type":"application/vnd.contact.cmsg","friendly":{"en":"CIM Database"},"encoding":"base64","extensions":["cdbcmsg"],"references":["IANA","[Frank_Patz]","{application/vnd.contact.cmsg=http://www.iana.org/assignments/media-types/application/vnd.contact.cmsg}"],"xrefs":{"person":["Frank_Patz"],"template":["application/vnd.contact.cmsg"]},"registered":true},{"content-type":"application/vnd.cosmocaller","friendly":{"en":"CosmoCaller"},"encoding":"base64","extensions":["cmc"],"references":["IANA","[Steve_Dellutri]","{application/vnd.cosmocaller=http://www.iana.org/assignments/media-types/application/vnd.cosmocaller}"],"xrefs":{"person":["Steve_Dellutri"],"template":["application/vnd.cosmocaller"]},"registered":true},{"content-type":"application/vnd.crick.clicker","friendly":{"en":"CrickSoftware - Clicker"},"encoding":"base64","extensions":["clkx"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker"]},"registered":true},{"content-type":"application/vnd.crick.clicker.keyboard","friendly":{"en":"CrickSoftware - Clicker - Keyboard"},"encoding":"base64","extensions":["clkk"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.keyboard=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.keyboard}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.keyboard"]},"registered":true},{"content-type":"application/vnd.crick.clicker.palette","friendly":{"en":"CrickSoftware - Clicker - Palette"},"encoding":"base64","extensions":["clkp"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.palette=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.palette}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.palette"]},"registered":true},{"content-type":"application/vnd.crick.clicker.template","friendly":{"en":"CrickSoftware - Clicker - Template"},"encoding":"base64","extensions":["clkt"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.template=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.template}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.template"]},"registered":true},{"content-type":"application/vnd.crick.clicker.wordbank","friendly":{"en":"CrickSoftware - Clicker - Wordbank"},"encoding":"base64","extensions":["clkw"],"references":["IANA","[Andrew_Burt]","{application/vnd.crick.clicker.wordbank=http://www.iana.org/assignments/media-types/application/vnd.crick.clicker.wordbank}"],"xrefs":{"person":["Andrew_Burt"],"template":["application/vnd.crick.clicker.wordbank"]},"registered":true},{"content-type":"application/vnd.criticaltools.wbs+xml","friendly":{"en":"Critical Tools - PERT Chart EXPERT"},"encoding":"base64","extensions":["wbs"],"references":["IANA","[Jim_Spiller]","{application/vnd.criticaltools.wbs+xml=http://www.iana.org/assignments/media-types/application/vnd.criticaltools.wbs+xml}"],"xrefs":{"person":["Jim_Spiller"],"template":["application/vnd.criticaltools.wbs+xml"]},"registered":true},{"content-type":"application/vnd.ctc-posml","friendly":{"en":"PosML"},"encoding":"base64","extensions":["pml"],"references":["IANA","[Bayard_Kohlhepp]","{application/vnd.ctc-posml=http://www.iana.org/assignments/media-types/application/vnd.ctc-posml}"],"xrefs":{"person":["Bayard_Kohlhepp"],"template":["application/vnd.ctc-posml"]},"registered":true},{"content-type":"application/vnd.ctct.ws+xml","encoding":"base64","references":["IANA","[Jim_Ancona]","{application/vnd.ctct.ws+xml=http://www.iana.org/assignments/media-types/application/vnd.ctct.ws+xml}"],"xrefs":{"person":["Jim_Ancona"],"template":["application/vnd.ctct.ws+xml"]},"registered":true},{"content-type":"application/vnd.cups-pdf","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-pdf=http://www.iana.org/assignments/media-types/application/vnd.cups-pdf}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-pdf"]},"registered":true},{"content-type":"application/vnd.cups-postscript","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-postscript=http://www.iana.org/assignments/media-types/application/vnd.cups-postscript}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-postscript"]},"registered":true},{"content-type":"application/vnd.cups-ppd","friendly":{"en":"Adobe PostScript Printer Description File Format"},"encoding":"base64","extensions":["ppd"],"references":["IANA","[Michael_Sweet]","{application/vnd.cups-ppd=http://www.iana.org/assignments/media-types/application/vnd.cups-ppd}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-ppd"]},"registered":true},{"content-type":"application/vnd.cups-raster","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-raster=http://www.iana.org/assignments/media-types/application/vnd.cups-raster}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-raster"]},"registered":true},{"content-type":"application/vnd.cups-raw","encoding":"base64","references":["IANA","[Michael_Sweet]","{application/vnd.cups-raw=http://www.iana.org/assignments/media-types/application/vnd.cups-raw}"],"xrefs":{"person":["Michael_Sweet"],"template":["application/vnd.cups-raw"]},"registered":true},{"content-type":"application/vnd.curl","encoding":"base64","extensions":["curl"],"references":["IANA","[Robert_Byrnes]","{application/vnd-curl=http://www.iana.org/assignments/media-types/application/vnd-curl}"],"xrefs":{"person":["Robert_Byrnes"],"template":["application/vnd-curl"]},"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","references":["IANA","[Matt_Kern]","{application/vnd.cyan.dean.root+xml=http://www.iana.org/assignments/media-types/application/vnd.cyan.dean.root+xml}"],"xrefs":{"person":["Matt_Kern"],"template":["application/vnd.cyan.dean.root+xml"]},"registered":true},{"content-type":"application/vnd.cybank","encoding":"base64","references":["IANA","[Nor_Helmee]","{application/vnd.cybank=http://www.iana.org/assignments/media-types/application/vnd.cybank}"],"xrefs":{"person":["Nor_Helmee"],"template":["application/vnd.cybank"]},"registered":true},{"content-type":"application/vnd.dart","encoding":"base64","extensions":["dart"],"references":["IANA","[Anders_Sandholm]","{application/vnd-dart=http://www.iana.org/assignments/media-types/application/vnd-dart}"],"xrefs":{"person":["Anders_Sandholm"],"template":["application/vnd-dart"]},"registered":true},{"content-type":"application/vnd.data-vision.rdz","friendly":{"en":"RemoteDocs R-Viewer"},"encoding":"base64","extensions":["rdz"],"references":["IANA","[James_Fields]","{application/vnd.data-vision.rdz=http://www.iana.org/assignments/media-types/application/vnd.data-vision.rdz}"],"xrefs":{"person":["James_Fields"],"template":["application/vnd.data-vision.rdz"]},"registered":true},{"content-type":"application/vnd.debian.binary-package","encoding":"base64","references":["IANA","[Charles_Plessy]","{application/vnd.debian.binary-package=http://www.iana.org/assignments/media-types/application/vnd.debian.binary-package}"],"xrefs":{"person":["Charles_Plessy"],"template":["application/vnd.debian.binary-package"]},"registered":true},{"content-type":"application/vnd.dece.data","encoding":"base64","extensions":["uvd","uvf","uvvd","uvvf"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.data=http://www.iana.org/assignments/media-types/application/vnd.dece.data}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.data"]},"registered":true},{"content-type":"application/vnd.dece.ttml+xml","encoding":"base64","extensions":["uvt","uvvt"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.ttml+xml=http://www.iana.org/assignments/media-types/application/vnd.dece.ttml+xml}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.ttml+xml"]},"registered":true},{"content-type":"application/vnd.dece.unspecified","encoding":"base64","extensions":["uvvx","uvx"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece.unspecified=http://www.iana.org/assignments/media-types/application/vnd.dece.unspecified}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece.unspecified"]},"registered":true},{"content-type":"application/vnd.dece.zip","encoding":"base64","extensions":["uvvz","uvz"],"references":["IANA","[Michael_A_Dolan]","{application/vnd.dece-zip=http://www.iana.org/assignments/media-types/application/vnd.dece-zip}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["application/vnd.dece-zip"]},"registered":true},{"content-type":"application/vnd.denovo.fcselayout-link","friendly":{"en":"FCS Express Layout Link"},"encoding":"base64","extensions":["fe_launch"],"references":["IANA","[Michael_Dixon]","{application/vnd.denovo.fcselayout-link=http://www.iana.org/assignments/media-types/application/vnd.denovo.fcselayout-link}"],"xrefs":{"person":["Michael_Dixon"],"template":["application/vnd.denovo.fcselayout-link"]},"registered":true},{"content-type":"application/vnd.desmume.movie","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.desmume-movie=http://www.iana.org/assignments/media-types/application/vnd.desmume-movie}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.desmume-movie"]},"registered":true},{"content-type":"application/vnd.dir-bi.plate-dl-nosuffix","encoding":"base64","references":["IANA","[Yamanaka]","{application/vnd.dir-bi.plate-dl-nosuffix=http://www.iana.org/assignments/media-types/application/vnd.dir-bi.plate-dl-nosuffix}"],"xrefs":{"person":["Yamanaka"],"template":["application/vnd.dir-bi.plate-dl-nosuffix"]},"registered":true},{"content-type":"application/vnd.dm.delegation+xml","encoding":"base64","references":["IANA","[Axel_Ferrazzini]","{application/vnd.dm.delegation+xml=http://www.iana.org/assignments/media-types/application/vnd.dm.delegation+xml}"],"xrefs":{"person":["Axel_Ferrazzini"],"template":["application/vnd.dm.delegation+xml"]},"registered":true},{"content-type":"application/vnd.dna","friendly":{"en":"New Moon Liftoff/DNA"},"encoding":"base64","extensions":["dna"],"references":["IANA","[Meredith_Searcy]","{application/vnd.dna=http://www.iana.org/assignments/media-types/application/vnd.dna}"],"xrefs":{"person":["Meredith_Searcy"],"template":["application/vnd.dna"]},"registered":true},{"content-type":"application/vnd.document+json","encoding":"base64","references":["IANA","[Tom_Christie]","{application/vnd.document+json=http://www.iana.org/assignments/media-types/application/vnd.document+json}"],"xrefs":{"person":["Tom_Christie"],"template":["application/vnd.document+json"]},"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","references":["IANA","[Steve_Hattersley]","{application/vnd.dolby.mobile.1=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["application/vnd.dolby.mobile.1"]},"registered":true},{"content-type":"application/vnd.dolby.mobile.2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{application/vnd.dolby.mobile.2=http://www.iana.org/assignments/media-types/application/vnd.dolby.mobile.2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["application/vnd.dolby.mobile.2"]},"registered":true},{"content-type":"application/vnd.doremir.scorecloud-binary-document","encoding":"base64","references":["IANA","[Erik_Ronström]","{application/vnd.doremir.scorecloud-binary-document=http://www.iana.org/assignments/media-types/application/vnd.doremir.scorecloud-binary-document}"],"xrefs":{"person":["Erik_Ronström"],"template":["application/vnd.doremir.scorecloud-binary-document"]},"registered":true},{"content-type":"application/vnd.dpgraph","friendly":{"en":"DPGraph"},"encoding":"base64","extensions":["dpg"],"references":["IANA","[David_Parker]","{application/vnd.dpgraph=http://www.iana.org/assignments/media-types/application/vnd.dpgraph}"],"xrefs":{"person":["David_Parker"],"template":["application/vnd.dpgraph"]},"registered":true},{"content-type":"application/vnd.dreamfactory","friendly":{"en":"DreamFactory"},"encoding":"base64","extensions":["dfac"],"references":["IANA","[William_C._Appleton]","{application/vnd.dreamfactory=http://www.iana.org/assignments/media-types/application/vnd.dreamfactory}"],"xrefs":{"person":["William_C._Appleton"],"template":["application/vnd.dreamfactory"]},"registered":true},{"content-type":"application/vnd.ds-keypoint","encoding":"base64","extensions":["kpxx"],"registered":false},{"content-type":"application/vnd.dtg.local","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local=http://www.iana.org/assignments/media-types/application/vnd.dtg.local}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local"]},"registered":true},{"content-type":"application/vnd.dtg.local.flash","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local.flash=http://www.iana.org/assignments/media-types/application/vnd.dtg.local.flash}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local.flash"]},"registered":true},{"content-type":"application/vnd.dtg.local.html","encoding":"base64","references":["IANA","[Ali_Teffahi]","{application/vnd.dtg.local.html=http://www.iana.org/assignments/media-types/application/vnd.dtg.local.html}"],"xrefs":{"person":["Ali_Teffahi"],"template":["application/vnd.dtg.local.html"]},"registered":true},{"content-type":"application/vnd.dvb.ait","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["ait"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.ait=http://www.iana.org/assignments/media-types/application/vnd.dvb.ait}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.ait"]},"registered":true},{"content-type":"application/vnd.dvb.dvbj","encoding":"base64","references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.dvbj=http://www.iana.org/assignments/media-types/application/vnd.dvb.dvbj}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.dvbj"]},"registered":true},{"content-type":"application/vnd.dvb.esgcontainer","encoding":"base64","references":["IANA","[Joerg_Heuer]","{application/vnd.dvb.esgcontainer=http://www.iana.org/assignments/media-types/application/vnd.dvb.esgcontainer}"],"xrefs":{"person":["Joerg_Heuer"],"template":["application/vnd.dvb.esgcontainer"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcdftnotifaccess","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.ipdcdftnotifaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcdftnotifaccess}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.ipdcdftnotifaccess"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess","encoding":"base64","references":["IANA","[Joerg_Heuer]","{application/vnd.dvb.ipdcesgaccess=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess}"],"xrefs":{"person":["Joerg_Heuer"],"template":["application/vnd.dvb.ipdcesgaccess"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess2","encoding":"base64","references":["IANA","[Jerome_Marcon]","{application/vnd.dvb.ipdcesgaccess2=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgaccess2}"],"xrefs":{"person":["Jerome_Marcon"],"template":["application/vnd.dvb.ipdcesgaccess2"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgpdd","encoding":"base64","references":["IANA","[Jerome_Marcon]","{application/vnd.dvb.ipdcesgpdd=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcesgpdd}"],"xrefs":{"person":["Jerome_Marcon"],"template":["application/vnd.dvb.ipdcesgpdd"]},"registered":true},{"content-type":"application/vnd.dvb.ipdcroaming","encoding":"base64","references":["IANA","[Yiling_Xu]","{application/vnd.dvb.ipdcroaming=http://www.iana.org/assignments/media-types/application/vnd.dvb.ipdcroaming}"],"xrefs":{"person":["Yiling_Xu"],"template":["application/vnd.dvb.ipdcroaming"]},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-base","encoding":"base64","references":["IANA","[Jean-Baptiste_Henry]","{application/vnd.dvb.iptv.alfec-base=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-base}"],"xrefs":{"person":["Jean-Baptiste_Henry"],"template":["application/vnd.dvb.iptv.alfec-base"]},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-enhancement","encoding":"base64","references":["IANA","[Jean-Baptiste_Henry]","{application/vnd.dvb.iptv.alfec-enhancement=http://www.iana.org/assignments/media-types/application/vnd.dvb.iptv.alfec-enhancement}"],"xrefs":{"person":["Jean-Baptiste_Henry"],"template":["application/vnd.dvb.iptv.alfec-enhancement"]},"registered":true},{"content-type":"application/vnd.dvb.notif-aggregate-root+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-aggregate-root+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-aggregate-root+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-aggregate-root+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-container+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-container+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-container+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-container+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-generic+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-generic+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-generic+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-generic+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-msglist+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-msglist+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-msglist+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-msglist+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-request+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-registration-request+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-request+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-registration-request+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-response+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-ia-registration-response+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-ia-registration-response+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-ia-registration-response+xml"]},"registered":true},{"content-type":"application/vnd.dvb.notif-init+xml","encoding":"base64","references":["IANA","[Roy_Yue]","{application/vnd.dvb.notif-init+xml=http://www.iana.org/assignments/media-types/application/vnd.dvb.notif-init+xml}"],"xrefs":{"person":["Roy_Yue"],"template":["application/vnd.dvb.notif-init+xml"]},"registered":true},{"content-type":"application/vnd.dvb.pfr","encoding":"base64","references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb.pfr=http://www.iana.org/assignments/media-types/application/vnd.dvb.pfr}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb.pfr"]},"registered":true},{"content-type":"application/vnd.dvb.service","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["svc"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{application/vnd.dvb_service=http://www.iana.org/assignments/media-types/application/vnd.dvb_service}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["application/vnd.dvb_service"]},"registered":true},{"content-type":"application/vnd.dxr","encoding":"base64","references":["IANA","[Michael_Duffy]","{application/vnd-dxr=http://www.iana.org/assignments/media-types/application/vnd-dxr}"],"xrefs":{"person":["Michael_Duffy"],"template":["application/vnd-dxr"]},"registered":true},{"content-type":"application/vnd.dynageo","friendly":{"en":"DynaGeo"},"encoding":"base64","extensions":["geo"],"references":["IANA","[Roland_Mechling]","{application/vnd.dynageo=http://www.iana.org/assignments/media-types/application/vnd.dynageo}"],"xrefs":{"person":["Roland_Mechling"],"template":["application/vnd.dynageo"]},"registered":true},{"content-type":"application/vnd.dzr","encoding":"base64","references":["IANA","[Carl_Anderson]","{application/vnd.dzr=http://www.iana.org/assignments/media-types/application/vnd.dzr}"],"xrefs":{"person":["Carl_Anderson"],"template":["application/vnd.dzr"]},"registered":true},{"content-type":"application/vnd.easykaraoke.cdgdownload","encoding":"base64","references":["IANA","[Iain_Downs]","{application/vnd.easykaraoke.cdgdownload=http://www.iana.org/assignments/media-types/application/vnd.easykaraoke.cdgdownload}"],"xrefs":{"person":["Iain_Downs"],"template":["application/vnd.easykaraoke.cdgdownload"]},"registered":true},{"content-type":"application/vnd.ecdis-update","encoding":"base64","references":["IANA","[Gert_Buettgenbach]","{application/vnd.ecdis-update=http://www.iana.org/assignments/media-types/application/vnd.ecdis-update}"],"xrefs":{"person":["Gert_Buettgenbach"],"template":["application/vnd.ecdis-update"]},"registered":true},{"content-type":"application/vnd.ecowin.chart","friendly":{"en":"EcoWin Chart"},"encoding":"base64","extensions":["mag"],"references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.chart=http://www.iana.org/assignments/media-types/application/vnd.ecowin.chart}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.chart"]},"registered":true},{"content-type":"application/vnd.ecowin.filerequest","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.filerequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.filerequest}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.filerequest"]},"registered":true},{"content-type":"application/vnd.ecowin.fileupdate","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.fileupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.fileupdate}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.fileupdate"]},"registered":true},{"content-type":"application/vnd.ecowin.series","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.series=http://www.iana.org/assignments/media-types/application/vnd.ecowin.series}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.series"]},"registered":true},{"content-type":"application/vnd.ecowin.seriesrequest","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.seriesrequest=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesrequest}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.seriesrequest"]},"registered":true},{"content-type":"application/vnd.ecowin.seriesupdate","encoding":"base64","references":["IANA","[Thomas_Olsson]","{application/vnd.ecowin.seriesupdate=http://www.iana.org/assignments/media-types/application/vnd.ecowin.seriesupdate}"],"xrefs":{"person":["Thomas_Olsson"],"template":["application/vnd.ecowin.seriesupdate"]},"registered":true},{"content-type":"application/vnd.emclient.accessrequest+xml","encoding":"base64","references":["IANA","[Filip_Navara]","{application/vnd.emclient.accessrequest+xml=http://www.iana.org/assignments/media-types/application/vnd.emclient.accessrequest+xml}"],"xrefs":{"person":["Filip_Navara"],"template":["application/vnd.emclient.accessrequest+xml"]},"registered":true},{"content-type":"application/vnd.enliven","friendly":{"en":"Enliven Viewer"},"encoding":"base64","extensions":["nml"],"references":["IANA","[Paul_Santinelli_Jr.]","{application/vnd.enliven=http://www.iana.org/assignments/media-types/application/vnd.enliven}"],"xrefs":{"person":["Paul_Santinelli_Jr."],"template":["application/vnd.enliven"]},"registered":true},{"content-type":"application/vnd.enphase.envoy","encoding":"base64","references":["IANA","[Chris_Eich]","{application/vnd.enphase.envoy=http://www.iana.org/assignments/media-types/application/vnd.enphase.envoy}"],"xrefs":{"person":["Chris_Eich"],"template":["application/vnd.enphase.envoy"]},"registered":true},{"content-type":"application/vnd.eprints.data+xml","encoding":"base64","references":["IANA","[Tim_Brody]","{application/vnd.eprints.data+xml=http://www.iana.org/assignments/media-types/application/vnd.eprints.data+xml}"],"xrefs":{"person":["Tim_Brody"],"template":["application/vnd.eprints.data+xml"]},"registered":true},{"content-type":"application/vnd.epson.esf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["esf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.esf=http://www.iana.org/assignments/media-types/application/vnd.epson.esf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.esf"]},"registered":true},{"content-type":"application/vnd.epson.msf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["msf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.msf=http://www.iana.org/assignments/media-types/application/vnd.epson.msf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.msf"]},"registered":true},{"content-type":"application/vnd.epson.quickanime","friendly":{"en":"QuickAnime Player"},"encoding":"base64","extensions":["qam"],"references":["IANA","[Yu_Gu]","{application/vnd.epson.quickanime=http://www.iana.org/assignments/media-types/application/vnd.epson.quickanime}"],"xrefs":{"person":["Yu_Gu"],"template":["application/vnd.epson.quickanime"]},"registered":true},{"content-type":"application/vnd.epson.salt","friendly":{"en":"SimpleAnimeLite Player"},"encoding":"base64","extensions":["slt"],"references":["IANA","[Yasuhito_Nagatomo]","{application/vnd.epson.salt=http://www.iana.org/assignments/media-types/application/vnd.epson.salt}"],"xrefs":{"person":["Yasuhito_Nagatomo"],"template":["application/vnd.epson.salt"]},"registered":true},{"content-type":"application/vnd.epson.ssf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["ssf"],"references":["IANA","[Shoji_Hoshina]","{application/vnd.epson.ssf=http://www.iana.org/assignments/media-types/application/vnd.epson.ssf}"],"xrefs":{"person":["Shoji_Hoshina"],"template":["application/vnd.epson.ssf"]},"registered":true},{"content-type":"application/vnd.ericsson.quickcall","encoding":"base64","references":["IANA","[Paul_Tidwell]","{application/vnd.ericsson.quickcall=http://www.iana.org/assignments/media-types/application/vnd.ericsson.quickcall}"],"xrefs":{"person":["Paul_Tidwell"],"template":["application/vnd.ericsson.quickcall"]},"registered":true},{"content-type":"application/vnd.eszigno3+xml","friendly":{"en":"MICROSEC e-Szign¢"},"encoding":"base64","extensions":["es3","et3"],"references":["IANA","[Szilveszter_Tóth]","{application/vnd.eszigno3+xml=http://www.iana.org/assignments/media-types/application/vnd.eszigno3+xml}"],"xrefs":{"person":["Szilveszter_Tóth"],"template":["application/vnd.eszigno3+xml"]},"registered":true},{"content-type":"application/vnd.etsi.aoc+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.aoc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.aoc+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.aoc+xml"]},"registered":true},{"content-type":"application/vnd.etsi.asic-e+zip","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.asic-e+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-e+zip}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.asic-e+zip"]},"registered":true},{"content-type":"application/vnd.etsi.asic-s+zip","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.asic-s+zip=http://www.iana.org/assignments/media-types/application/vnd.etsi.asic-s+zip}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.asic-s+zip"]},"registered":true},{"content-type":"application/vnd.etsi.cug+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.cug+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.cug+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.cug+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvcommand+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvcommand+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvcommand+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvcommand+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvdiscovery+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvdiscovery+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvdiscovery+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvprofile+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvprofile+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvprofile+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-bc+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-bc+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-bc+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-bc+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-cod+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-cod+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-cod+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-cod+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-npvr+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvsad-npvr+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsad-npvr+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvsad-npvr+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvservice+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.iptvservice+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvservice+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.iptvservice+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvsync+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.iptvsync+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvsync+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.iptvsync+xml"]},"registered":true},{"content-type":"application/vnd.etsi.iptvueprofile+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.iptvueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.iptvueprofile+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.iptvueprofile+xml"]},"registered":true},{"content-type":"application/vnd.etsi.mcid+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.mcid+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.mcid+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.mcid+xml"]},"registered":true},{"content-type":"application/vnd.etsi.mheg5","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","[Ian_Medland]","{application/vnd.etsi.mheg5=http://www.iana.org/assignments/media-types/application/vnd.etsi.mheg5}"],"xrefs":{"person":["Ian_Medland","Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.mheg5"]},"registered":true},{"content-type":"application/vnd.etsi.overload-control-policy-dataset+xml","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.overload-control-policy-dataset+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.overload-control-policy-dataset+xml}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.overload-control-policy-dataset+xml"]},"registered":true},{"content-type":"application/vnd.etsi.pstn+xml","encoding":"base64","references":["IANA","[Jiwan_Han]","[Thomas_Belling]","{application/vnd.etsi.pstn+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.pstn+xml}"],"xrefs":{"person":["Jiwan_Han","Thomas_Belling"],"template":["application/vnd.etsi.pstn+xml"]},"registered":true},{"content-type":"application/vnd.etsi.sci+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.sci+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.sci+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.sci+xml"]},"registered":true},{"content-type":"application/vnd.etsi.simservs+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.simservs+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.simservs+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.simservs+xml"]},"registered":true},{"content-type":"application/vnd.etsi.timestamp-token","encoding":"base64","references":["IANA","[Miguel_Angel_Reina_Ortega]","{application/vnd.etsi.timestamp-token=http://www.iana.org/assignments/media-types/application/vnd.etsi.timestamp-token}"],"xrefs":{"person":["Miguel_Angel_Reina_Ortega"],"template":["application/vnd.etsi.timestamp-token"]},"registered":true},{"content-type":"application/vnd.etsi.tsl+xml","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.tsl+xml=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl+xml}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.tsl+xml"]},"registered":true},{"content-type":"application/vnd.etsi.tsl.der","encoding":"base64","references":["IANA","[Shicheng_Hu]","{application/vnd.etsi.tsl.der=http://www.iana.org/assignments/media-types/application/vnd.etsi.tsl.der}"],"xrefs":{"person":["Shicheng_Hu"],"template":["application/vnd.etsi.tsl.der"]},"registered":true},{"content-type":"application/vnd.eudora.data","encoding":"base64","references":["IANA","[Pete_Resnick]","{application/vnd.eudora.data=http://www.iana.org/assignments/media-types/application/vnd.eudora.data}"],"xrefs":{"person":["Pete_Resnick"],"template":["application/vnd.eudora.data"]},"registered":true},{"content-type":"application/vnd.ezpix-album","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez2"],"references":["IANA","[ElectronicZombieCorp]","{application/vnd.ezpix-album=http://www.iana.org/assignments/media-types/application/vnd.ezpix-album}"],"xrefs":{"person":["ElectronicZombieCorp"],"template":["application/vnd.ezpix-album"]},"registered":true},{"content-type":"application/vnd.ezpix-package","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez3"],"references":["IANA","[ElectronicZombieCorp]","{application/vnd.ezpix-package=http://www.iana.org/assignments/media-types/application/vnd.ezpix-package}"],"xrefs":{"person":["ElectronicZombieCorp"],"template":["application/vnd.ezpix-package"]},"registered":true},{"content-type":"application/vnd.f-secure.mobile","encoding":"base64","references":["IANA","[Samu_Sarivaara]","{application/vnd.f-secure.mobile=http://www.iana.org/assignments/media-types/application/vnd.f-secure.mobile}"],"xrefs":{"person":["Samu_Sarivaara"],"template":["application/vnd.f-secure.mobile"]},"registered":true},{"content-type":"application/vnd.fastcopy-disk-image","encoding":"base64","references":["IANA","[Thomas_Huth]","{application/vnd.fastcopy-disk-image=http://www.iana.org/assignments/media-types/application/vnd.fastcopy-disk-image}"],"xrefs":{"person":["Thomas_Huth"],"template":["application/vnd.fastcopy-disk-image"]},"registered":true},{"content-type":"application/vnd.fdf","friendly":{"en":"Forms Data Format"},"encoding":"base64","extensions":["fdf"],"references":["IANA","[Steve_Zilles]","{application/vnd-fdf=http://www.iana.org/assignments/media-types/application/vnd-fdf}"],"xrefs":{"person":["Steve_Zilles"],"template":["application/vnd-fdf"]},"registered":true},{"content-type":"application/vnd.fdsn.mseed","encoding":"base64","extensions":["mseed"],"references":["IANA","[Chad_Trabant]","{application/vnd.fdsn.mseed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.mseed}"],"xrefs":{"person":["Chad_Trabant"],"template":["application/vnd.fdsn.mseed"]},"registered":true},{"content-type":"application/vnd.fdsn.seed","friendly":{"en":"Digital Siesmograph Networks - SEED Datafiles"},"encoding":"base64","extensions":["dataless","seed"],"references":["IANA","[Chad_Trabant]","{application/vnd.fdsn.seed=http://www.iana.org/assignments/media-types/application/vnd.fdsn.seed}"],"xrefs":{"person":["Chad_Trabant"],"template":["application/vnd.fdsn.seed"]},"registered":true},{"content-type":"application/vnd.ffsns","encoding":"base64","references":["IANA","[Holstage]","{application/vnd.ffsns=http://www.iana.org/assignments/media-types/application/vnd.ffsns}"],"xrefs":{"person":["Holstage"],"template":["application/vnd.ffsns"]},"registered":true},{"content-type":"application/vnd.fints","encoding":"base64","references":["IANA","[Ingo_Hammann]","{application/vnd.fints=http://www.iana.org/assignments/media-types/application/vnd.fints}"],"xrefs":{"person":["Ingo_Hammann"],"template":["application/vnd.fints"]},"registered":true},{"content-type":"application/vnd.FloGraphIt","friendly":{"en":"NpGraphIt"},"encoding":"base64","extensions":["gph"],"references":["IANA","[Dick_Floersch]","{application/vnd.FloGraphIt=http://www.iana.org/assignments/media-types/application/vnd.FloGraphIt}"],"xrefs":{"person":["Dick_Floersch"],"template":["application/vnd.FloGraphIt"]},"registered":true},{"content-type":"application/vnd.fluxtime.clip","friendly":{"en":"FluxTime Clip"},"encoding":"base64","extensions":["ftc"],"references":["IANA","[Marc_Winter]","{application/vnd.fluxtime.clip=http://www.iana.org/assignments/media-types/application/vnd.fluxtime.clip}"],"xrefs":{"person":["Marc_Winter"],"template":["application/vnd.fluxtime.clip"]},"registered":true},{"content-type":"application/vnd.font-fontforge-sfd","encoding":"base64","references":["IANA","[George_Williams]","{application/vnd.font-fontforge-sfd=http://www.iana.org/assignments/media-types/application/vnd.font-fontforge-sfd}"],"xrefs":{"person":["George_Williams"],"template":["application/vnd.font-fontforge-sfd"]},"registered":true},{"content-type":"application/vnd.framemaker","friendly":{"en":"FrameMaker Normal Format"},"encoding":"base64","extensions":["frm","maker","frame","fm","fb","book","fbdoc"],"references":["IANA","[Mike_Wexler]","{application/vnd.framemaker=http://www.iana.org/assignments/media-types/application/vnd.framemaker}"],"xrefs":{"person":["Mike_Wexler"],"template":["application/vnd.framemaker"]},"registered":true},{"content-type":"application/vnd.frogans.fnc","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["fnc"],"references":["IANA","[Alexis_Tamas]","{application/vnd.frogans.fnc=http://www.iana.org/assignments/media-types/application/vnd.frogans.fnc}"],"xrefs":{"person":["Alexis_Tamas"],"template":["application/vnd.frogans.fnc"]},"registered":true},{"content-type":"application/vnd.frogans.ltf","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["ltf"],"references":["IANA","[Alexis_Tamas]","{application/vnd.frogans.ltf=http://www.iana.org/assignments/media-types/application/vnd.frogans.ltf}"],"xrefs":{"person":["Alexis_Tamas"],"template":["application/vnd.frogans.ltf"]},"registered":true},{"content-type":"application/vnd.fsc.weblaunch","friendly":{"en":"Friendly Software Corporation"},"encoding":"7bit","extensions":["fsc"],"references":["IANA","[Derek_Smith]","{application/vnd.fsc.weblaunch=http://www.iana.org/assignments/media-types/application/vnd.fsc.weblaunch}"],"xrefs":{"person":["Derek_Smith"],"template":["application/vnd.fsc.weblaunch"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oas"],"references":["IANA","[Nobukazu_Togashi]","{application/vnd.fujitsu.oasys=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys}"],"xrefs":{"person":["Nobukazu_Togashi"],"template":["application/vnd.fujitsu.oasys"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys2","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa2"],"references":["IANA","[Nobukazu_Togashi]","{application/vnd.fujitsu.oasys2=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys2}"],"xrefs":{"person":["Nobukazu_Togashi"],"template":["application/vnd.fujitsu.oasys2"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasys3","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa3"],"references":["IANA","[Seiji_Okudaira]","{application/vnd.fujitsu.oasys3=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasys3}"],"xrefs":{"person":["Seiji_Okudaira"],"template":["application/vnd.fujitsu.oasys3"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasysgp","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["fg5"],"references":["IANA","[Masahiko_Sugimoto]","{application/vnd.fujitsu.oasysgp=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysgp}"],"xrefs":{"person":["Masahiko_Sugimoto"],"template":["application/vnd.fujitsu.oasysgp"]},"registered":true},{"content-type":"application/vnd.fujitsu.oasysprs","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["bh2"],"references":["IANA","[Masumi_Ogita]","{application/vnd.fujitsu.oasysprs=http://www.iana.org/assignments/media-types/application/vnd.fujitsu.oasysprs}"],"xrefs":{"person":["Masumi_Ogita"],"template":["application/vnd.fujitsu.oasysprs"]},"registered":true},{"content-type":"application/vnd.fujixerox.ART-EX","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.ART-EX=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART-EX}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.ART-EX"]},"registered":true},{"content-type":"application/vnd.fujixerox.ART4","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.ART4=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ART4}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.ART4"]},"registered":true},{"content-type":"application/vnd.fujixerox.ddd","friendly":{"en":"Fujitsu - Xerox 2D CAD Data"},"encoding":"base64","extensions":["ddd"],"references":["IANA","[Masanori_Onda]","{application/vnd.fujixerox.ddd=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.ddd}"],"xrefs":{"person":["Masanori_Onda"],"template":["application/vnd.fujixerox.ddd"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks","friendly":{"en":"Fujitsu - Xerox DocuWorks"},"encoding":"base64","extensions":["xdw"],"references":["IANA","[Yasuo_Taguchi]","{application/vnd.fujixerox.docuworks=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks}"],"xrefs":{"person":["Yasuo_Taguchi"],"template":["application/vnd.fujixerox.docuworks"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.binder","friendly":{"en":"Fujitsu - Xerox DocuWorks Binder"},"encoding":"base64","extensions":["xbd"],"references":["IANA","[Takashi_Matsumoto]","{application/vnd.fujixerox.docuworks.binder=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.binder}"],"xrefs":{"person":["Takashi_Matsumoto"],"template":["application/vnd.fujixerox.docuworks.binder"]},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.container","encoding":"base64","references":["IANA","[Kiyoshi_Tashiro]","{application/vnd.fujixerox.docuworks.container=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.docuworks.container}"],"xrefs":{"person":["Kiyoshi_Tashiro"],"template":["application/vnd.fujixerox.docuworks.container"]},"registered":true},{"content-type":"application/vnd.fujixerox.HBPL","encoding":"base64","references":["IANA","[Fumio_Tanabe]","{application/vnd.fujixerox.HBPL=http://www.iana.org/assignments/media-types/application/vnd.fujixerox.HBPL}"],"xrefs":{"person":["Fumio_Tanabe"],"template":["application/vnd.fujixerox.HBPL"]},"registered":true},{"content-type":"application/vnd.fut-misnet","encoding":"base64","references":["IANA","[Jann_Pruulman]","{application/vnd.fut-misnet=http://www.iana.org/assignments/media-types/application/vnd.fut-misnet}"],"xrefs":{"person":["Jann_Pruulman"],"template":["application/vnd.fut-misnet"]},"registered":true},{"content-type":"application/vnd.fuzzysheet","friendly":{"en":"FuzzySheet"},"encoding":"base64","extensions":["fzs"],"references":["IANA","[Simon_Birtwistle]","{application/vnd.fuzzysheet=http://www.iana.org/assignments/media-types/application/vnd.fuzzysheet}"],"xrefs":{"person":["Simon_Birtwistle"],"template":["application/vnd.fuzzysheet"]},"registered":true},{"content-type":"application/vnd.genomatix.tuxedo","friendly":{"en":"Genomatix Tuxedo Framework"},"encoding":"base64","extensions":["txd"],"references":["IANA","[Torben_Frey]","{application/vnd.genomatix.tuxedo=http://www.iana.org/assignments/media-types/application/vnd.genomatix.tuxedo}"],"xrefs":{"person":["Torben_Frey"],"template":["application/vnd.genomatix.tuxedo"]},"registered":true},{"content-type":"application/vnd.geo+json","encoding":"base64","references":["IANA","[Sean_Gillies]","{application/vnd.geo+json=http://www.iana.org/assignments/media-types/application/vnd.geo+json}"],"xrefs":{"person":["Sean_Gillies"],"template":["application/vnd.geo+json"]},"registered":true},{"content-type":"application/vnd.geocube+xml","encoding":"8bit","obsolete":true,"references":["IANA","[Francois_Pirsch]","{application/vnd.geocube+xml=http://www.iana.org/assignments/media-types/application/vnd.geocube+xml}"],"xrefs":{"person":["Francois_Pirsch"],"template":["application/vnd.geocube+xml"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"application/vnd.geogebra.file","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggb"],"references":["IANA","[GeoGebra]","[Yves_Kreis]","{application/vnd.geogebra.file=http://www.iana.org/assignments/media-types/application/vnd.geogebra.file}"],"xrefs":{"person":["GeoGebra","Yves_Kreis"],"template":["application/vnd.geogebra.file"]},"registered":true},{"content-type":"application/vnd.geogebra.tool","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggt"],"references":["IANA","[GeoGebra]","[Yves_Kreis]","{application/vnd.geogebra.tool=http://www.iana.org/assignments/media-types/application/vnd.geogebra.tool}"],"xrefs":{"person":["GeoGebra","Yves_Kreis"],"template":["application/vnd.geogebra.tool"]},"registered":true},{"content-type":"application/vnd.geometry-explorer","friendly":{"en":"GeoMetry Explorer"},"encoding":"base64","extensions":["gex","gre"],"references":["IANA","[Michael_Hvidsten]","{application/vnd.geometry-explorer=http://www.iana.org/assignments/media-types/application/vnd.geometry-explorer}"],"xrefs":{"person":["Michael_Hvidsten"],"template":["application/vnd.geometry-explorer"]},"registered":true},{"content-type":"application/vnd.geonext","friendly":{"en":"GEONExT and JSXGraph"},"encoding":"base64","extensions":["gxt"],"references":["IANA","[Matthias_Ehmann]","{application/vnd.geonext=http://www.iana.org/assignments/media-types/application/vnd.geonext}"],"xrefs":{"person":["Matthias_Ehmann"],"template":["application/vnd.geonext"]},"registered":true},{"content-type":"application/vnd.geoplan","friendly":{"en":"GeoplanW"},"encoding":"base64","extensions":["g2w"],"references":["IANA","[Christian_Mercat]","{application/vnd.geoplan=http://www.iana.org/assignments/media-types/application/vnd.geoplan}"],"xrefs":{"person":["Christian_Mercat"],"template":["application/vnd.geoplan"]},"registered":true},{"content-type":"application/vnd.geospace","friendly":{"en":"GeospacW"},"encoding":"base64","extensions":["g3w"],"references":["IANA","[Christian_Mercat]","{application/vnd.geospace=http://www.iana.org/assignments/media-types/application/vnd.geospace}"],"xrefs":{"person":["Christian_Mercat"],"template":["application/vnd.geospace"]},"registered":true},{"content-type":"application/vnd.gerber","encoding":"base64","references":["IANA","[Thomas_Weyn]","{application/vnd.gerber=http://www.iana.org/assignments/media-types/application/vnd.gerber}"],"xrefs":{"person":["Thomas_Weyn"],"template":["application/vnd.gerber"]},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt","encoding":"base64","references":["IANA","[Gil_Bernabeu]","{application/vnd.globalplatform.card-content-mgt=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt}"],"xrefs":{"person":["Gil_Bernabeu"],"template":["application/vnd.globalplatform.card-content-mgt"]},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt-response","encoding":"base64","references":["IANA","[Gil_Bernabeu]","{application/vnd.globalplatform.card-content-mgt-response=http://www.iana.org/assignments/media-types/application/vnd.globalplatform.card-content-mgt-response}"],"xrefs":{"person":["Gil_Bernabeu"],"template":["application/vnd.globalplatform.card-content-mgt-response"]},"registered":true},{"content-type":"application/vnd.gmx","friendly":{"en":"GameMaker ActiveX"},"encoding":"base64","extensions":["gmx"],"obsolete":true,"references":["IANA","[Christian_V._Sciberras]","{application/vnd.gmx=http://www.iana.org/assignments/media-types/application/vnd.gmx}"],"xrefs":{"person":["Christian_V._Sciberras"],"template":["application/vnd.gmx"],"notes":["- DEPRECATED"]},"registered":true},{"content-type":"application/vnd.google-earth.kml+xml","friendly":{"en":"Google Earth - KML"},"encoding":"8bit","extensions":["kml"],"references":["IANA","[Michael_Ashbridge]","{application/vnd.google-earth.kml+xml=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kml+xml}"],"xrefs":{"person":["Michael_Ashbridge"],"template":["application/vnd.google-earth.kml+xml"]},"registered":true},{"content-type":"application/vnd.google-earth.kmz","friendly":{"en":"Google Earth - Zipped KML"},"encoding":"8bit","extensions":["kmz"],"references":["IANA","[Michael_Ashbridge]","{application/vnd.google-earth.kmz=http://www.iana.org/assignments/media-types/application/vnd.google-earth.kmz}"],"xrefs":{"person":["Michael_Ashbridge"],"template":["application/vnd.google-earth.kmz"]},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+xml","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.e-form+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+xml}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.e-form+xml"]},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+zip","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.e-form+zip=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.e-form+zip}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.e-form+zip"]},"registered":true},{"content-type":"application/vnd.gov.sk.xmldatacontainer+xml","encoding":"base64","references":["IANA","[Peter_Biro]","[Stefan_Szilva]","{application/vnd.gov.sk.xmldatacontainer+xml=http://www.iana.org/assignments/media-types/application/vnd.gov.sk.xmldatacontainer+xml}"],"xrefs":{"person":["Peter_Biro","Stefan_Szilva"],"template":["application/vnd.gov.sk.xmldatacontainer+xml"]},"registered":true},{"content-type":"application/vnd.grafeq","friendly":{"en":"GrafEq"},"encoding":"base64","extensions":["gqf","gqs"],"references":["IANA","[Jeff_Tupper]","{application/vnd.grafeq=http://www.iana.org/assignments/media-types/application/vnd.grafeq}"],"xrefs":{"person":["Jeff_Tupper"],"template":["application/vnd.grafeq"]},"registered":true},{"content-type":"application/vnd.gridmp","encoding":"base64","references":["IANA","[Jeff_Lawson]","{application/vnd.gridmp=http://www.iana.org/assignments/media-types/application/vnd.gridmp}"],"xrefs":{"person":["Jeff_Lawson"],"template":["application/vnd.gridmp"]},"registered":true},{"content-type":"application/vnd.groove-account","friendly":{"en":"Groove - Account"},"encoding":"base64","extensions":["gac"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-account=http://www.iana.org/assignments/media-types/application/vnd.groove-account}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-account"]},"registered":true},{"content-type":"application/vnd.groove-help","friendly":{"en":"Groove - Help"},"encoding":"base64","extensions":["ghf"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-help=http://www.iana.org/assignments/media-types/application/vnd.groove-help}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-help"]},"registered":true},{"content-type":"application/vnd.groove-identity-message","friendly":{"en":"Groove - Identity Message"},"encoding":"base64","extensions":["gim"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-identity-message=http://www.iana.org/assignments/media-types/application/vnd.groove-identity-message}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-identity-message"]},"registered":true},{"content-type":"application/vnd.groove-injector","friendly":{"en":"Groove - Injector"},"encoding":"base64","extensions":["grv"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-injector=http://www.iana.org/assignments/media-types/application/vnd.groove-injector}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-injector"]},"registered":true},{"content-type":"application/vnd.groove-tool-message","friendly":{"en":"Groove - Tool Message"},"encoding":"base64","extensions":["gtm"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-tool-message=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-message}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-tool-message"]},"registered":true},{"content-type":"application/vnd.groove-tool-template","friendly":{"en":"Groove - Tool Template"},"encoding":"base64","extensions":["tpl"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-tool-template=http://www.iana.org/assignments/media-types/application/vnd.groove-tool-template}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-tool-template"]},"registered":true},{"content-type":"application/vnd.groove-vcard","friendly":{"en":"Groove - Vcard"},"encoding":"base64","extensions":["vcg"],"references":["IANA","[Todd_Joseph]","{application/vnd.groove-vcard=http://www.iana.org/assignments/media-types/application/vnd.groove-vcard}"],"xrefs":{"person":["Todd_Joseph"],"template":["application/vnd.groove-vcard"]},"registered":true},{"content-type":"application/vnd.hal+json","encoding":"base64","references":["IANA","[Mike_Kelly]","{application/vnd.hal+json=http://www.iana.org/assignments/media-types/application/vnd.hal+json}"],"xrefs":{"person":["Mike_Kelly"],"template":["application/vnd.hal+json"]},"registered":true},{"content-type":"application/vnd.hal+xml","friendly":{"en":"Hypertext Application Language"},"encoding":"base64","extensions":["hal"],"references":["IANA","[Mike_Kelly]","{application/vnd.hal+xml=http://www.iana.org/assignments/media-types/application/vnd.hal+xml}"],"xrefs":{"person":["Mike_Kelly"],"template":["application/vnd.hal+xml"]},"registered":true},{"content-type":"application/vnd.HandHeld-Entertainment+xml","friendly":{"en":"ZVUE Media Manager"},"encoding":"base64","extensions":["zmm"],"references":["IANA","[Eric_Hamilton]","{application/vnd.HandHeld-Entertainment+xml=http://www.iana.org/assignments/media-types/application/vnd.HandHeld-Entertainment+xml}"],"xrefs":{"person":["Eric_Hamilton"],"template":["application/vnd.HandHeld-Entertainment+xml"]},"registered":true},{"content-type":"application/vnd.hbci","friendly":{"en":"Homebanking Computer Interface (HBCI)"},"encoding":"base64","extensions":["hbci","hbc","kom","upa","pkd","bpd"],"references":["IANA","[Ingo_Hammann]","{application/vnd.hbci=http://www.iana.org/assignments/media-types/application/vnd.hbci}"],"xrefs":{"person":["Ingo_Hammann"],"template":["application/vnd.hbci"]},"registered":true},{"content-type":"application/vnd.hcl-bireports","encoding":"base64","references":["IANA","[Doug_R._Serres]","{application/vnd.hcl-bireports=http://www.iana.org/assignments/media-types/application/vnd.hcl-bireports}"],"xrefs":{"person":["Doug_R._Serres"],"template":["application/vnd.hcl-bireports"]},"registered":true},{"content-type":"application/vnd.heroku+json","encoding":"base64","references":["IANA","[Wesley_Beary]","{application/vnd.heroku+json=http://www.iana.org/assignments/media-types/application/vnd.heroku+json}"],"xrefs":{"person":["Wesley_Beary"],"template":["application/vnd.heroku+json"]},"registered":true},{"content-type":"application/vnd.hhe.lesson-player","friendly":{"en":"Archipelago Lesson Player"},"encoding":"base64","extensions":["les"],"references":["IANA","[Randy_Jones]","{application/vnd.hhe.lesson-player=http://www.iana.org/assignments/media-types/application/vnd.hhe.lesson-player}"],"xrefs":{"person":["Randy_Jones"],"template":["application/vnd.hhe.lesson-player"]},"registered":true},{"content-type":"application/vnd.hp-HPGL","friendly":{"en":"HP-GL/2 and HP RTL"},"encoding":"base64","extensions":["plt","hpgl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-HPGL=http://www.iana.org/assignments/media-types/application/vnd.hp-HPGL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-HPGL"]},"registered":true},{"content-type":"application/vnd.hp-hpid","friendly":{"en":"Hewlett Packard Instant Delivery"},"encoding":"base64","extensions":["hpid"],"references":["IANA","[Aloke_Gupta]","{application/vnd.hp-hpid=http://www.iana.org/assignments/media-types/application/vnd.hp-hpid}"],"xrefs":{"person":["Aloke_Gupta"],"template":["application/vnd.hp-hpid"]},"registered":true},{"content-type":"application/vnd.hp-hps","friendly":{"en":"Hewlett-Packard's WebPrintSmart"},"encoding":"base64","extensions":["hps"],"references":["IANA","[Steve_Aubrey]","{application/vnd.hp-hps=http://www.iana.org/assignments/media-types/application/vnd.hp-hps}"],"xrefs":{"person":["Steve_Aubrey"],"template":["application/vnd.hp-hps"]},"registered":true},{"content-type":"application/vnd.hp-jlyt","friendly":{"en":"HP Indigo Digital Press - Job Layout Languate"},"encoding":"base64","extensions":["jlt"],"references":["IANA","[Amir_Gaash]","{application/vnd.hp-jlyt=http://www.iana.org/assignments/media-types/application/vnd.hp-jlyt}"],"xrefs":{"person":["Amir_Gaash"],"template":["application/vnd.hp-jlyt"]},"registered":true},{"content-type":"application/vnd.hp-PCL","friendly":{"en":"HP Printer Command Language"},"encoding":"base64","extensions":["pcl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-PCL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-PCL"]},"registered":true},{"content-type":"application/vnd.hp-PCLXL","friendly":{"en":"PCL 6 Enhanced (Formely PCL XL)"},"encoding":"base64","extensions":["pclxl"],"references":["IANA","[Bob_Pentecost]","{application/vnd.hp-PCLXL=http://www.iana.org/assignments/media-types/application/vnd.hp-PCLXL}"],"xrefs":{"person":["Bob_Pentecost"],"template":["application/vnd.hp-PCLXL"]},"registered":true},{"content-type":"application/vnd.httphone","encoding":"base64","references":["IANA","[Franck_Lefevre]","{application/vnd.httphone=http://www.iana.org/assignments/media-types/application/vnd.httphone}"],"xrefs":{"person":["Franck_Lefevre"],"template":["application/vnd.httphone"]},"registered":true},{"content-type":"application/vnd.hydrostatix.sof-data","friendly":{"en":"Hydrostatix Master Suite"},"encoding":"base64","extensions":["sfd-hdstx"],"references":["IANA","[Allen_Gillam]","{application/vnd.hydrostatix.sof-data=http://www.iana.org/assignments/media-types/application/vnd.hydrostatix.sof-data}"],"xrefs":{"person":["Allen_Gillam"],"template":["application/vnd.hydrostatix.sof-data"]},"registered":true},{"content-type":"application/vnd.hzn-3d-crossword","friendly":{"en":"3D Crossword Plugin"},"encoding":"base64","references":["IANA","[James_Minnis]","{application/vnd.hzn-3d-crossword=http://www.iana.org/assignments/media-types/application/vnd.hzn-3d-crossword}"],"xrefs":{"person":["James_Minnis"],"template":["application/vnd.hzn-3d-crossword"]},"registered":true},{"content-type":"application/vnd.ibm.afplinedata","encoding":"base64","references":["IANA","[Roger_Buis]","{application/vnd.ibm.afplinedata=http://www.iana.org/assignments/media-types/application/vnd.ibm.afplinedata}"],"xrefs":{"person":["Roger_Buis"],"template":["application/vnd.ibm.afplinedata"]},"registered":true},{"content-type":"application/vnd.ibm.electronic-media","encoding":"base64","extensions":["emm"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.electronic-media=http://www.iana.org/assignments/media-types/application/vnd.ibm.electronic-media}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.electronic-media"]},"registered":true},{"content-type":"application/vnd.ibm.MiniPay","friendly":{"en":"MiniPay"},"encoding":"base64","extensions":["mpy"],"references":["IANA","[Amir_Herzberg]","{application/vnd.ibm.MiniPay=http://www.iana.org/assignments/media-types/application/vnd.ibm.MiniPay}"],"xrefs":{"person":["Amir_Herzberg"],"template":["application/vnd.ibm.MiniPay"]},"registered":true},{"content-type":"application/vnd.ibm.modcap","friendly":{"en":"MO:DCA-P"},"encoding":"base64","extensions":["afp","list3820","listafp"],"references":["IANA","[Reinhard_Hohensee]","{application/vnd.ibm.modcap=http://www.iana.org/assignments/media-types/application/vnd.ibm.modcap}"],"xrefs":{"person":["Reinhard_Hohensee"],"template":["application/vnd.ibm.modcap"]},"registered":true},{"content-type":"application/vnd.ibm.rights-management","friendly":{"en":"IBM DB2 Rights Manager"},"encoding":"base64","extensions":["irm"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.rights-management=http://www.iana.org/assignments/media-types/application/vnd.ibm.rights-management}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.rights-management"]},"registered":true},{"content-type":"application/vnd.ibm.secure-container","friendly":{"en":"IBM Electronic Media Management System - Secure Container"},"encoding":"base64","extensions":["sc"],"references":["IANA","[Bruce_Tantlinger]","{application/vnd.ibm.secure-container=http://www.iana.org/assignments/media-types/application/vnd.ibm.secure-container}"],"xrefs":{"person":["Bruce_Tantlinger"],"template":["application/vnd.ibm.secure-container"]},"registered":true},{"content-type":"application/vnd.iccprofile","friendly":{"en":"ICC profile"},"encoding":"base64","extensions":["icc","icm"],"references":["IANA","[Phil_Green]","{application/vnd.iccprofile=http://www.iana.org/assignments/media-types/application/vnd.iccprofile}"],"xrefs":{"person":["Phil_Green"],"template":["application/vnd.iccprofile"]},"registered":true},{"content-type":"application/vnd.ieee.1905","encoding":"base64","references":["IANA","[Purva_R_Rajkotia]","{application/vnd.ieee.1905=http://www.iana.org/assignments/media-types/application/vnd.ieee.1905}"],"xrefs":{"person":["Purva_R_Rajkotia"],"template":["application/vnd.ieee.1905"]},"registered":true},{"content-type":"application/vnd.igloader","friendly":{"en":"igLoader"},"encoding":"base64","extensions":["igl"],"references":["IANA","[Tim_Fisher]","{application/vnd.igloader=http://www.iana.org/assignments/media-types/application/vnd.igloader}"],"xrefs":{"person":["Tim_Fisher"],"template":["application/vnd.igloader"]},"registered":true},{"content-type":"application/vnd.immervision-ivp","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivp"],"references":["IANA","[Mathieu_Villegas]","{application/vnd.immervision-ivp=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivp}"],"xrefs":{"person":["Mathieu_Villegas"],"template":["application/vnd.immervision-ivp"]},"registered":true},{"content-type":"application/vnd.immervision-ivu","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivu"],"references":["IANA","[Mathieu_Villegas]","{application/vnd.immervision-ivu=http://www.iana.org/assignments/media-types/application/vnd.immervision-ivu}"],"xrefs":{"person":["Mathieu_Villegas"],"template":["application/vnd.immervision-ivu"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p1","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p1=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p1}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p1"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p2","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p2=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p2}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p2"]},"registered":true},{"content-type":"application/vnd.ims.imsccv1p3","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.imsccv1p3=http://www.iana.org/assignments/media-types/application/vnd.ims.imsccv1p3}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.imsccv1p3"]},"registered":true},{"content-type":"application/vnd.ims.lis.v2.result+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lis.v2.result+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lis.v2.result+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lis.v2.result+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolconsumerprofile+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolconsumerprofile+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolconsumerprofile+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolconsumerprofile+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolproxy+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolproxy+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy.id+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolproxy.id+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolproxy.id+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolproxy.id+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolsettings+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolsettings+json"]},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings.simple+json","encoding":"base64","references":["IANA","[Lisa_Mattson]","{application/vnd.ims.lti.v2.toolsettings.simple+json=http://www.iana.org/assignments/media-types/application/vnd.ims.lti.v2.toolsettings.simple+json}"],"xrefs":{"person":["Lisa_Mattson"],"template":["application/vnd.ims.lti.v2.toolsettings.simple+json"]},"registered":true},{"content-type":"application/vnd.informedcontrol.rms+xml","encoding":"base64","references":["IANA","[Mark_Wahl]","{application/vnd.informedcontrol.rms+xml=http://www.iana.org/assignments/media-types/application/vnd.informedcontrol.rms+xml}"],"xrefs":{"person":["Mark_Wahl"],"template":["application/vnd.informedcontrol.rms+xml"]},"registered":true},{"content-type":"application/vnd.informix-visionary","encoding":"base64","obsolete":true,"use-instead":"application/vnd.visionary","references":["IANA","[Christopher_Gales]","{application/vnd.informix-visionary=http://www.iana.org/assignments/media-types/application/vnd.informix-visionary}"],"xrefs":{"person":["Christopher_Gales"],"template":["application/vnd.informix-visionary"],"notes":["- OBSOLETED in favor of application/vnd.visionary"]},"registered":true},{"content-type":"application/vnd.infotech.project","encoding":"base64","references":["IANA","[Charles_Engelke]","{application/vnd.infotech.project=http://www.iana.org/assignments/media-types/application/vnd.infotech.project}"],"xrefs":{"person":["Charles_Engelke"],"template":["application/vnd.infotech.project"]},"registered":true},{"content-type":"application/vnd.infotech.project+xml","encoding":"base64","references":["IANA","[Charles_Engelke]","{application/vnd.infotech.project+xml=http://www.iana.org/assignments/media-types/application/vnd.infotech.project+xml}"],"xrefs":{"person":["Charles_Engelke"],"template":["application/vnd.infotech.project+xml"]},"registered":true},{"content-type":"application/vnd.innopath.wamp.notification","encoding":"base64","references":["IANA","[Takanori_Sudo]","{application/vnd.innopath.wamp.notification=http://www.iana.org/assignments/media-types/application/vnd.innopath.wamp.notification}"],"xrefs":{"person":["Takanori_Sudo"],"template":["application/vnd.innopath.wamp.notification"]},"registered":true},{"content-type":"application/vnd.insors.igm","friendly":{"en":"IOCOM Visimeet"},"encoding":"base64","extensions":["igm"],"references":["IANA","[Jon_Swanson]","{application/vnd.insors.igm=http://www.iana.org/assignments/media-types/application/vnd.insors.igm}"],"xrefs":{"person":["Jon_Swanson"],"template":["application/vnd.insors.igm"]},"registered":true},{"content-type":"application/vnd.intercon.formnet","friendly":{"en":"Intercon FormNet"},"encoding":"base64","extensions":["xpw","xpx"],"references":["IANA","[Tom_Gurak]","{application/vnd.intercon.formnet=http://www.iana.org/assignments/media-types/application/vnd.intercon.formnet}"],"xrefs":{"person":["Tom_Gurak"],"template":["application/vnd.intercon.formnet"]},"registered":true},{"content-type":"application/vnd.intergeo","friendly":{"en":"Interactive Geometry Software"},"encoding":"base64","extensions":["i2g"],"references":["IANA","[Yves_Kreis_2]","{application/vnd.intergeo=http://www.iana.org/assignments/media-types/application/vnd.intergeo}"],"xrefs":{"person":["Yves_Kreis_2"],"template":["application/vnd.intergeo"]},"registered":true},{"content-type":"application/vnd.intertrust.digibox","encoding":"base64","references":["IANA","[Luke_Tomasello]","{application/vnd.intertrust.digibox=http://www.iana.org/assignments/media-types/application/vnd.intertrust.digibox}"],"xrefs":{"person":["Luke_Tomasello"],"template":["application/vnd.intertrust.digibox"]},"registered":true},{"content-type":"application/vnd.intertrust.nncp","encoding":"base64","references":["IANA","[Luke_Tomasello]","{application/vnd.intertrust.nncp=http://www.iana.org/assignments/media-types/application/vnd.intertrust.nncp}"],"xrefs":{"person":["Luke_Tomasello"],"template":["application/vnd.intertrust.nncp"]},"registered":true},{"content-type":"application/vnd.intu.qbo","friendly":{"en":"Open Financial Exchange"},"encoding":"base64","extensions":["qbo"],"references":["IANA","[Greg_Scratchley]","{application/vnd.intu.qbo=http://www.iana.org/assignments/media-types/application/vnd.intu.qbo}"],"xrefs":{"person":["Greg_Scratchley"],"template":["application/vnd.intu.qbo"]},"registered":true},{"content-type":"application/vnd.intu.qfx","friendly":{"en":"Quicken"},"encoding":"base64","extensions":["qfx"],"references":["IANA","[Greg_Scratchley]","{application/vnd.intu.qfx=http://www.iana.org/assignments/media-types/application/vnd.intu.qfx}"],"xrefs":{"person":["Greg_Scratchley"],"template":["application/vnd.intu.qfx"]},"registered":true},{"content-type":"application/vnd.iptc.g2.catalogitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.catalogitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.catalogitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.catalogitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.conceptitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.conceptitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.conceptitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.conceptitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.knowledgeitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.knowledgeitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.knowledgeitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.knowledgeitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.newsitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.newsitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.newsitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.newsmessage+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.newsmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.newsmessage+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.newsmessage+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.packageitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.packageitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.packageitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.packageitem+xml"]},"registered":true},{"content-type":"application/vnd.iptc.g2.planningitem+xml","encoding":"base64","references":["IANA","[Michael_Steidl]","{application/vnd.iptc.g2.planningitem+xml=http://www.iana.org/assignments/media-types/application/vnd.iptc.g2.planningitem+xml}"],"xrefs":{"person":["Michael_Steidl"],"template":["application/vnd.iptc.g2.planningitem+xml"]},"registered":true},{"content-type":"application/vnd.ipunplugged.rcprofile","friendly":{"en":"IP Unplugged Roaming Client"},"encoding":"base64","extensions":["rcprofile"],"references":["IANA","[Per_Ersson]","{application/vnd.ipunplugged.rcprofile=http://www.iana.org/assignments/media-types/application/vnd.ipunplugged.rcprofile}"],"xrefs":{"person":["Per_Ersson"],"template":["application/vnd.ipunplugged.rcprofile"]},"registered":true},{"content-type":"application/vnd.irepository.package+xml","friendly":{"en":"iRepository / Lucidoc Editor"},"encoding":"base64","extensions":["irp"],"references":["IANA","[Martin_Knowles]","{application/vnd.irepository.package+xml=http://www.iana.org/assignments/media-types/application/vnd.irepository.package+xml}"],"xrefs":{"person":["Martin_Knowles"],"template":["application/vnd.irepository.package+xml"]},"registered":true},{"content-type":"application/vnd.is-xpr","friendly":{"en":"Express by Infoseek"},"encoding":"base64","extensions":["xpr"],"references":["IANA","[Satish_Navarajan]","{application/vnd.is-xpr=http://www.iana.org/assignments/media-types/application/vnd.is-xpr}"],"xrefs":{"person":["Satish_Navarajan"],"template":["application/vnd.is-xpr"]},"registered":true},{"content-type":"application/vnd.isac.fcs","friendly":{"en":"International Society for Advancement of Cytometry"},"encoding":"base64","extensions":["fcs"],"references":["IANA","[Ryan_Brinkman]","{application/vnd.isac.fcs=http://www.iana.org/assignments/media-types/application/vnd.isac.fcs}"],"xrefs":{"person":["Ryan_Brinkman"],"template":["application/vnd.isac.fcs"]},"registered":true},{"content-type":"application/vnd.jam","friendly":{"en":"Lightspeed Audio Lab"},"encoding":"base64","extensions":["jam"],"references":["IANA","[Brijesh_Kumar]","{application/vnd.jam=http://www.iana.org/assignments/media-types/application/vnd.jam}"],"xrefs":{"person":["Brijesh_Kumar"],"template":["application/vnd.jam"]},"registered":true},{"content-type":"application/vnd.japannet-directory-service","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-directory-service=http://www.iana.org/assignments/media-types/application/vnd.japannet-directory-service}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-directory-service"]},"registered":true},{"content-type":"application/vnd.japannet-jpnstore-wakeup","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-jpnstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-jpnstore-wakeup}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-jpnstore-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-payment-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-payment-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-payment-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-payment-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-registration","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-registration=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-registration"]},"registered":true},{"content-type":"application/vnd.japannet-registration-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-registration-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-registration-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-registration-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-setstore-wakeup","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-setstore-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-setstore-wakeup}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-setstore-wakeup"]},"registered":true},{"content-type":"application/vnd.japannet-verification","encoding":"base64","references":["IANA","[Jun_Yoshitake]","{application/vnd.japannet-verification=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification}"],"xrefs":{"person":["Jun_Yoshitake"],"template":["application/vnd.japannet-verification"]},"registered":true},{"content-type":"application/vnd.japannet-verification-wakeup","encoding":"base64","references":["IANA","[Kiyofusa_Fujii]","{application/vnd.japannet-verification-wakeup=http://www.iana.org/assignments/media-types/application/vnd.japannet-verification-wakeup}"],"xrefs":{"person":["Kiyofusa_Fujii"],"template":["application/vnd.japannet-verification-wakeup"]},"registered":true},{"content-type":"application/vnd.jcp.javame.midlet-rms","friendly":{"en":"Mobile Information Device Profile"},"encoding":"base64","extensions":["rms"],"references":["IANA","[Mikhail_Gorshenev]","{application/vnd.jcp.javame.midlet-rms=http://www.iana.org/assignments/media-types/application/vnd.jcp.javame.midlet-rms}"],"xrefs":{"person":["Mikhail_Gorshenev"],"template":["application/vnd.jcp.javame.midlet-rms"]},"registered":true},{"content-type":"application/vnd.jisp","friendly":{"en":"RhymBox"},"encoding":"base64","extensions":["jisp"],"references":["IANA","[Sebastiaan_Deckers]","{application/vnd.jisp=http://www.iana.org/assignments/media-types/application/vnd.jisp}"],"xrefs":{"person":["Sebastiaan_Deckers"],"template":["application/vnd.jisp"]},"registered":true},{"content-type":"application/vnd.joost.joda-archive","friendly":{"en":"Joda Archive"},"encoding":"base64","extensions":["joda"],"references":["IANA","[Joost]","{application/vnd.joost.joda-archive=http://www.iana.org/assignments/media-types/application/vnd.joost.joda-archive}"],"xrefs":{"person":["Joost"],"template":["application/vnd.joost.joda-archive"]},"registered":true},{"content-type":"application/vnd.jsk.isdn-ngn","encoding":"base64","references":["IANA","[Yokoyama_Kiyonobu]","{application/vnd.jsk.isdn-ngn=http://www.iana.org/assignments/media-types/application/vnd.jsk.isdn-ngn}"],"xrefs":{"person":["Yokoyama_Kiyonobu"],"template":["application/vnd.jsk.isdn-ngn"]},"registered":true},{"content-type":"application/vnd.kahootz","friendly":{"en":"Kahootz"},"encoding":"base64","extensions":["ktr","ktz"],"references":["IANA","[Tim_Macdonald]","{application/vnd.kahootz=http://www.iana.org/assignments/media-types/application/vnd.kahootz}"],"xrefs":{"person":["Tim_Macdonald"],"template":["application/vnd.kahootz"]},"registered":true},{"content-type":"application/vnd.kde.karbon","friendly":{"en":"KDE KOffice Office Suite - Karbon"},"encoding":"base64","extensions":["karbon"],"references":["IANA","[David_Faure]","{application/vnd.kde.karbon=http://www.iana.org/assignments/media-types/application/vnd.kde.karbon}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.karbon"]},"registered":true},{"content-type":"application/vnd.kde.kchart","friendly":{"en":"KDE KOffice Office Suite - KChart"},"encoding":"base64","extensions":["chrt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kchart=http://www.iana.org/assignments/media-types/application/vnd.kde.kchart}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kchart"]},"registered":true},{"content-type":"application/vnd.kde.kformula","friendly":{"en":"KDE KOffice Office Suite - Kformula"},"encoding":"base64","extensions":["kfo"],"references":["IANA","[David_Faure]","{application/vnd.kde.kformula=http://www.iana.org/assignments/media-types/application/vnd.kde.kformula}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kformula"]},"registered":true},{"content-type":"application/vnd.kde.kivio","friendly":{"en":"KDE KOffice Office Suite - Kivio"},"encoding":"base64","extensions":["flw"],"references":["IANA","[David_Faure]","{application/vnd.kde.kivio=http://www.iana.org/assignments/media-types/application/vnd.kde.kivio}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kivio"]},"registered":true},{"content-type":"application/vnd.kde.kontour","friendly":{"en":"KDE KOffice Office Suite - Kontour"},"encoding":"base64","extensions":["kon"],"references":["IANA","[David_Faure]","{application/vnd.kde.kontour=http://www.iana.org/assignments/media-types/application/vnd.kde.kontour}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kontour"]},"registered":true},{"content-type":"application/vnd.kde.kpresenter","friendly":{"en":"KDE KOffice Office Suite - Kpresenter"},"encoding":"base64","extensions":["kpr","kpt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kpresenter=http://www.iana.org/assignments/media-types/application/vnd.kde.kpresenter}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kpresenter"]},"registered":true},{"content-type":"application/vnd.kde.kspread","friendly":{"en":"KDE KOffice Office Suite - Kspread"},"encoding":"base64","extensions":["ksp"],"references":["IANA","[David_Faure]","{application/vnd.kde.kspread=http://www.iana.org/assignments/media-types/application/vnd.kde.kspread}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kspread"]},"registered":true},{"content-type":"application/vnd.kde.kword","friendly":{"en":"KDE KOffice Office Suite - Kword"},"encoding":"base64","extensions":["kwd","kwt"],"references":["IANA","[David_Faure]","{application/vnd.kde.kword=http://www.iana.org/assignments/media-types/application/vnd.kde.kword}"],"xrefs":{"person":["David_Faure"],"template":["application/vnd.kde.kword"]},"registered":true},{"content-type":"application/vnd.kenameaapp","friendly":{"en":"Kenamea App"},"encoding":"base64","extensions":["htke"],"references":["IANA","[Dirk_DiGiorgio-Haag]","{application/vnd.kenameaapp=http://www.iana.org/assignments/media-types/application/vnd.kenameaapp}"],"xrefs":{"person":["Dirk_DiGiorgio-Haag"],"template":["application/vnd.kenameaapp"]},"registered":true},{"content-type":"application/vnd.kidspiration","friendly":{"en":"Kidspiration"},"encoding":"base64","extensions":["kia"],"references":["IANA","[Jack_Bennett]","{application/vnd.kidspiration=http://www.iana.org/assignments/media-types/application/vnd.kidspiration}"],"xrefs":{"person":["Jack_Bennett"],"template":["application/vnd.kidspiration"]},"registered":true},{"content-type":"application/vnd.Kinar","friendly":{"en":"Kinar Applications"},"encoding":"base64","extensions":["kne","knp","sdf"],"references":["IANA","[Hemant_Thakkar]","{application/vnd.Kinar=http://www.iana.org/assignments/media-types/application/vnd.Kinar}"],"xrefs":{"person":["Hemant_Thakkar"],"template":["application/vnd.Kinar"]},"registered":true},{"content-type":"application/vnd.koan","friendly":{"en":"SSEYO Koan Play File"},"encoding":"base64","extensions":["skd","skm","skp","skt"],"references":["IANA","[Pete_Cole]","{application/vnd.koan=http://www.iana.org/assignments/media-types/application/vnd.koan}"],"xrefs":{"person":["Pete_Cole"],"template":["application/vnd.koan"]},"registered":true},{"content-type":"application/vnd.kodak-descriptor","friendly":{"en":"Kodak Storyshare"},"encoding":"base64","extensions":["sse"],"references":["IANA","[Michael_J._Donahue]","{application/vnd.kodak-descriptor=http://www.iana.org/assignments/media-types/application/vnd.kodak-descriptor}"],"xrefs":{"person":["Michael_J._Donahue"],"template":["application/vnd.kodak-descriptor"]},"registered":true},{"content-type":"application/vnd.las.las+xml","friendly":{"en":"Laser App Enterprise"},"encoding":"base64","extensions":["lasxml"],"references":["IANA","[Rob_Bailey]","{application/vnd.las.las+xml=http://www.iana.org/assignments/media-types/application/vnd.las.las+xml}"],"xrefs":{"person":["Rob_Bailey"],"template":["application/vnd.las.las+xml"]},"registered":true},{"content-type":"application/vnd.liberty-request+xml","encoding":"base64","references":["IANA","[Brett_McDowell]","{application/vnd.liberty-request+xml=http://www.iana.org/assignments/media-types/application/vnd.liberty-request+xml}"],"xrefs":{"person":["Brett_McDowell"],"template":["application/vnd.liberty-request+xml"]},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.desktop","friendly":{"en":"Life Balance - Desktop Edition"},"encoding":"base64","extensions":["lbd"],"references":["IANA","[Catherine_E._White]","{application/vnd.llamagraphics.life-balance.desktop=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.desktop}"],"xrefs":{"person":["Catherine_E._White"],"template":["application/vnd.llamagraphics.life-balance.desktop"]},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.exchange+xml","friendly":{"en":"Life Balance - Exchange Format"},"encoding":"base64","extensions":["lbe"],"references":["IANA","[Catherine_E._White]","{application/vnd.llamagraphics.life-balance.exchange+xml=http://www.iana.org/assignments/media-types/application/vnd.llamagraphics.life-balance.exchange+xml}"],"xrefs":{"person":["Catherine_E._White"],"template":["application/vnd.llamagraphics.life-balance.exchange+xml"]},"registered":true},{"content-type":"application/vnd.lotus-1-2-3","friendly":{"en":"Lotus 1-2-3"},"encoding":"base64","extensions":["wks","123"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-1-2-3=http://www.iana.org/assignments/media-types/application/vnd.lotus-1-2-3}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-1-2-3"]},"registered":true},{"content-type":"application/vnd.lotus-approach","friendly":{"en":"Lotus Approach"},"encoding":"base64","extensions":["apr"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-approach=http://www.iana.org/assignments/media-types/application/vnd.lotus-approach}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-approach"]},"registered":true},{"content-type":"application/vnd.lotus-freelance","friendly":{"en":"Lotus Freelance"},"encoding":"base64","extensions":["pre"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-freelance=http://www.iana.org/assignments/media-types/application/vnd.lotus-freelance}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-freelance"]},"registered":true},{"content-type":"application/vnd.lotus-notes","friendly":{"en":"Lotus Notes"},"encoding":"base64","extensions":["nsf"],"references":["IANA","[Michael_Laramie]","{application/vnd.lotus-notes=http://www.iana.org/assignments/media-types/application/vnd.lotus-notes}"],"xrefs":{"person":["Michael_Laramie"],"template":["application/vnd.lotus-notes"]},"registered":true},{"content-type":"application/vnd.lotus-organizer","friendly":{"en":"Lotus Organizer"},"encoding":"base64","extensions":["org"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-organizer=http://www.iana.org/assignments/media-types/application/vnd.lotus-organizer}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-organizer"]},"registered":true},{"content-type":"application/vnd.lotus-screencam","friendly":{"en":"Lotus Screencam"},"encoding":"base64","extensions":["scm"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-screencam=http://www.iana.org/assignments/media-types/application/vnd.lotus-screencam}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-screencam"]},"registered":true},{"content-type":"application/vnd.lotus-wordpro","friendly":{"en":"Lotus Wordpro"},"encoding":"base64","extensions":["lwp"],"references":["IANA","[Paul_Wattenberger]","{application/vnd.lotus-wordpro=http://www.iana.org/assignments/media-types/application/vnd.lotus-wordpro}"],"xrefs":{"person":["Paul_Wattenberger"],"template":["application/vnd.lotus-wordpro"]},"registered":true},{"content-type":"application/vnd.macports.portpkg","friendly":{"en":"MacPorts Port System"},"encoding":"base64","extensions":["portpkg"],"references":["IANA","[James_Berry]","{application/vnd.macports.portpkg=http://www.iana.org/assignments/media-types/application/vnd.macports.portpkg}"],"xrefs":{"person":["James_Berry"],"template":["application/vnd.macports.portpkg"]},"registered":true},{"content-type":"application/vnd.marlin.drm.actiontoken+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.actiontoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.actiontoken+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.actiontoken+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.conftoken+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.conftoken+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.conftoken+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.conftoken+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.license+xml","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.license+xml=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.license+xml}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.license+xml"]},"registered":true},{"content-type":"application/vnd.marlin.drm.mdcf","encoding":"base64","references":["IANA","[Gary_Ellison]","{application/vnd.marlin.drm.mdcf=http://www.iana.org/assignments/media-types/application/vnd.marlin.drm.mdcf}"],"xrefs":{"person":["Gary_Ellison"],"template":["application/vnd.marlin.drm.mdcf"]},"registered":true},{"content-type":"application/vnd.mason+json","encoding":"base64","references":["IANA","[Jorn_Wildt]","{application/vnd.mason+json=http://www.iana.org/assignments/media-types/application/vnd.mason+json}"],"xrefs":{"person":["Jorn_Wildt"],"template":["application/vnd.mason+json"]},"registered":true},{"content-type":"application/vnd.maxmind.maxmind-db","encoding":"base64","references":["IANA","[William_Stevenson]","{application/vnd.maxmind.maxmind-db=http://www.iana.org/assignments/media-types/application/vnd.maxmind.maxmind-db}"],"xrefs":{"person":["William_Stevenson"],"template":["application/vnd.maxmind.maxmind-db"]},"registered":true},{"content-type":"application/vnd.mcd","friendly":{"en":"Micro CADAM Helix D&D"},"encoding":"base64","extensions":["mcd"],"references":["IANA","[Tadashi_Gotoh]","{application/vnd.mcd=http://www.iana.org/assignments/media-types/application/vnd.mcd}"],"xrefs":{"person":["Tadashi_Gotoh"],"template":["application/vnd.mcd"]},"registered":true},{"content-type":"application/vnd.medcalcdata","friendly":{"en":"MedCalc"},"encoding":"base64","extensions":["mc1"],"references":["IANA","[Frank_Schoonjans]","{application/vnd.medcalcdata=http://www.iana.org/assignments/media-types/application/vnd.medcalcdata}"],"xrefs":{"person":["Frank_Schoonjans"],"template":["application/vnd.medcalcdata"]},"registered":true},{"content-type":"application/vnd.mediastation.cdkey","friendly":{"en":"MediaRemote"},"encoding":"base64","extensions":["cdkey"],"references":["IANA","[Henry_Flurry]","{application/vnd.mediastation.cdkey=http://www.iana.org/assignments/media-types/application/vnd.mediastation.cdkey}"],"xrefs":{"person":["Henry_Flurry"],"template":["application/vnd.mediastation.cdkey"]},"registered":true},{"content-type":"application/vnd.meridian-slingshot","encoding":"base64","references":["IANA","[Eric_Wedel]","{application/vnd.meridian-slingshot=http://www.iana.org/assignments/media-types/application/vnd.meridian-slingshot}"],"xrefs":{"person":["Eric_Wedel"],"template":["application/vnd.meridian-slingshot"]},"registered":true},{"content-type":"application/vnd.MFER","friendly":{"en":"Medical Waveform Encoding Format"},"encoding":"base64","extensions":["mwf"],"references":["IANA","[Masaaki_Hirai]","{application/vnd.MFER=http://www.iana.org/assignments/media-types/application/vnd.MFER}"],"xrefs":{"person":["Masaaki_Hirai"],"template":["application/vnd.MFER"]},"registered":true},{"content-type":"application/vnd.mfmp","friendly":{"en":"Melody Format for Mobile Platform"},"encoding":"base64","extensions":["mfm"],"references":["IANA","[Yukari_Ikeda]","{application/vnd.mfmp=http://www.iana.org/assignments/media-types/application/vnd.mfmp}"],"xrefs":{"person":["Yukari_Ikeda"],"template":["application/vnd.mfmp"]},"registered":true},{"content-type":"application/vnd.micro+json","encoding":"base64","references":["IANA","[Dali_Zheng]","{application/vnd.micro+json=http://www.iana.org/assignments/media-types/application/vnd.micro+json}"],"xrefs":{"person":["Dali_Zheng"],"template":["application/vnd.micro+json"]},"registered":true},{"content-type":"application/vnd.micrografx.flo","friendly":{"en":"Micrografx"},"encoding":"base64","extensions":["flo"],"references":["IANA","[Joe_Prevo]","{application/vnd.micrografx.flo=http://www.iana.org/assignments/media-types/application/vnd.micrografx.flo}"],"xrefs":{"person":["Joe_Prevo"],"template":["application/vnd.micrografx.flo"]},"registered":true},{"content-type":"application/vnd.micrografx.igx","friendly":{"en":"Micrografx iGrafx Professional"},"encoding":"base64","extensions":["igx"],"references":["IANA","[Joe_Prevo]","{application/vnd.micrografx-igx=http://www.iana.org/assignments/media-types/application/vnd.micrografx-igx}"],"xrefs":{"person":["Joe_Prevo"],"template":["application/vnd.micrografx-igx"]},"registered":true},{"content-type":"application/vnd.microsoft.portable-executable","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.microsoft.portable-executable=http://www.iana.org/assignments/media-types/application/vnd.microsoft.portable-executable}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.microsoft.portable-executable"]},"registered":true},{"content-type":"application/vnd.miele+json","encoding":"base64","references":["IANA","[Nils_Langhammer]","{application/vnd.miele+json=http://www.iana.org/assignments/media-types/application/vnd.miele+json}"],"xrefs":{"person":["Nils_Langhammer"],"template":["application/vnd.miele+json"]},"registered":true},{"content-type":"application/vnd.mif","friendly":{"en":"FrameMaker Interchange Format"},"encoding":"base64","extensions":["mif"],"references":["IANA","[Mike_Wexler]","{application/vnd-mif=http://www.iana.org/assignments/media-types/application/vnd-mif}"],"xrefs":{"person":["Mike_Wexler"],"template":["application/vnd-mif"]},"registered":true},{"content-type":"application/vnd.minisoft-hp3000-save","encoding":"base64","references":["IANA","[Chris_Bartram]","{application/vnd.minisoft-hp3000-save=http://www.iana.org/assignments/media-types/application/vnd.minisoft-hp3000-save}"],"xrefs":{"person":["Chris_Bartram"],"template":["application/vnd.minisoft-hp3000-save"]},"registered":true},{"content-type":"application/vnd.mitsubishi.misty-guard.trustweb","encoding":"base64","references":["IANA","[Tanaka]","{application/vnd.mitsubishi.misty-guard.trustweb=http://www.iana.org/assignments/media-types/application/vnd.mitsubishi.misty-guard.trustweb}"],"xrefs":{"person":["Tanaka"],"template":["application/vnd.mitsubishi.misty-guard.trustweb"]},"registered":true},{"content-type":"application/vnd.Mobius.DAF","friendly":{"en":"Mobius Management Systems - UniversalArchive"},"encoding":"base64","extensions":["daf"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.DAF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DAF}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.DAF"]},"registered":true},{"content-type":"application/vnd.Mobius.DIS","friendly":{"en":"Mobius Management Systems - Distribution Database"},"encoding":"base64","extensions":["dis"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.DIS=http://www.iana.org/assignments/media-types/application/vnd.Mobius.DIS}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.DIS"]},"registered":true},{"content-type":"application/vnd.Mobius.MBK","friendly":{"en":"Mobius Management Systems - Basket file"},"encoding":"base64","extensions":["mbk"],"references":["IANA","[Alex_Devasia]","{application/vnd.Mobius.MBK=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MBK}"],"xrefs":{"person":["Alex_Devasia"],"template":["application/vnd.Mobius.MBK"]},"registered":true},{"content-type":"application/vnd.Mobius.MQY","friendly":{"en":"Mobius Management Systems - Query File"},"encoding":"base64","extensions":["mqy"],"references":["IANA","[Alex_Devasia]","{application/vnd.Mobius.MQY=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MQY}"],"xrefs":{"person":["Alex_Devasia"],"template":["application/vnd.Mobius.MQY"]},"registered":true},{"content-type":"application/vnd.Mobius.MSL","friendly":{"en":"Mobius Management Systems - Script Language"},"encoding":"base64","extensions":["msl"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.MSL=http://www.iana.org/assignments/media-types/application/vnd.Mobius.MSL}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.MSL"]},"registered":true},{"content-type":"application/vnd.Mobius.PLC","friendly":{"en":"Mobius Management Systems - Policy Definition Language File"},"encoding":"base64","extensions":["plc"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.PLC=http://www.iana.org/assignments/media-types/application/vnd.Mobius.PLC}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.PLC"]},"registered":true},{"content-type":"application/vnd.Mobius.TXF","friendly":{"en":"Mobius Management Systems - Topic Index File"},"encoding":"base64","extensions":["txf"],"references":["IANA","[Allen_K._Kabayama]","{application/vnd.Mobius.TXF=http://www.iana.org/assignments/media-types/application/vnd.Mobius.TXF}"],"xrefs":{"person":["Allen_K._Kabayama"],"template":["application/vnd.Mobius.TXF"]},"registered":true},{"content-type":"application/vnd.mophun.application","friendly":{"en":"Mophun VM"},"encoding":"base64","extensions":["mpn"],"references":["IANA","[Bjorn_Wennerstrom]","{application/vnd.mophun.application=http://www.iana.org/assignments/media-types/application/vnd.mophun.application}"],"xrefs":{"person":["Bjorn_Wennerstrom"],"template":["application/vnd.mophun.application"]},"registered":true},{"content-type":"application/vnd.mophun.certificate","friendly":{"en":"Mophun Certificate"},"encoding":"base64","extensions":["mpc"],"references":["IANA","[Bjorn_Wennerstrom]","{application/vnd.mophun.certificate=http://www.iana.org/assignments/media-types/application/vnd.mophun.certificate}"],"xrefs":{"person":["Bjorn_Wennerstrom"],"template":["application/vnd.mophun.certificate"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.adsi","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.adsi=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.adsi}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.adsi"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.fis","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.fis=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.fis}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.fis"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.gotap","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.gotap=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.gotap}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.gotap"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.kmr","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.kmr=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.kmr}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.kmr"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.ttc","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.ttc=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.ttc}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.ttc"]},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.wem","encoding":"base64","references":["IANA","[Mark_Patton]","{application/vnd.motorola.flexsuite.wem=http://www.iana.org/assignments/media-types/application/vnd.motorola.flexsuite.wem}"],"xrefs":{"person":["Mark_Patton"],"template":["application/vnd.motorola.flexsuite.wem"]},"registered":true},{"content-type":"application/vnd.motorola.iprm","encoding":"base64","references":["IANA","[Rafie_Shamsaasef]","{application/vnd.motorola.iprm=http://www.iana.org/assignments/media-types/application/vnd.motorola.iprm}"],"xrefs":{"person":["Rafie_Shamsaasef"],"template":["application/vnd.motorola.iprm"]},"registered":true},{"content-type":"application/vnd.mozilla.xul+xml","friendly":{"en":"XUL - XML User Interface Language"},"encoding":"base64","extensions":["xul"],"references":["IANA","[Braden_N_McDaniel]","{application/vnd.mozilla.xul+xml=http://www.iana.org/assignments/media-types/application/vnd.mozilla.xul+xml}"],"xrefs":{"person":["Braden_N_McDaniel"],"template":["application/vnd.mozilla.xul+xml"]},"registered":true},{"content-type":"application/vnd.ms-3mfdocument","encoding":"base64","references":["IANA","[Shawn_Maloney]","{application/vnd.ms-3mfdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-3mfdocument}"],"xrefs":{"person":["Shawn_Maloney"],"template":["application/vnd.ms-3mfdocument"]},"registered":true},{"content-type":"application/vnd.ms-artgalry","friendly":{"en":"Microsoft Artgalry"},"encoding":"base64","extensions":["cil"],"references":["IANA","[Dean_Slawson]","{application/vnd.ms-artgalry=http://www.iana.org/assignments/media-types/application/vnd.ms-artgalry}"],"xrefs":{"person":["Dean_Slawson"],"template":["application/vnd.ms-artgalry"]},"registered":true},{"content-type":"application/vnd.ms-asf","encoding":"base64","extensions":["asf"],"references":["IANA","[Eric_Fleischman]","{application/vnd.ms-asf=http://www.iana.org/assignments/media-types/application/vnd.ms-asf}"],"xrefs":{"person":["Eric_Fleischman"],"template":["application/vnd.ms-asf"]},"registered":true},{"content-type":"application/vnd.ms-cab-compressed","friendly":{"en":"Microsoft Cabinet File"},"encoding":"base64","extensions":["cab"],"references":["IANA","[Kim_Scarborough]","{application/vnd.ms-cab-compressed=http://www.iana.org/assignments/media-types/application/vnd.ms-cab-compressed}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.ms-cab-compressed"]},"registered":true},{"content-type":"application/vnd.ms-excel","friendly":{"en":"Microsoft Excel"},"encoding":"base64","extensions":["xls","xlt","xla","xlc","xlm","xlw"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-excel=http://www.iana.org/assignments/media-types/application/vnd.ms-excel}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-excel"]},"registered":true},{"content-type":"application/vnd.ms-excel.addin.macroEnabled.12","friendly":{"en":"Microsoft Excel - Add-In File"},"encoding":"base64","extensions":["xlam"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.addin.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.addin.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.binary.macroEnabled.12","friendly":{"en":"Microsoft Excel - Binary Workbook"},"encoding":"base64","extensions":["xlsb"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.sheet.binary.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.binary.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.sheet.binary.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Workbook"},"encoding":"base64","extensions":["xlsm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.sheet.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.sheet.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.sheet.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-excel.template.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Template File"},"encoding":"base64","extensions":["xltm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-excel.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-excel.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-excel.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-fontobject","friendly":{"en":"Microsoft Embedded OpenType"},"encoding":"base64","extensions":["eot"],"references":["IANA","[Kim_Scarborough]","{application/vnd.ms-fontobject=http://www.iana.org/assignments/media-types/application/vnd.ms-fontobject}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.ms-fontobject"]},"registered":true},{"content-type":"application/vnd.ms-htmlhelp","friendly":{"en":"Microsoft Html Help File"},"encoding":"base64","extensions":["chm"],"references":["IANA","[Anatoly_Techtonik]","{application/vnd.ms-htmlhelp=http://www.iana.org/assignments/media-types/application/vnd.ms-htmlhelp}"],"xrefs":{"person":["Anatoly_Techtonik"],"template":["application/vnd.ms-htmlhelp"]},"registered":true},{"content-type":"application/vnd.ms-ims","friendly":{"en":"Microsoft Class Server"},"encoding":"base64","extensions":["ims"],"references":["IANA","[Eric_Ledoux]","{application/vnd.ms-ims=http://www.iana.org/assignments/media-types/application/vnd.ms-ims}"],"xrefs":{"person":["Eric_Ledoux"],"template":["application/vnd.ms-ims"]},"registered":true},{"content-type":"application/vnd.ms-lrm","friendly":{"en":"Microsoft Learning Resource Module"},"encoding":"base64","extensions":["lrm"],"references":["IANA","[Eric_Ledoux]","{application/vnd.ms-lrm=http://www.iana.org/assignments/media-types/application/vnd.ms-lrm}"],"xrefs":{"person":["Eric_Ledoux"],"template":["application/vnd.ms-lrm"]},"registered":true},{"content-type":"application/vnd.ms-office.activeX+xml","encoding":"base64","references":["IANA","[Chris_Rae]","{application/vnd.ms-office.activeX+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-office.activeX+xml}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-office.activeX+xml"]},"registered":true},{"content-type":"application/vnd.ms-officetheme","friendly":{"en":"Microsoft Office System Release Theme"},"encoding":"base64","extensions":["thmx"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-officetheme=http://www.iana.org/assignments/media-types/application/vnd.ms-officetheme}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-officetheme"]},"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","references":["IANA","[Daniel_Schneider]","{application/vnd.ms-playready.initiator+xml=http://www.iana.org/assignments/media-types/application/vnd.ms-playready.initiator+xml}"],"xrefs":{"person":["Daniel_Schneider"],"template":["application/vnd.ms-playready.initiator+xml"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint","friendly":{"en":"Microsoft PowerPoint"},"encoding":"base64","extensions":["ppt","pps","pot"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-powerpoint=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-powerpoint"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.addin.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Add-in file"},"encoding":"base64","extensions":["ppam"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.addin.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.addin.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.addin.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.presentation.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Presentation File"},"encoding":"base64","extensions":["pptm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.presentation.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.presentation.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.presentation.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slide.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Open XML Slide"},"encoding":"base64","extensions":["sldm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.slide.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slide.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.slide.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slideshow.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Slide Show File"},"encoding":"base64","extensions":["ppsm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.slideshow.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.slideshow.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.slideshow.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-powerpoint.template.macroEnabled.12","friendly":{"en":"Micosoft PowerPoint - Macro-Enabled Template File"},"encoding":"base64","extensions":["potm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-powerpoint.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-powerpoint.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-powerpoint.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-project","friendly":{"en":"Microsoft Project"},"encoding":"base64","extensions":["mpp","mpt"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-project=http://www.iana.org/assignments/media-types/application/vnd.ms-project}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-project"]},"registered":true},{"content-type":"application/vnd.ms-tnef","encoding":"base64","references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-tnef=http://www.iana.org/assignments/media-types/application/vnd.ms-tnef}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-tnef"]},"registered":true},{"content-type":"application/vnd.ms-windows.printerpairing","encoding":"base64","references":["IANA","[Justin_Hutchings]","{application/vnd.ms-windows.printerpairing=http://www.iana.org/assignments/media-types/application/vnd.ms-windows.printerpairing}"],"xrefs":{"person":["Justin_Hutchings"],"template":["application/vnd.ms-windows.printerpairing"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-chlg-req","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.lic-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-chlg-req}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.lic-chlg-req"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-resp","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.lic-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.lic-resp}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.lic-resp"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-chlg-req","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.meter-chlg-req=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-chlg-req}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.meter-chlg-req"]},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-resp","encoding":"base64","references":["IANA","[Kevin_Lau]","{application/vnd.ms-wmdrm.meter-resp=http://www.iana.org/assignments/media-types/application/vnd.ms-wmdrm.meter-resp}"],"xrefs":{"person":["Kevin_Lau"],"template":["application/vnd.ms-wmdrm.meter-resp"]},"registered":true},{"content-type":"application/vnd.ms-word.document.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Document"},"encoding":"base64","extensions":["docm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-word.document.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.document.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-word.document.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-word.template.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Template"},"encoding":"base64","extensions":["dotm"],"references":["IANA","[Chris_Rae]","{application/vnd.ms-word.template.macroEnabled.12=http://www.iana.org/assignments/media-types/application/vnd.ms-word.template.macroEnabled.12}"],"xrefs":{"person":["Chris_Rae"],"template":["application/vnd.ms-word.template.macroEnabled.12"]},"registered":true},{"content-type":"application/vnd.ms-works","friendly":{"en":"Microsoft Works"},"encoding":"base64","extensions":["wcm","wdb","wks","wps"],"references":["IANA","[Sukvinder_S._Gill]","{application/vnd.ms-works=http://www.iana.org/assignments/media-types/application/vnd.ms-works}"],"xrefs":{"person":["Sukvinder_S._Gill"],"template":["application/vnd.ms-works"]},"registered":true},{"content-type":"application/vnd.ms-wpl","friendly":{"en":"Microsoft Windows Media Player Playlist"},"encoding":"base64","extensions":["wpl"],"references":["IANA","[Dan_Plastina]","{application/vnd.ms-wpl=http://www.iana.org/assignments/media-types/application/vnd.ms-wpl}"],"xrefs":{"person":["Dan_Plastina"],"template":["application/vnd.ms-wpl"]},"registered":true},{"content-type":"application/vnd.ms-xpsdocument","friendly":{"en":"Microsoft XML Paper Specification"},"encoding":"8bit","extensions":["xps"],"references":["IANA","[Jesse_McGatha]","{application/vnd.ms-xpsdocument=http://www.iana.org/assignments/media-types/application/vnd.ms-xpsdocument}"],"xrefs":{"person":["Jesse_McGatha"],"template":["application/vnd.ms-xpsdocument"]},"registered":true},{"content-type":"application/vnd.msa-disk-image","encoding":"base64","references":["IANA","[Thomas_Huth]","{application/vnd.msa-disk-image=http://www.iana.org/assignments/media-types/application/vnd.msa-disk-image}"],"xrefs":{"person":["Thomas_Huth"],"template":["application/vnd.msa-disk-image"]},"registered":true},{"content-type":"application/vnd.mseq","friendly":{"en":"3GPP MSEQ File"},"encoding":"base64","extensions":["mseq"],"references":["IANA","[Gwenael_Le_Bodic]","{application/vnd.mseq=http://www.iana.org/assignments/media-types/application/vnd.mseq}"],"xrefs":{"person":["Gwenael_Le_Bodic"],"template":["application/vnd.mseq"]},"registered":true},{"content-type":"application/vnd.msign","encoding":"base64","references":["IANA","[Malte_Borcherding]","{application/vnd.msign=http://www.iana.org/assignments/media-types/application/vnd.msign}"],"xrefs":{"person":["Malte_Borcherding"],"template":["application/vnd.msign"]},"registered":true},{"content-type":"application/vnd.multiad.creator","encoding":"base64","references":["IANA","[Steve_Mills]","{application/vnd.multiad.creator=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator}"],"xrefs":{"person":["Steve_Mills"],"template":["application/vnd.multiad.creator"]},"registered":true},{"content-type":"application/vnd.multiad.creator.cif","encoding":"base64","references":["IANA","[Steve_Mills]","{application/vnd.multiad.creator.cif=http://www.iana.org/assignments/media-types/application/vnd.multiad.creator.cif}"],"xrefs":{"person":["Steve_Mills"],"template":["application/vnd.multiad.creator.cif"]},"registered":true},{"content-type":"application/vnd.music-niff","encoding":"base64","references":["IANA","[Tim_Butler]","{application/vnd.music-niff=http://www.iana.org/assignments/media-types/application/vnd.music-niff}"],"xrefs":{"person":["Tim_Butler"],"template":["application/vnd.music-niff"]},"registered":true},{"content-type":"application/vnd.musician","friendly":{"en":"MUsical Score Interpreted Code Invented for the ASCII designation of Notation"},"encoding":"base64","extensions":["mus"],"references":["IANA","[Greg_Adams]","{application/vnd.musician=http://www.iana.org/assignments/media-types/application/vnd.musician}"],"xrefs":{"person":["Greg_Adams"],"template":["application/vnd.musician"]},"registered":true},{"content-type":"application/vnd.muvee.style","friendly":{"en":"Muvee Automatic Video Editing"},"encoding":"base64","extensions":["msty"],"references":["IANA","[Chandrashekhara_Anantharamu]","{application/vnd.muvee.style=http://www.iana.org/assignments/media-types/application/vnd.muvee.style}"],"xrefs":{"person":["Chandrashekhara_Anantharamu"],"template":["application/vnd.muvee.style"]},"registered":true},{"content-type":"application/vnd.mynfc","encoding":"base64","extensions":["taglet"],"references":["IANA","[Franck_Lefevre]","{application/vnd.mynfc=http://www.iana.org/assignments/media-types/application/vnd.mynfc}"],"xrefs":{"person":["Franck_Lefevre"],"template":["application/vnd.mynfc"]},"registered":true},{"content-type":"application/vnd.ncd.control","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.ncd.control=http://www.iana.org/assignments/media-types/application/vnd.ncd.control}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.ncd.control"]},"registered":true},{"content-type":"application/vnd.ncd.reference","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.ncd.reference=http://www.iana.org/assignments/media-types/application/vnd.ncd.reference}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.ncd.reference"]},"registered":true},{"content-type":"application/vnd.nervana","encoding":"base64","extensions":["ent","entity","req","request","bkm","kcm"],"references":["IANA","[Steve_Judkins]","{application/vnd.nervana=http://www.iana.org/assignments/media-types/application/vnd.nervana}"],"xrefs":{"person":["Steve_Judkins"],"template":["application/vnd.nervana"]},"registered":true},{"content-type":"application/vnd.netfpx","encoding":"base64","references":["IANA","[Andy_Mutz]","{application/vnd.netfpx=http://www.iana.org/assignments/media-types/application/vnd.netfpx}"],"xrefs":{"person":["Andy_Mutz"],"template":["application/vnd.netfpx"]},"registered":true},{"content-type":"application/vnd.neurolanguage.nlu","friendly":{"en":"neuroLanguage"},"encoding":"base64","extensions":["nlu"],"references":["IANA","[Dan_DuFeu]","{application/vnd.neurolanguage.nlu=http://www.iana.org/assignments/media-types/application/vnd.neurolanguage.nlu}"],"xrefs":{"person":["Dan_DuFeu"],"template":["application/vnd.neurolanguage.nlu"]},"registered":true},{"content-type":"application/vnd.nintendo.nitro.rom","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.nintendo.nitro.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.nitro.rom}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.nintendo.nitro.rom"]},"registered":true},{"content-type":"application/vnd.nintendo.snes.rom","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.nintendo.snes.rom=http://www.iana.org/assignments/media-types/application/vnd.nintendo.snes.rom}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.nintendo.snes.rom"]},"registered":true},{"content-type":"application/vnd.nitf","encoding":"base64","extensions":["nitf","ntf"],"references":["IANA","[Steve_Rogan]","{application/vnd.nitf=http://www.iana.org/assignments/media-types/application/vnd.nitf}"],"xrefs":{"person":["Steve_Rogan"],"template":["application/vnd.nitf"]},"registered":true},{"content-type":"application/vnd.noblenet-directory","friendly":{"en":"NobleNet Directory"},"encoding":"base64","extensions":["nnd"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-directory=http://www.iana.org/assignments/media-types/application/vnd.noblenet-directory}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-directory"]},"registered":true},{"content-type":"application/vnd.noblenet-sealer","friendly":{"en":"NobleNet Sealer"},"encoding":"base64","extensions":["nns"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-sealer=http://www.iana.org/assignments/media-types/application/vnd.noblenet-sealer}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-sealer"]},"registered":true},{"content-type":"application/vnd.noblenet-web","friendly":{"en":"NobleNet Web"},"encoding":"base64","extensions":["nnw"],"references":["IANA","[Monty_Solomon]","{application/vnd.noblenet-web=http://www.iana.org/assignments/media-types/application/vnd.noblenet-web}"],"xrefs":{"person":["Monty_Solomon"],"template":["application/vnd.noblenet-web"]},"registered":true},{"content-type":"application/vnd.nokia.catalogs","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.catalogs=http://www.iana.org/assignments/media-types/application/vnd.nokia.catalogs}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.catalogs"]},"registered":true},{"content-type":"application/vnd.nokia.conml+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.conml+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.conml+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.conml+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.conml+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.conml+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.conml+xml"]},"registered":true},{"content-type":"application/vnd.nokia.iptv.config+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.iptv.config+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.iptv.config+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.iptv.config+xml"]},"registered":true},{"content-type":"application/vnd.nokia.iSDS-radio-presets","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.iSDS-radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.iSDS-radio-presets}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.iSDS-radio-presets"]},"registered":true},{"content-type":"application/vnd.nokia.landmark+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmark+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmark+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.landmark+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmark+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmark+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmark+xml"]},"registered":true},{"content-type":"application/vnd.nokia.landmarkcollection+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.landmarkcollection+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.landmarkcollection+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.landmarkcollection+xml"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.ac+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.ac+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.ac+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.ac+xml"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.data","friendly":{"en":"N-Gage Game Data"},"encoding":"base64","extensions":["ngdat"],"references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.data=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.data}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.data"]},"registered":true},{"content-type":"application/vnd.nokia.n-gage.symbian.install","friendly":{"en":"N-Gage Game Installer"},"encoding":"base64","extensions":["n-gage"],"obsolete":true,"references":["IANA","[Nokia]","{application/vnd.nokia.n-gage.symbian.install=http://www.iana.org/assignments/media-types/application/vnd.nokia.n-gage.symbian.install}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.n-gage.symbian.install"],"notes":["- OBSOLETE; no replacement given"]},"registered":true},{"content-type":"application/vnd.nokia.ncd","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.ncd=http://www.iana.org/assignments/media-types/application/vnd.nokia.ncd}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.ncd"]},"registered":true},{"content-type":"application/vnd.nokia.ncd+xml","encoding":"base64","obsolete":true,"use-instead":"application/vnd.nokia.ncd","references":["IANA","[Nokia]"],"registered":true},{"content-type":"application/vnd.nokia.pcd+wbxml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.pcd+wbxml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+wbxml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.pcd+wbxml"]},"registered":true},{"content-type":"application/vnd.nokia.pcd+xml","encoding":"base64","references":["IANA","[Nokia]","{application/vnd.nokia.pcd+xml=http://www.iana.org/assignments/media-types/application/vnd.nokia.pcd+xml}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.pcd+xml"]},"registered":true},{"content-type":"application/vnd.nokia.radio-preset","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpst"],"references":["IANA","[Nokia]","{application/vnd.nokia.radio-preset=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-preset}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.radio-preset"]},"registered":true},{"content-type":"application/vnd.nokia.radio-presets","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpss"],"references":["IANA","[Nokia]","{application/vnd.nokia.radio-presets=http://www.iana.org/assignments/media-types/application/vnd.nokia.radio-presets}"],"xrefs":{"person":["Nokia"],"template":["application/vnd.nokia.radio-presets"]},"registered":true},{"content-type":"application/vnd.novadigm.EDM","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edm"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EDM=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDM}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EDM"]},"registered":true},{"content-type":"application/vnd.novadigm.EDX","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edx"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EDX=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EDX}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EDX"]},"registered":true},{"content-type":"application/vnd.novadigm.EXT","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["ext"],"references":["IANA","[Janine_Swenson]","{application/vnd.novadigm.EXT=http://www.iana.org/assignments/media-types/application/vnd.novadigm.EXT}"],"xrefs":{"person":["Janine_Swenson"],"template":["application/vnd.novadigm.EXT"]},"registered":true},{"content-type":"application/vnd.ntt-local.content-share","encoding":"base64","references":["IANA","[Akinori_Taya]","{application/vnd.ntt-local.content-share=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.content-share}"],"xrefs":{"person":["Akinori_Taya"],"template":["application/vnd.ntt-local.content-share"]},"registered":true},{"content-type":"application/vnd.ntt-local.file-transfer","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.file-transfer=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.file-transfer}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.file-transfer"]},"registered":true},{"content-type":"application/vnd.ntt-local.ogw_remote-access","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.ogw_remote-access=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.ogw_remote-access}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.ogw_remote-access"]},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_remote","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.sip-ta_remote=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_remote}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.sip-ta_remote"]},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_tcp_stream","encoding":"base64","references":["IANA","[NTT-local]","{application/vnd.ntt-local.sip-ta_tcp_stream=http://www.iana.org/assignments/media-types/application/vnd.ntt-local.sip-ta_tcp_stream}"],"xrefs":{"person":["NTT-local"],"template":["application/vnd.ntt-local.sip-ta_tcp_stream"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart","friendly":{"en":"OpenDocument Chart"},"encoding":"base64","extensions":["odc"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.chart=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.chart"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart-template","friendly":{"en":"OpenDocument Chart Template"},"encoding":"base64","extensions":["odc","otc"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.chart-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.chart-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.chart-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.database","friendly":{"en":"OpenDocument Database"},"encoding":"base64","extensions":["odb"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.database=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.database}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.database"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula","friendly":{"en":"OpenDocument Formula"},"encoding":"base64","extensions":["odf"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.formula=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.formula"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula-template","friendly":{"en":"OpenDocument Formula Template"},"encoding":"base64","extensions":["odf","odft"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.formula-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.formula-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.formula-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics","friendly":{"en":"OpenDocument Graphics"},"encoding":"base64","extensions":["odg"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.graphics=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.graphics"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics-template","friendly":{"en":"OpenDocument Graphics Template"},"encoding":"base64","extensions":["otg"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.graphics-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.graphics-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.graphics-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image","friendly":{"en":"OpenDocument Image"},"encoding":"base64","extensions":["odi"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.image=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.image"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image-template","friendly":{"en":"OpenDocument Image Template"},"encoding":"base64","extensions":["odi","oti"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.image-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.image-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.image-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation","friendly":{"en":"OpenDocument Presentation"},"encoding":"base64","extensions":["odp"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.presentation=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.presentation"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation-template","friendly":{"en":"OpenDocument Presentation Template"},"encoding":"base64","extensions":["otp"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.presentation-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.presentation-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.presentation-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet","friendly":{"en":"OpenDocument Spreadsheet"},"encoding":"base64","extensions":["ods"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.spreadsheet=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.spreadsheet"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet-template","friendly":{"en":"OpenDocument Spreadsheet Template"},"encoding":"base64","extensions":["ots"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.spreadsheet-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.spreadsheet-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.spreadsheet-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text","friendly":{"en":"OpenDocument Text"},"encoding":"base64","extensions":["odt"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-master","friendly":{"en":"OpenDocument Text Master"},"encoding":"base64","extensions":["odm"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-master=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-master}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-master"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-template","friendly":{"en":"OpenDocument Text Template"},"encoding":"base64","extensions":["ott"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-template=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-template}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-template"]},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-web","friendly":{"en":"Open Document Text Web"},"encoding":"base64","extensions":["oth"],"references":["IANA","[Svante_Schubert]","[OASIS]","{application/vnd.oasis.opendocument.text-web=http://www.iana.org/assignments/media-types/application/vnd.oasis.opendocument.text-web}"],"xrefs":{"person":["OASIS","Svante_Schubert"],"template":["application/vnd.oasis.opendocument.text-web"]},"registered":true},{"content-type":"application/vnd.obn","encoding":"base64","references":["IANA","[Matthias_Hessling]","{application/vnd.obn=http://www.iana.org/assignments/media-types/application/vnd.obn}"],"xrefs":{"person":["Matthias_Hessling"],"template":["application/vnd.obn"]},"registered":true},{"content-type":"application/vnd.oftn.l10n+json","encoding":"base64","references":["IANA","[Eli_Grey]","{application/vnd.oftn.l10n+json=http://www.iana.org/assignments/media-types/application/vnd.oftn.l10n+json}"],"xrefs":{"person":["Eli_Grey"],"template":["application/vnd.oftn.l10n+json"]},"registered":true},{"content-type":"application/vnd.oipf.contentaccessdownload+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.contentaccessdownload+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessdownload+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.contentaccessdownload+xml"]},"registered":true},{"content-type":"application/vnd.oipf.contentaccessstreaming+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.contentaccessstreaming+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.contentaccessstreaming+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.contentaccessstreaming+xml"]},"registered":true},{"content-type":"application/vnd.oipf.cspg-hexbinary","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.cspg-hexbinary=http://www.iana.org/assignments/media-types/application/vnd.oipf.cspg-hexbinary}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.cspg-hexbinary"]},"registered":true},{"content-type":"application/vnd.oipf.dae.svg+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.dae.svg+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.svg+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.dae.svg+xml"]},"registered":true},{"content-type":"application/vnd.oipf.dae.xhtml+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.dae.xhtml+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.dae.xhtml+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.dae.xhtml+xml"]},"registered":true},{"content-type":"application/vnd.oipf.mippvcontrolmessage+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.mippvcontrolmessage+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.mippvcontrolmessage+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.mippvcontrolmessage+xml"]},"registered":true},{"content-type":"application/vnd.oipf.pae.gem","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.pae.gem=http://www.iana.org/assignments/media-types/application/vnd.oipf.pae.gem}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.pae.gem"]},"registered":true},{"content-type":"application/vnd.oipf.spdiscovery+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.spdiscovery+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdiscovery+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.spdiscovery+xml"]},"registered":true},{"content-type":"application/vnd.oipf.spdlist+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.spdlist+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.spdlist+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.spdlist+xml"]},"registered":true},{"content-type":"application/vnd.oipf.ueprofile+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.ueprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.ueprofile+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.ueprofile+xml"]},"registered":true},{"content-type":"application/vnd.oipf.userprofile+xml","encoding":"base64","references":["IANA","[Claire_DEsclercs]","{application/vnd.oipf.userprofile+xml=http://www.iana.org/assignments/media-types/application/vnd.oipf.userprofile+xml}"],"xrefs":{"person":["Claire_DEsclercs"],"template":["application/vnd.oipf.userprofile+xml"]},"registered":true},{"content-type":"application/vnd.olpc-sugar","friendly":{"en":"Sugar Linux Application Bundle"},"encoding":"base64","extensions":["xo"],"references":["IANA","[John_Palmieri]","{application/vnd.olpc-sugar=http://www.iana.org/assignments/media-types/application/vnd.olpc-sugar}"],"xrefs":{"person":["John_Palmieri"],"template":["application/vnd.olpc-sugar"]},"registered":true},{"content-type":"application/vnd.oma-scws-config","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-config=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-config}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-config"]},"registered":true},{"content-type":"application/vnd.oma-scws-http-request","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-http-request=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-request}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-http-request"]},"registered":true},{"content-type":"application/vnd.oma-scws-http-response","encoding":"base64","references":["IANA","[Ilan_Mahalal]","{application/vnd.oma-scws-http-response=http://www.iana.org/assignments/media-types/application/vnd.oma-scws-http-response}"],"xrefs":{"person":["Ilan_Mahalal"],"template":["application/vnd.oma-scws-http-response"]},"registered":true},{"content-type":"application/vnd.oma.bcast.associated-procedure-parameter+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.associated-procedure-parameter+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.associated-procedure-parameter+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.associated-procedure-parameter+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.drm-trigger+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.drm-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.drm-trigger+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.drm-trigger+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.imd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.imd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.imd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.imd+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.ltkm","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.ltkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.ltkm}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.ltkm"]},"registered":true},{"content-type":"application/vnd.oma.bcast.notification+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.notification+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.notification+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.notification+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.provisioningtrigger","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.provisioningtrigger=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.provisioningtrigger}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.provisioningtrigger"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgboot","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgboot=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgboot}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgboot"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgdd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgdd+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdu","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sgdu=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sgdu}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sgdu"]},"registered":true},{"content-type":"application/vnd.oma.bcast.simple-symbol-container","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.simple-symbol-container=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.simple-symbol-container}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.simple-symbol-container"]},"registered":true},{"content-type":"application/vnd.oma.bcast.smartcard-trigger+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.smartcard-trigger+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.smartcard-trigger+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.smartcard-trigger+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.sprov+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.sprov+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.sprov+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.sprov+xml"]},"registered":true},{"content-type":"application/vnd.oma.bcast.stkm","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.bcast.stkm=http://www.iana.org/assignments/media-types/application/vnd.oma.bcast.stkm}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.bcast.stkm"]},"registered":true},{"content-type":"application/vnd.oma.cab-address-book+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-address-book+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-address-book+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-address-book+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-feature-handler+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-feature-handler+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-feature-handler+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-feature-handler+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-pcc+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-pcc+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-pcc+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-pcc+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-subs-invite+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-subs-invite+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-subs-invite+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-subs-invite+xml"]},"registered":true},{"content-type":"application/vnd.oma.cab-user-prefs+xml","encoding":"base64","references":["IANA","[Hao_Wang]","[OMA]","{application/vnd.oma.cab-user-prefs+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.cab-user-prefs+xml}"],"xrefs":{"person":["Hao_Wang","OMA"],"template":["application/vnd.oma.cab-user-prefs+xml"]},"registered":true},{"content-type":"application/vnd.oma.dcd","encoding":"base64","references":["IANA","[Avi_Primo]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.dcd=http://www.iana.org/assignments/media-types/application/vnd.oma.dcd}"],"xrefs":{"person":["Avi_Primo","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.dcd"]},"registered":true},{"content-type":"application/vnd.oma.dcdc","encoding":"base64","references":["IANA","[Avi_Primo]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.dcdc=http://www.iana.org/assignments/media-types/application/vnd.oma.dcdc}"],"xrefs":{"person":["Avi_Primo","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.dcdc"]},"registered":true},{"content-type":"application/vnd.oma.dd2+xml","friendly":{"en":"OMA Download Agents"},"encoding":"base64","extensions":["dd2"],"references":["IANA","[Jun_Sato]","[Open_Mobile_Alliance_BAC_DLDRM_Working_Group]","{application/vnd.oma.dd2+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.dd2+xml}"],"xrefs":{"person":["Jun_Sato","Open_Mobile_Alliance_BAC_DLDRM_Working_Group"],"template":["application/vnd.oma.dd2+xml"]},"registered":true},{"content-type":"application/vnd.oma.drm.risd+xml","encoding":"base64","references":["IANA","[Uwe_Rauschenbach]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.drm.risd+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.drm.risd+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Uwe_Rauschenbach"],"template":["application/vnd.oma.drm.risd+xml"]},"registered":true},{"content-type":"application/vnd.oma.group-usage-list+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Presence_and_Availability_PAG_Working_Group]","{application/vnd.oma.group-usage-list+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.group-usage-list+xml}"],"xrefs":{"person":["OMA_Presence_and_Availability_PAG_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.group-usage-list+xml"]},"registered":true},{"content-type":"application/vnd.oma.pal+xml","encoding":"base64","references":["IANA","[Brian_McColgan]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.pal+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.pal+xml}"],"xrefs":{"person":["Brian_McColgan","OMNA-Open_Mobile_Naming_Authority"],"template":["application/vnd.oma.pal+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.detailed-progress-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.detailed-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.detailed-progress-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.detailed-progress-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.final-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.final-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.final-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.final-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.groups+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.groups+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.groups+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.poc.groups+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.invocation-descriptor+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.invocation-descriptor+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.invocation-descriptor+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.invocation-descriptor+xml"]},"registered":true},{"content-type":"application/vnd.oma.poc.optimized-progress-report+xml","encoding":"base64","references":["IANA","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.oma.poc.optimized-progress-report+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.poc.optimized-progress-report+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group"],"template":["application/vnd.oma.poc.optimized-progress-report+xml"]},"registered":true},{"content-type":"application/vnd.oma.push","encoding":"base64","references":["IANA","[Bryan_Sullivan]","[OMA]","{application/vnd.oma.push=http://www.iana.org/assignments/media-types/application/vnd.oma.push}"],"xrefs":{"person":["Bryan_Sullivan","OMA"],"template":["application/vnd.oma.push"]},"registered":true},{"content-type":"application/vnd.oma.scidm.messages+xml","encoding":"base64","references":["IANA","[Wenjun_Zeng]","[OMNA-Open_Mobile_Naming_Authority]","{application/vnd.oma.scidm.messages+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.scidm.messages+xml}"],"xrefs":{"person":["OMNA-Open_Mobile_Naming_Authority","Wenjun_Zeng"],"template":["application/vnd.oma.scidm.messages+xml"]},"registered":true},{"content-type":"application/vnd.oma.xcap-directory+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Presence_and_Availability_PAG_Working_Group]","{application/vnd.oma.xcap-directory+xml=http://www.iana.org/assignments/media-types/application/vnd.oma.xcap-directory+xml}"],"xrefs":{"person":["OMA_Presence_and_Availability_PAG_Working_Group","Sean_Kelley"],"template":["application/vnd.oma.xcap-directory+xml"]},"registered":true},{"content-type":"application/vnd.omads-email+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-email+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-email+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-email+xml"]},"registered":true},{"content-type":"application/vnd.omads-file+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-file+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-file+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-file+xml"]},"registered":true},{"content-type":"application/vnd.omads-folder+xml","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.omads-folder+xml=http://www.iana.org/assignments/media-types/application/vnd.omads-folder+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.omads-folder+xml"]},"registered":true},{"content-type":"application/vnd.omaloc-supl-init","encoding":"base64","references":["IANA","[Julien_Grange]","{application/vnd.omaloc-supl-init=http://www.iana.org/assignments/media-types/application/vnd.omaloc-supl-init}"],"xrefs":{"person":["Julien_Grange"],"template":["application/vnd.omaloc-supl-init"]},"registered":true},{"content-type":"application/vnd.openeye.oeb","encoding":"base64","references":["IANA","[Craig_Bruce]","{application/vnd.openeye.oeb=http://www.iana.org/assignments/media-types/application/vnd.openeye.oeb}"],"xrefs":{"person":["Craig_Bruce"],"template":["application/vnd.openeye.oeb"]},"registered":true},{"content-type":"application/vnd.openofficeorg.extension","friendly":{"en":"Open Office Extension"},"encoding":"base64","extensions":["oxt"],"references":["IANA","[Lingner]"],"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.custom-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.custom-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.custom-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.custom-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.customXmlProperties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.customXmlProperties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.customXmlProperties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.customXmlProperties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawing+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawing+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawing+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawing+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chart+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.chart+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chart+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.chart+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.extended-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.extended-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.extended-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.extended-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation","friendly":{"en":"Microsoft Office - OOXML - Presentation"},"encoding":"base64","extensions":["pptx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presentation=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presentation"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presProps+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.presProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.presProps+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.presProps+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slide)"},"encoding":"base64","extensions":["sldx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slide=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slide"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slide+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slide+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slide+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slideshow)"},"encoding":"base64","extensions":["ppsx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideshow=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideshow"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tags+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.tags+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.tags+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.tags+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template","friendly":{"en":"Microsoft Office - OOXML - Presentation Template"},"encoding":"base64","extensions":["potx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet"},"encoding":"base64","extensions":["xlsx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet Teplate"},"encoding":"base64","extensions":["xltx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.theme+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.theme+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.theme+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.theme+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.themeOverride+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.themeOverride+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.themeOverride+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.themeOverride+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.vmlDrawing","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.vmlDrawing=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.vmlDrawing}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.vmlDrawing"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document","friendly":{"en":"Microsoft Office - OOXML - Word Document"},"encoding":"base64","extensions":["docx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template","friendly":{"en":"Microsoft Office - OOXML - Word Document Template"},"encoding":"base64","extensions":["dotx"],"references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml-template=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml-template}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml-template"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.core-properties+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.core-properties+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.core-properties+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.core-properties+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml"]},"registered":true},{"content-type":"application/vnd.openxmlformats-package.relationships+xml","encoding":"base64","references":["IANA","[Makoto_Murata]","{application/vnd.openxmlformats-package.relationships+xml=http://www.iana.org/assignments/media-types/application/vnd.openxmlformats-package.relationships+xml}"],"xrefs":{"person":["Makoto_Murata"],"template":["application/vnd.openxmlformats-package.relationships+xml"]},"registered":true},{"content-type":"application/vnd.oracle.resource+json","encoding":"base64","references":["IANA","[Ning_Dong]","{application/vnd.oracle.resource+json=http://www.iana.org/assignments/media-types/application/vnd.oracle.resource+json}"],"xrefs":{"person":["Ning_Dong"],"template":["application/vnd.oracle.resource+json"]},"registered":true},{"content-type":"application/vnd.orange.indata","encoding":"base64","references":["IANA","[CHATRAS_Bruno]","{application/vnd.orange.indata=http://www.iana.org/assignments/media-types/application/vnd.orange.indata}"],"xrefs":{"person":["CHATRAS_Bruno"],"template":["application/vnd.orange.indata"]},"registered":true},{"content-type":"application/vnd.osa.netdeploy","encoding":"base64","references":["IANA","[Steven_Klos]","{application/vnd.osa.netdeploy=http://www.iana.org/assignments/media-types/application/vnd.osa.netdeploy}"],"xrefs":{"person":["Steven_Klos"],"template":["application/vnd.osa.netdeploy"]},"registered":true},{"content-type":"application/vnd.osgeo.mapguide.package","friendly":{"en":"MapGuide DBXML"},"encoding":"base64","extensions":["mgp"],"references":["IANA","[Jason_Birch]","{application/vnd.osgeo.mapguide.package=http://www.iana.org/assignments/media-types/application/vnd.osgeo.mapguide.package}"],"xrefs":{"person":["Jason_Birch"],"template":["application/vnd.osgeo.mapguide.package"]},"registered":true},{"content-type":"application/vnd.osgi.bundle","encoding":"base64","references":["IANA","[Peter_Kriens]","{application/vnd.osgi.bundle=http://www.iana.org/assignments/media-types/application/vnd.osgi.bundle}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.bundle"]},"registered":true},{"content-type":"application/vnd.osgi.dp","friendly":{"en":"OSGi Deployment Package"},"encoding":"base64","extensions":["dp"],"references":["IANA","[Peter_Kriens]","{application/vnd.osgi.dp=http://www.iana.org/assignments/media-types/application/vnd.osgi.dp}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.dp"]},"registered":true},{"content-type":"application/vnd.osgi.subsystem","encoding":"base64","extensions":["esa"],"references":["IANA","[Peter_Kriens]","{application/vnd.osgi.subsystem=http://www.iana.org/assignments/media-types/application/vnd.osgi.subsystem}"],"xrefs":{"person":["Peter_Kriens"],"template":["application/vnd.osgi.subsystem"]},"registered":true},{"content-type":"application/vnd.otps.ct-kip+xml","encoding":"base64","references":["IANA","[Magnus_Nystrom]","{application/vnd.otps.ct-kip+xml=http://www.iana.org/assignments/media-types/application/vnd.otps.ct-kip+xml}"],"xrefs":{"person":["Magnus_Nystrom"],"template":["application/vnd.otps.ct-kip+xml"]},"registered":true},{"content-type":"application/vnd.palm","friendly":{"en":"PalmOS Data"},"encoding":"base64","extensions":["prc","pdb","pqa","oprc"],"references":["IANA","[Gavin_Peacock]","{application/vnd.palm=http://www.iana.org/assignments/media-types/application/vnd.palm}"],"xrefs":{"person":["Gavin_Peacock"],"template":["application/vnd.palm"]},"registered":true},{"content-type":"application/vnd.panoply","encoding":"base64","references":["IANA","[Natarajan_Balasundara]","{application/vnd.panoply=http://www.iana.org/assignments/media-types/application/vnd.panoply}"],"xrefs":{"person":["Natarajan_Balasundara"],"template":["application/vnd.panoply"]},"registered":true},{"content-type":"application/vnd.paos.xml","encoding":"base64","references":["IANA","[John_Kemp]","{application/vnd.paos+xml=http://www.iana.org/assignments/media-types/application/vnd.paos+xml}"],"xrefs":{"person":["John_Kemp"],"template":["application/vnd.paos+xml"]},"registered":true},{"content-type":"application/vnd.pawaafile","friendly":{"en":"PawaaFILE"},"encoding":"base64","extensions":["paw"],"references":["IANA","[Prakash_Baskaran]","{application/vnd.pawaafile=http://www.iana.org/assignments/media-types/application/vnd.pawaafile}"],"xrefs":{"person":["Prakash_Baskaran"],"template":["application/vnd.pawaafile"]},"registered":true},{"content-type":"application/vnd.pcos","encoding":"base64","references":["IANA","[Slawomir_Lisznianski]","{application/vnd.pcos=http://www.iana.org/assignments/media-types/application/vnd.pcos}"],"xrefs":{"person":["Slawomir_Lisznianski"],"template":["application/vnd.pcos"]},"registered":true},{"content-type":"application/vnd.pg.format","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["str"],"references":["IANA","[April_Gandert]","{application/vnd.pg.format=http://www.iana.org/assignments/media-types/application/vnd.pg.format}"],"xrefs":{"person":["April_Gandert"],"template":["application/vnd.pg.format"]},"registered":true},{"content-type":"application/vnd.pg.osasli","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["ei6"],"references":["IANA","[April_Gandert]","{application/vnd.pg.osasli=http://www.iana.org/assignments/media-types/application/vnd.pg.osasli}"],"xrefs":{"person":["April_Gandert"],"template":["application/vnd.pg.osasli"]},"registered":true},{"content-type":"application/vnd.piaccess.application-licence","encoding":"base64","references":["IANA","[Lucas_Maneos]","{application/vnd.piaccess.application-licence=http://www.iana.org/assignments/media-types/application/vnd.piaccess.application-licence}"],"xrefs":{"person":["Lucas_Maneos"],"template":["application/vnd.piaccess.application-licence"]},"registered":true},{"content-type":"application/vnd.picsel","friendly":{"en":"Pcsel eFIF File"},"encoding":"base64","extensions":["efif"],"references":["IANA","[Giuseppe_Naccarato]","{application/vnd.picsel=http://www.iana.org/assignments/media-types/application/vnd.picsel}"],"xrefs":{"person":["Giuseppe_Naccarato"],"template":["application/vnd.picsel"]},"registered":true},{"content-type":"application/vnd.pmi.widget","friendly":{"en":"Qualcomm's Plaza Mobile Internet"},"encoding":"base64","extensions":["wg"],"references":["IANA","[Rhys_Lewis]","{application/vnd.pmi.widget=http://www.iana.org/assignments/media-types/application/vnd.pmi.widget}"],"xrefs":{"person":["Rhys_Lewis"],"template":["application/vnd.pmi.widget"]},"registered":true},{"content-type":"application/vnd.poc.group-advertisement+xml","encoding":"base64","references":["IANA","[Sean_Kelley]","[OMA_Push_to_Talk_over_Cellular_POC_Working_Group]","{application/vnd.poc.group-advertisement+xml=http://www.iana.org/assignments/media-types/application/vnd.poc.group-advertisement+xml}"],"xrefs":{"person":["OMA_Push_to_Talk_over_Cellular_POC_Working_Group","Sean_Kelley"],"template":["application/vnd.poc.group-advertisement+xml"]},"registered":true},{"content-type":"application/vnd.pocketlearn","friendly":{"en":"PocketLearn Viewers"},"encoding":"base64","extensions":["plf"],"references":["IANA","[Jorge_Pando]","{application/vnd.pocketlearn=http://www.iana.org/assignments/media-types/application/vnd.pocketlearn}"],"xrefs":{"person":["Jorge_Pando"],"template":["application/vnd.pocketlearn"]},"registered":true},{"content-type":"application/vnd.powerbuilder6","friendly":{"en":"PowerBuilder"},"encoding":"base64","extensions":["pbd"],"references":["IANA","[David_Guy]","{application/vnd.powerbuilder6=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6}"],"xrefs":{"person":["David_Guy"],"template":["application/vnd.powerbuilder6"]},"registered":true},{"content-type":"application/vnd.powerbuilder6-s","encoding":"base64","references":["IANA","[David_Guy]","{application/vnd.powerbuilder6-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder6-s}"],"xrefs":{"person":["David_Guy"],"template":["application/vnd.powerbuilder6-s"]},"registered":true},{"content-type":"application/vnd.powerbuilder7","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder7=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder7"]},"registered":true},{"content-type":"application/vnd.powerbuilder7-s","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder7-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder7-s}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder7-s"]},"registered":true},{"content-type":"application/vnd.powerbuilder75","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder75=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder75"]},"registered":true},{"content-type":"application/vnd.powerbuilder75-s","encoding":"base64","references":["IANA","[Reed_Shilts]","{application/vnd.powerbuilder75-s=http://www.iana.org/assignments/media-types/application/vnd.powerbuilder75-s}"],"xrefs":{"person":["Reed_Shilts"],"template":["application/vnd.powerbuilder75-s"]},"registered":true},{"content-type":"application/vnd.preminet","encoding":"base64","references":["IANA","[Juoko_Tenhunen]","{application/vnd.preminet=http://www.iana.org/assignments/media-types/application/vnd.preminet}"],"xrefs":{"person":["Juoko_Tenhunen"],"template":["application/vnd.preminet"]},"registered":true},{"content-type":"application/vnd.previewsystems.box","friendly":{"en":"Preview Systems ZipLock/VBox"},"encoding":"base64","extensions":["box"],"references":["IANA","[Roman_Smolgovsky]","{application/vnd.previewsystems.box=http://www.iana.org/assignments/media-types/application/vnd.previewsystems.box}"],"xrefs":{"person":["Roman_Smolgovsky"],"template":["application/vnd.previewsystems.box"]},"registered":true},{"content-type":"application/vnd.proteus.magazine","friendly":{"en":"EFI Proteus"},"encoding":"base64","extensions":["mgz"],"references":["IANA","[Pete_Hoch]","{application/vnd.proteus.magazine=http://www.iana.org/assignments/media-types/application/vnd.proteus.magazine}"],"xrefs":{"person":["Pete_Hoch"],"template":["application/vnd.proteus.magazine"]},"registered":true},{"content-type":"application/vnd.publishare-delta-tree","friendly":{"en":"PubliShare Objects"},"encoding":"base64","extensions":["qps"],"references":["IANA","[Oren_Ben-Kiki]","{application/vnd.publishare-delta-tree=http://www.iana.org/assignments/media-types/application/vnd.publishare-delta-tree}"],"xrefs":{"person":["Oren_Ben-Kiki"],"template":["application/vnd.publishare-delta-tree"]},"registered":true},{"content-type":"application/vnd.pvi.ptid1","friendly":{"en":"Princeton Video Image"},"encoding":"base64","extensions":["pti","ptid"],"references":["IANA","[Charles_P._Lamb]","{application/vnd.pvi.ptid1=http://www.iana.org/assignments/media-types/application/vnd.pvi.ptid1}"],"xrefs":{"person":["Charles_P._Lamb"],"template":["application/vnd.pvi.ptid1"]},"registered":true},{"content-type":"application/vnd.pwg-multiplexed","encoding":"base64","references":["IANA","RFC3391","{application/vwg-multiplexed=http://www.iana.org/assignments/media-types/application/vwg-multiplexed}"],"xrefs":{"rfc":["rfc3391"],"template":["application/vwg-multiplexed"]},"registered":true},{"content-type":"application/vnd.pwg-xhtml-print+xml","encoding":"base64","references":["IANA","[Don_Wright]","{application/vnd.pwg-xhtml-print+xml=http://www.iana.org/assignments/media-types/application/vnd.pwg-xhtml-print+xml}"],"xrefs":{"person":["Don_Wright"],"template":["application/vnd.pwg-xhtml-print+xml"]},"registered":true},{"content-type":"application/vnd.qualcomm.brew-app-res","encoding":"base64","references":["IANA","[Glenn_Forrester]","{application/vnd.qualcomm.brew-app-res=http://www.iana.org/assignments/media-types/application/vnd.qualcomm.brew-app-res}"],"xrefs":{"person":["Glenn_Forrester"],"template":["application/vnd.qualcomm.brew-app-res"]},"registered":true},{"content-type":"application/vnd.Quark.QuarkXPress","friendly":{"en":"QuarkXPress"},"encoding":"8bit","extensions":["qxd","qxt","qwd","qwt","qxl","qxb"],"references":["IANA","[Hannes_Scheidler]","{application/vnd.Quark.QuarkXPress=http://www.iana.org/assignments/media-types/application/vnd.Quark.QuarkXPress}"],"xrefs":{"person":["Hannes_Scheidler"],"template":["application/vnd.Quark.QuarkXPress"]},"registered":true},{"content-type":"application/vnd.quobject-quoxdocument","encoding":"base64","references":["IANA","[Matthias_Ludwig]","{application/vnd.quobject-quoxdocument=http://www.iana.org/assignments/media-types/application/vnd.quobject-quoxdocument}"],"xrefs":{"person":["Matthias_Ludwig"],"template":["application/vnd.quobject-quoxdocument"]},"registered":true},{"content-type":"application/vnd.radisys.moml+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.moml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.moml+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.moml+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conf+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conf+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-conf+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conn+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-conn+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-conn+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-conn+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-dialog+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-dialog+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-dialog+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-stream+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-audit-stream+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-audit-stream+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-audit-stream+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-conf+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-conf+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-conf+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-conf+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-base+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-base+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-base+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-base+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-detect+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-fax-detect+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-detect+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-fax-detect+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-sendrecv+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-fax-sendrecv+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-fax-sendrecv+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-fax-sendrecv+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-group+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-group+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-group+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-group+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-speech+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-speech+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-speech+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-speech+xml"]},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-transform+xml","encoding":"base64","references":["IANA","RFC5707","{application/vnd.radisys.msml-dialog-transform+xml=http://www.iana.org/assignments/media-types/application/vnd.radisys.msml-dialog-transform+xml}"],"xrefs":{"rfc":["rfc5707"],"template":["application/vnd.radisys.msml-dialog-transform+xml"]},"registered":true},{"content-type":"application/vnd.rainstor.data","encoding":"base64","references":["IANA","[Kevin_Crook]","{application/vnd.rainstor.data=http://www.iana.org/assignments/media-types/application/vnd.rainstor.data}"],"xrefs":{"person":["Kevin_Crook"],"template":["application/vnd.rainstor.data"]},"registered":true},{"content-type":"application/vnd.rapid","encoding":"base64","references":["IANA","[Etay_Szekely]","{application/vnd.rapid=http://www.iana.org/assignments/media-types/application/vnd.rapid}"],"xrefs":{"person":["Etay_Szekely"],"template":["application/vnd.rapid"]},"registered":true},{"content-type":"application/vnd.realvnc.bed","friendly":{"en":"RealVNC"},"encoding":"base64","extensions":["bed"],"references":["IANA","[Nick_Reeves]","{application/vnd.realvnc.bed=http://www.iana.org/assignments/media-types/application/vnd.realvnc.bed}"],"xrefs":{"person":["Nick_Reeves"],"template":["application/vnd.realvnc.bed"]},"registered":true},{"content-type":"application/vnd.recordare.musicxml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["mxl"],"references":["IANA","[Michael_Good]","{application/vnd.recordare.musicxml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml}"],"xrefs":{"person":["Michael_Good"],"template":["application/vnd.recordare.musicxml"]},"registered":true},{"content-type":"application/vnd.recordare.musicxml+xml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["musicxml"],"references":["IANA","[Michael_Good]","{application/vnd.recordare.musicxml+xml=http://www.iana.org/assignments/media-types/application/vnd.recordare.musicxml+xml}"],"xrefs":{"person":["Michael_Good"],"template":["application/vnd.recordare.musicxml+xml"]},"registered":true},{"content-type":"application/vnd.RenLearn.rlprint","encoding":"base64","references":["IANA","[James_Wick]","{application/vnd.renlearn.rlprint=http://www.iana.org/assignments/media-types/application/vnd.renlearn.rlprint}"],"xrefs":{"person":["James_Wick"],"template":["application/vnd.renlearn.rlprint"]},"registered":true},{"content-type":"application/vnd.rig.cryptonote","friendly":{"en":"CryptoNote"},"encoding":"base64","extensions":["cryptonote"],"references":["IANA","[Ken_Jibiki]","{application/vnd.rig.cryptonote=http://www.iana.org/assignments/media-types/application/vnd.rig.cryptonote}"],"xrefs":{"person":["Ken_Jibiki"],"template":["application/vnd.rig.cryptonote"]},"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"],"references":["IANA","[Sybren_Kikstra]","{application/vnd.route66.link66+xml=http://www.iana.org/assignments/media-types/application/vnd.route66.link66+xml}"],"xrefs":{"person":["Sybren_Kikstra"],"template":["application/vnd.route66.link66+xml"]},"registered":true},{"content-type":"application/vnd.rs-274x","encoding":"base64","references":["IANA","[Lee_Harding]","{application/vnd.rs-274x=http://www.iana.org/assignments/media-types/application/vnd.rs-274x}"],"xrefs":{"person":["Lee_Harding"],"template":["application/vnd.rs-274x"]},"registered":true},{"content-type":"application/vnd.ruckus.download","encoding":"base64","references":["IANA","[Jerry_Harris]","{application/vnd.ruckus.download=http://www.iana.org/assignments/media-types/application/vnd.ruckus.download}"],"xrefs":{"person":["Jerry_Harris"],"template":["application/vnd.ruckus.download"]},"registered":true},{"content-type":"application/vnd.s3sms","encoding":"base64","references":["IANA","[Lauri_Tarkkala]","{application/vnd.s3sms=http://www.iana.org/assignments/media-types/application/vnd.s3sms}"],"xrefs":{"person":["Lauri_Tarkkala"],"template":["application/vnd.s3sms"]},"registered":true},{"content-type":"application/vnd.sailingtracker.track","friendly":{"en":"SailingTracker"},"encoding":"base64","extensions":["st"],"references":["IANA","[Heikki_Vesalainen]","{application/vnd.sailingtracker.track=http://www.iana.org/assignments/media-types/application/vnd.sailingtracker.track}"],"xrefs":{"person":["Heikki_Vesalainen"],"template":["application/vnd.sailingtracker.track"]},"registered":true},{"content-type":"application/vnd.sbm.cid","encoding":"base64","references":["IANA","[Shinji_Kusakari]","{application/vnd.sbm.cid=http://www.iana.org/assignments/media-types/application/vnd.sbm.cid}"],"xrefs":{"person":["Shinji_Kusakari"],"template":["application/vnd.sbm.cid"]},"registered":true},{"content-type":"application/vnd.sbm.mid2","encoding":"base64","references":["IANA","[Masanori_Murai]","{application/vnd.sbm.mid2=http://www.iana.org/assignments/media-types/application/vnd.sbm.mid2}"],"xrefs":{"person":["Masanori_Murai"],"template":["application/vnd.sbm.mid2"]},"registered":true},{"content-type":"application/vnd.scribus","encoding":"base64","references":["IANA","[Craig_Bradney]","{application/vnd.scribus=http://www.iana.org/assignments/media-types/application/vnd.scribus}"],"xrefs":{"person":["Craig_Bradney"],"template":["application/vnd.scribus"]},"registered":true},{"content-type":"application/vnd.sealed.3df","encoding":"base64","references":["IANA","[John_Kwan]","{application/vnd.sealed.3df=http://www.iana.org/assignments/media-types/application/vnd.sealed.3df}"],"xrefs":{"person":["John_Kwan"],"template":["application/vnd.sealed.3df"]},"registered":true},{"content-type":"application/vnd.sealed.csf","encoding":"base64","references":["IANA","[John_Kwan]","{application/vnd.sealed.csf=http://www.iana.org/assignments/media-types/application/vnd.sealed.csf}"],"xrefs":{"person":["John_Kwan"],"template":["application/vnd.sealed.csf"]},"registered":true},{"content-type":"application/vnd.sealed.doc","encoding":"base64","extensions":["sdoc","sdo","s1w"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-doc=http://www.iana.org/assignments/media-types/application/vnd.sealed-doc}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-doc"]},"registered":true},{"content-type":"application/vnd.sealed.eml","encoding":"base64","extensions":["seml","sem"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-eml=http://www.iana.org/assignments/media-types/application/vnd.sealed-eml}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-eml"]},"registered":true},{"content-type":"application/vnd.sealed.mht","encoding":"base64","extensions":["smht","smh"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-mht=http://www.iana.org/assignments/media-types/application/vnd.sealed-mht}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-mht"]},"registered":true},{"content-type":"application/vnd.sealed.net","encoding":"base64","references":["IANA","[Martin_Lambert]","{application/vnd.sealed.net=http://www.iana.org/assignments/media-types/application/vnd.sealed.net}"],"xrefs":{"person":["Martin_Lambert"],"template":["application/vnd.sealed.net"]},"registered":true},{"content-type":"application/vnd.sealed.ppt","encoding":"base64","extensions":["sppt","spp","s1p"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-ppt=http://www.iana.org/assignments/media-types/application/vnd.sealed-ppt}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-ppt"]},"registered":true},{"content-type":"application/vnd.sealed.tiff","encoding":"base64","references":["IANA","[John_Kwan]","[Martin_Lambert]","{application/vnd.sealed-tiff=http://www.iana.org/assignments/media-types/application/vnd.sealed-tiff}"],"xrefs":{"person":["John_Kwan","Martin_Lambert"],"template":["application/vnd.sealed-tiff"]},"registered":true},{"content-type":"application/vnd.sealed.xls","encoding":"base64","extensions":["sxls","sxl","s1e"],"references":["IANA","[David_Petersen]","{application/vnd.sealed-xls=http://www.iana.org/assignments/media-types/application/vnd.sealed-xls}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealed-xls"]},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.html","encoding":"base64","extensions":["stml","stm","s1h"],"references":["IANA","[David_Petersen]","{application/vnd.sealedmedia.softseal-html=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-html}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealedmedia.softseal-html"]},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.pdf","encoding":"base64","extensions":["spdf","spd","s1a"],"references":["IANA","[David_Petersen]","{application/vnd.sealedmedia.softseal-pdf=http://www.iana.org/assignments/media-types/application/vnd.sealedmedia.softseal-pdf}"],"xrefs":{"person":["David_Petersen"],"template":["application/vnd.sealedmedia.softseal-pdf"]},"registered":true},{"content-type":"application/vnd.seemail","friendly":{"en":"SeeMail"},"encoding":"base64","extensions":["see"],"references":["IANA","[Steve_Webb]","{application/vnd.seemail=http://www.iana.org/assignments/media-types/application/vnd.seemail}"],"xrefs":{"person":["Steve_Webb"],"template":["application/vnd.seemail"]},"registered":true},{"content-type":"application/vnd.sema","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["sema"],"references":["IANA","[Anders_Hansson]","{application/vnd-sema=http://www.iana.org/assignments/media-types/application/vnd-sema}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd-sema"]},"registered":true},{"content-type":"application/vnd.semd","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semd"],"references":["IANA","[Anders_Hansson]","{application/vnd.semd=http://www.iana.org/assignments/media-types/application/vnd.semd}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd.semd"]},"registered":true},{"content-type":"application/vnd.semf","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semf"],"references":["IANA","[Anders_Hansson]","{application/vnd.semf=http://www.iana.org/assignments/media-types/application/vnd.semf}"],"xrefs":{"person":["Anders_Hansson"],"template":["application/vnd.semf"]},"registered":true},{"content-type":"application/vnd.shana.informed.formdata","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ifm"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.formdata=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formdata}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.formdata"]},"registered":true},{"content-type":"application/vnd.shana.informed.formtemplate","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["itp"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.formtemplate=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.formtemplate}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.formtemplate"]},"registered":true},{"content-type":"application/vnd.shana.informed.interchange","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["iif"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.interchange=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.interchange}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.interchange"]},"registered":true},{"content-type":"application/vnd.shana.informed.package","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ipk"],"references":["IANA","[Guy_Selzler]","{application/vnd.shana.informed.package=http://www.iana.org/assignments/media-types/application/vnd.shana.informed.package}"],"xrefs":{"person":["Guy_Selzler"],"template":["application/vnd.shana.informed.package"]},"registered":true},{"content-type":"application/vnd.SimTech-MindMapper","friendly":{"en":"SimTech MindMapper"},"encoding":"base64","extensions":["twd","twds"],"references":["IANA","[Patrick_Koh]","{application/vnd.SimTech-MindMapper=http://www.iana.org/assignments/media-types/application/vnd.SimTech-MindMapper}"],"xrefs":{"person":["Patrick_Koh"],"template":["application/vnd.SimTech-MindMapper"]},"registered":true},{"content-type":"application/vnd.siren+json","encoding":"base64","references":["IANA","[Kevin_Swiber]","{application/vnd.siren+json=http://www.iana.org/assignments/media-types/application/vnd.siren+json}"],"xrefs":{"person":["Kevin_Swiber"],"template":["application/vnd.siren+json"]},"registered":true},{"content-type":"application/vnd.smaf","friendly":{"en":"SMAF File"},"encoding":"base64","extensions":["mmf"],"references":["IANA","[Hiroaki_Takahashi]","{application/vnd.smaf=http://www.iana.org/assignments/media-types/application/vnd.smaf}"],"xrefs":{"person":["Hiroaki_Takahashi"],"template":["application/vnd.smaf"]},"registered":true},{"content-type":"application/vnd.smart.notebook","encoding":"base64","references":["IANA","[Jonathan_Neitz]","{application/vnd.smart.notebook=http://www.iana.org/assignments/media-types/application/vnd.smart.notebook}"],"xrefs":{"person":["Jonathan_Neitz"],"template":["application/vnd.smart.notebook"]},"registered":true},{"content-type":"application/vnd.smart.teacher","friendly":{"en":"SMART Technologies Apps"},"encoding":"base64","extensions":["teacher"],"references":["IANA","[Michael_Boyle]","{application/vnd.smart.teacher=http://www.iana.org/assignments/media-types/application/vnd.smart.teacher}"],"xrefs":{"person":["Michael_Boyle"],"template":["application/vnd.smart.teacher"]},"registered":true},{"content-type":"application/vnd.software602.filler.form+xml","encoding":"base64","references":["IANA","[Jakub_Hytka]","[Martin_Vondrous]","{application/vnd.software602.filler.form+xml=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form+xml}"],"xrefs":{"person":["Jakub_Hytka","Martin_Vondrous"],"template":["application/vnd.software602.filler.form+xml"]},"registered":true},{"content-type":"application/vnd.software602.filler.form-xml-zip","encoding":"base64","references":["IANA","[Jakub_Hytka]","[Martin_Vondrous]","{application/vnd.software602.filler.form-xml-zip=http://www.iana.org/assignments/media-types/application/vnd.software602.filler.form-xml-zip}"],"xrefs":{"person":["Jakub_Hytka","Martin_Vondrous"],"template":["application/vnd.software602.filler.form-xml-zip"]},"registered":true},{"content-type":"application/vnd.solent.sdkm+xml","friendly":{"en":"SudokuMagic"},"encoding":"base64","extensions":["sdkd","sdkm"],"references":["IANA","[Cliff_Gauntlett]","{application/vnd.solent.sdkm+xml=http://www.iana.org/assignments/media-types/application/vnd.solent.sdkm+xml}"],"xrefs":{"person":["Cliff_Gauntlett"],"template":["application/vnd.solent.sdkm+xml"]},"registered":true},{"content-type":"application/vnd.spotfire.dxp","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["dxp"],"references":["IANA","[Stefan_Jernberg]","{application/vnd.spotfire.dxp=http://www.iana.org/assignments/media-types/application/vnd.spotfire.dxp}"],"xrefs":{"person":["Stefan_Jernberg"],"template":["application/vnd.spotfire.dxp"]},"registered":true},{"content-type":"application/vnd.spotfire.sfs","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["sfs"],"references":["IANA","[Stefan_Jernberg]","{application/vnd.spotfire.sfs=http://www.iana.org/assignments/media-types/application/vnd.spotfire.sfs}"],"xrefs":{"person":["Stefan_Jernberg"],"template":["application/vnd.spotfire.sfs"]},"registered":true},{"content-type":"application/vnd.sss-cod","encoding":"base64","references":["IANA","[Asang_Dani]","{application/vnd.sss-cod=http://www.iana.org/assignments/media-types/application/vnd.sss-cod}"],"xrefs":{"person":["Asang_Dani"],"template":["application/vnd.sss-cod"]},"registered":true},{"content-type":"application/vnd.sss-dtf","encoding":"base64","references":["IANA","[Eric_Bruno]","{application/vnd.sss-dtf=http://www.iana.org/assignments/media-types/application/vnd.sss-dtf}"],"xrefs":{"person":["Eric_Bruno"],"template":["application/vnd.sss-dtf"]},"registered":true},{"content-type":"application/vnd.sss-ntf","encoding":"base64","references":["IANA","[Eric_Bruno]","{application/vnd.sss-ntf=http://www.iana.org/assignments/media-types/application/vnd.sss-ntf}"],"xrefs":{"person":["Eric_Bruno"],"template":["application/vnd.sss-ntf"]},"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"],"references":["IANA","[Henrik_Andersson]","{application/vnd.stepmania.package=http://www.iana.org/assignments/media-types/application/vnd.stepmania.package}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.stepmania.package"]},"registered":true},{"content-type":"application/vnd.stepmania.stepchart","friendly":{"en":"StepMania"},"encoding":"base64","extensions":["sm"],"references":["IANA","[Henrik_Andersson]","{application/vnd.stepmania.stepchart=http://www.iana.org/assignments/media-types/application/vnd.stepmania.stepchart}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.stepmania.stepchart"]},"registered":true},{"content-type":"application/vnd.street-stream","encoding":"base64","references":["IANA","[Glenn_Levitt]","{application/vnd.street-stream=http://www.iana.org/assignments/media-types/application/vnd.street-stream}"],"xrefs":{"person":["Glenn_Levitt"],"template":["application/vnd.street-stream"]},"registered":true},{"content-type":"application/vnd.sun.wadl+xml","encoding":"base64","references":["IANA","[Marc_Hadley]","{application/vnd.sun.wadl+xml=http://www.iana.org/assignments/media-types/application/vnd.sun.wadl+xml}"],"xrefs":{"person":["Marc_Hadley"],"template":["application/vnd.sun.wadl+xml"]},"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"],"references":["IANA","[Jonathan_Niedfeldt]","{application/vnd.sus-calendar=http://www.iana.org/assignments/media-types/application/vnd.sus-calendar}"],"xrefs":{"person":["Jonathan_Niedfeldt"],"template":["application/vnd.sus-calendar"]},"registered":true},{"content-type":"application/vnd.svd","friendly":{"en":"SourceView Document"},"encoding":"base64","extensions":["svd"],"references":["IANA","[Scott_Becker]","{application/vnd.svd=http://www.iana.org/assignments/media-types/application/vnd.svd}"],"xrefs":{"person":["Scott_Becker"],"template":["application/vnd.svd"]},"registered":true},{"content-type":"application/vnd.swiftview-ics","encoding":"base64","references":["IANA","[Glenn_Widener]","{application/vnd.swiftview-ics=http://www.iana.org/assignments/media-types/application/vnd.swiftview-ics}"],"xrefs":{"person":["Glenn_Widener"],"template":["application/vnd.swiftview-ics"]},"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"],"references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.syncml+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml+xml}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.syncml+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dm+wbxml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["bdm"],"references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dm+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dm+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dm+xml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["xdm"],"references":["IANA","[Bindu_Rama_Rao]","[OMA-DM_Work_Group]","{application/vnd.syncml.dm+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm+xml}"],"xrefs":{"person":["Bindu_Rama_Rao","OMA-DM_Work_Group"],"template":["application/vnd.syncml.dm+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dm.notification","encoding":"base64","references":["IANA","[Peter_Thompson]","[OMA-DM_Work_Group]","{application/vnd.syncml.dm.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.dm.notification}"],"xrefs":{"person":["OMA-DM_Work_Group","Peter_Thompson"],"template":["application/vnd.syncml.dm.notification"]},"registered":true},{"content-type":"application/vnd.syncml.dmddf+wbxml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmddf+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmddf+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dmddf+xml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmddf+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmddf+xml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmddf+xml"]},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+wbxml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmtnds+wbxml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+wbxml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmtnds+wbxml"]},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+xml","encoding":"base64","references":["IANA","[OMA-DM_Work_Group]","{application/vnd.syncml.dmtnds+xml=http://www.iana.org/assignments/media-types/application/vnd.syncml.dmtnds+xml}"],"xrefs":{"person":["OMA-DM_Work_Group"],"template":["application/vnd.syncml.dmtnds+xml"]},"registered":true},{"content-type":"application/vnd.syncml.ds.notification","encoding":"base64","references":["IANA","[OMA_Data_Synchronization_Working_Group]","{application/vnd.syncml.ds.notification=http://www.iana.org/assignments/media-types/application/vnd.syncml.ds.notification}"],"xrefs":{"person":["OMA_Data_Synchronization_Working_Group"],"template":["application/vnd.syncml.ds.notification"]},"registered":true},{"content-type":"application/vnd.tao.intent-module-archive","friendly":{"en":"Tao Intent"},"encoding":"base64","extensions":["tao"],"references":["IANA","[Daniel_Shelton]","{application/vnd.tao.intent-module-archive=http://www.iana.org/assignments/media-types/application/vnd.tao.intent-module-archive}"],"xrefs":{"person":["Daniel_Shelton"],"template":["application/vnd.tao.intent-module-archive"]},"registered":true},{"content-type":"application/vnd.tcpdump.pcap","encoding":"base64","extensions":["cap","dmp","pcap"],"references":["IANA","[Guy_Harris]","[Glen_Turner]","{application/vnd.tcpdump.pcap=http://www.iana.org/assignments/media-types/application/vnd.tcpdump.pcap}"],"xrefs":{"person":["Glen_Turner","Guy_Harris"],"template":["application/vnd.tcpdump.pcap"]},"registered":true},{"content-type":"application/vnd.tmd.mediaflex.api+xml","encoding":"base64","references":["IANA","[Alex_Sibilev]","{application/vnd.tmd.mediaflex.api+xml=http://www.iana.org/assignments/media-types/application/vnd.tmd.mediaflex.api+xml}"],"xrefs":{"person":["Alex_Sibilev"],"template":["application/vnd.tmd.mediaflex.api+xml"]},"registered":true},{"content-type":"application/vnd.tmobile-livetv","friendly":{"en":"MobileTV"},"encoding":"base64","extensions":["tmo"],"references":["IANA","[Nicolas_Helin]","{application/vnd.tmobile-livetv=http://www.iana.org/assignments/media-types/application/vnd.tmobile-livetv}"],"xrefs":{"person":["Nicolas_Helin"],"template":["application/vnd.tmobile-livetv"]},"registered":true},{"content-type":"application/vnd.trid.tpt","friendly":{"en":"TRI Systems Config"},"encoding":"base64","extensions":["tpt"],"references":["IANA","[Frank_Cusack]","{application/vnd.trid.tpt=http://www.iana.org/assignments/media-types/application/vnd.trid.tpt}"],"xrefs":{"person":["Frank_Cusack"],"template":["application/vnd.trid.tpt"]},"registered":true},{"content-type":"application/vnd.triscape.mxs","friendly":{"en":"Triscape Map Explorer"},"encoding":"base64","extensions":["mxs"],"references":["IANA","[Steven_Simonoff]","{application/vnd.triscape.mxs=http://www.iana.org/assignments/media-types/application/vnd.triscape.mxs}"],"xrefs":{"person":["Steven_Simonoff"],"template":["application/vnd.triscape.mxs"]},"registered":true},{"content-type":"application/vnd.trueapp","friendly":{"en":"True BASIC"},"encoding":"base64","extensions":["tra"],"references":["IANA","[J._Scott_Hepler]","{application/vnd.trueapp=http://www.iana.org/assignments/media-types/application/vnd.trueapp}"],"xrefs":{"person":["J._Scott_Hepler"],"template":["application/vnd.trueapp"]},"registered":true},{"content-type":"application/vnd.truedoc","encoding":"base64","references":["IANA","[Brad_Chase]","{application/vnd.truedoc=http://www.iana.org/assignments/media-types/application/vnd.truedoc}"],"xrefs":{"person":["Brad_Chase"],"template":["application/vnd.truedoc"]},"registered":true},{"content-type":"application/vnd.ubisoft.webplayer","encoding":"base64","references":["IANA","[Martin_Talbot]","{application/vnd.ubisoft.webplayer=http://www.iana.org/assignments/media-types/application/vnd.ubisoft.webplayer}"],"xrefs":{"person":["Martin_Talbot"],"template":["application/vnd.ubisoft.webplayer"]},"registered":true},{"content-type":"application/vnd.ufdl","friendly":{"en":"Universal Forms Description Language"},"encoding":"base64","extensions":["ufd","ufdl"],"references":["IANA","[Dave_Manning]","{application/vnd.ufdl=http://www.iana.org/assignments/media-types/application/vnd.ufdl}"],"xrefs":{"person":["Dave_Manning"],"template":["application/vnd.ufdl"]},"registered":true},{"content-type":"application/vnd.uiq.theme","friendly":{"en":"User Interface Quartz - Theme (Symbian)"},"encoding":"base64","extensions":["utz"],"references":["IANA","[Tim_Ocock]","{application/vnd.uiq.theme=http://www.iana.org/assignments/media-types/application/vnd.uiq.theme}"],"xrefs":{"person":["Tim_Ocock"],"template":["application/vnd.uiq.theme"]},"registered":true},{"content-type":"application/vnd.umajin","friendly":{"en":"UMAJIN"},"encoding":"base64","extensions":["umj"],"references":["IANA","[Jamie_Riden]","{application/vnd.umajin=http://www.iana.org/assignments/media-types/application/vnd.umajin}"],"xrefs":{"person":["Jamie_Riden"],"template":["application/vnd.umajin"]},"registered":true},{"content-type":"application/vnd.unity","friendly":{"en":"Unity 3d"},"encoding":"base64","extensions":["unityweb"],"references":["IANA","[Unity3d]","{application/vnd.unity=http://www.iana.org/assignments/media-types/application/vnd.unity}"],"xrefs":{"person":["Unity3d"],"template":["application/vnd.unity"]},"registered":true},{"content-type":"application/vnd.uoml+xml","friendly":{"en":"Unique Object Markup Language"},"encoding":"base64","extensions":["uoml"],"references":["IANA","[Arne_Gerdes]","{application/vnd.uoml+xml=http://www.iana.org/assignments/media-types/application/vnd.uoml+xml}"],"xrefs":{"person":["Arne_Gerdes"],"template":["application/vnd.uoml+xml"]},"registered":true},{"content-type":"application/vnd.uplanet.alert","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.alert=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.alert"]},"registered":true},{"content-type":"application/vnd.uplanet.alert-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.alert-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.alert-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.alert-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.bearer-choice=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.bearer-choice"]},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.bearer-choice-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.bearer-choice-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.bearer-choice-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.cacheop","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.cacheop=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.cacheop"]},"registered":true},{"content-type":"application/vnd.uplanet.cacheop-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.cacheop-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.cacheop-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.cacheop-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.channel","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.channel=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.channel"]},"registered":true},{"content-type":"application/vnd.uplanet.channel-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.channel-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.channel-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.channel-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.list","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.list=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.list"]},"registered":true},{"content-type":"application/vnd.uplanet.list-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.list-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.list-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.list-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.listcmd","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.listcmd=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.listcmd"]},"registered":true},{"content-type":"application/vnd.uplanet.listcmd-wbxml","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.listcmd-wbxml=http://www.iana.org/assignments/media-types/application/vnd.uplanet.listcmd-wbxml}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.listcmd-wbxml"]},"registered":true},{"content-type":"application/vnd.uplanet.signal","encoding":"base64","references":["IANA","[Bruce_Martin]","{application/vnd.uplanet.signal=http://www.iana.org/assignments/media-types/application/vnd.uplanet.signal}"],"xrefs":{"person":["Bruce_Martin"],"template":["application/vnd.uplanet.signal"]},"registered":true},{"content-type":"application/vnd.valve.source.material","encoding":"base64","references":["IANA","[Henrik_Andersson]","{application/vnd.valve.source.material=http://www.iana.org/assignments/media-types/application/vnd.valve.source.material}"],"xrefs":{"person":["Henrik_Andersson"],"template":["application/vnd.valve.source.material"]},"registered":true},{"content-type":"application/vnd.vcx","friendly":{"en":"VirtualCatalog"},"encoding":"base64","extensions":["vcx"],"references":["IANA","[Taisuke_Sugimoto]","{application/vnd.vcx=http://www.iana.org/assignments/media-types/application/vnd.vcx}"],"xrefs":{"person":["Taisuke_Sugimoto"],"template":["application/vnd.vcx"]},"registered":true},{"content-type":"application/vnd.vd-study","encoding":"base64","references":["IANA","[Luc_Rogge]","{application/vnd.vd-study=http://www.iana.org/assignments/media-types/application/vnd.vd-study}"],"xrefs":{"person":["Luc_Rogge"],"template":["application/vnd.vd-study"]},"registered":true},{"content-type":"application/vnd.vectorworks","encoding":"base64","references":["IANA","[Lyndsey_Ferguson]","[Biplab_Sarkar]","{application/vnd.vectorworks=http://www.iana.org/assignments/media-types/application/vnd.vectorworks}"],"xrefs":{"person":["Biplab_Sarkar","Lyndsey_Ferguson"],"template":["application/vnd.vectorworks"]},"registered":true},{"content-type":"application/vnd.verimatrix.vcas","encoding":"base64","references":["IANA","[Petr_Peterka]","{application/vnd.verimatrix.vcas=http://www.iana.org/assignments/media-types/application/vnd.verimatrix.vcas}"],"xrefs":{"person":["Petr_Peterka"],"template":["application/vnd.verimatrix.vcas"]},"registered":true},{"content-type":"application/vnd.vidsoft.vidconference","encoding":"8bit","extensions":["vsc"],"references":["IANA","[Robert_Hess]","{application/vnd.vidsoft.vidconference=http://www.iana.org/assignments/media-types/application/vnd.vidsoft.vidconference}"],"xrefs":{"person":["Robert_Hess"],"template":["application/vnd.vidsoft.vidconference"]},"registered":true},{"content-type":"application/vnd.visio","friendly":{"en":"Microsoft Visio"},"encoding":"base64","extensions":["vsd","vst","vsw","vss"],"references":["IANA","[Troy_Sandal]","{application/vnd.visio=http://www.iana.org/assignments/media-types/application/vnd.visio}"],"xrefs":{"person":["Troy_Sandal"],"template":["application/vnd.visio"]},"registered":true},{"content-type":"application/vnd.visionary","friendly":{"en":"Visionary"},"encoding":"base64","extensions":["vis"],"references":["IANA","[Gayatri_Aravindakumar]","{application/vnd.visionary=http://www.iana.org/assignments/media-types/application/vnd.visionary}"],"xrefs":{"person":["Gayatri_Aravindakumar"],"template":["application/vnd.visionary"]},"registered":true},{"content-type":"application/vnd.vividence.scriptfile","encoding":"base64","references":["IANA","[Mark_Risher]","{application/vnd.vividence.scriptfile=http://www.iana.org/assignments/media-types/application/vnd.vividence.scriptfile}"],"xrefs":{"person":["Mark_Risher"],"template":["application/vnd.vividence.scriptfile"]},"registered":true},{"content-type":"application/vnd.vsf","friendly":{"en":"Viewport+"},"encoding":"base64","extensions":["vsf"],"references":["IANA","[Delton_Rowe]","{application/vnd.vsf=http://www.iana.org/assignments/media-types/application/vnd.vsf}"],"xrefs":{"person":["Delton_Rowe"],"template":["application/vnd.vsf"]},"registered":true},{"content-type":"application/vnd.wap.sic","encoding":"base64","extensions":["sic"],"references":["IANA","[WAP-Forum]","{application/vnd.wap.sic=http://www.iana.org/assignments/media-types/application/vnd.wap.sic}"],"xrefs":{"person":["WAP-Forum"],"template":["application/vnd.wap.sic"]},"registered":true},{"content-type":"application/vnd.wap.slc","encoding":"base64","extensions":["slc"],"references":["IANA","[WAP-Forum]","{application/vnd.wap-slc=http://www.iana.org/assignments/media-types/application/vnd.wap-slc}"],"xrefs":{"person":["WAP-Forum"],"template":["application/vnd.wap-slc"]},"registered":true},{"content-type":"application/vnd.wap.wbxml","friendly":{"en":"WAP Binary XML (WBXML)"},"encoding":"base64","extensions":["wbxml"],"references":["IANA","[Peter_Stark]","{application/vnd.wap-wbxml=http://www.iana.org/assignments/media-types/application/vnd.wap-wbxml}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd.wap-wbxml"]},"registered":true},{"content-type":"application/vnd.wap.wmlc","friendly":{"en":"Compiled Wireless Markup Language (WMLC)"},"encoding":"base64","extensions":["wmlc"],"references":["IANA","[Peter_Stark]","{application/vnd-wap-wmlc=http://www.iana.org/assignments/media-types/application/vnd-wap-wmlc}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd-wap-wmlc"]},"registered":true},{"content-type":"application/vnd.wap.wmlscriptc","friendly":{"en":"WMLScript"},"encoding":"base64","extensions":["wmlsc"],"references":["IANA","[Peter_Stark]","{application/vnd.wap.wmlscriptc=http://www.iana.org/assignments/media-types/application/vnd.wap.wmlscriptc}"],"xrefs":{"person":["Peter_Stark"],"template":["application/vnd.wap.wmlscriptc"]},"registered":true},{"content-type":"application/vnd.webturbo","friendly":{"en":"WebTurbo"},"encoding":"base64","extensions":["wtb"],"references":["IANA","[Yaser_Rehem]","{application/vnd.webturbo=http://www.iana.org/assignments/media-types/application/vnd.webturbo}"],"xrefs":{"person":["Yaser_Rehem"],"template":["application/vnd.webturbo"]},"registered":true},{"content-type":"application/vnd.wfa.p2p","encoding":"base64","references":["IANA","[Mick_Conley]","{application/vnd.wfa.p2p=http://www.iana.org/assignments/media-types/application/vnd.wfa.p2p}"],"xrefs":{"person":["Mick_Conley"],"template":["application/vnd.wfa.p2p"]},"registered":true},{"content-type":"application/vnd.wfa.wsc","encoding":"base64","references":["IANA","[Wi-Fi_Alliance]","{application/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/application/vnd.wfa.wsc}"],"xrefs":{"person":["Wi-Fi_Alliance"],"template":["application/vnd.wfa.wsc"]},"registered":true},{"content-type":"application/vnd.windows.devicepairing","encoding":"base64","references":["IANA","[Priya_Dandawate]","{application/vnd.windows.devicepairing=http://www.iana.org/assignments/media-types/application/vnd.windows.devicepairing}"],"xrefs":{"person":["Priya_Dandawate"],"template":["application/vnd.windows.devicepairing"]},"registered":true},{"content-type":"application/vnd.wmc","encoding":"base64","references":["IANA","[Thomas_Kjornes]","{application/vnd.wmc=http://www.iana.org/assignments/media-types/application/vnd.wmc}"],"xrefs":{"person":["Thomas_Kjornes"],"template":["application/vnd.wmc"]},"registered":true},{"content-type":"application/vnd.wmf.bootstrap","encoding":"base64","references":["IANA","[Thinh_Nguyenphu]","[Prakash_Iyer]","{application/vnd.wmf.bootstrap=http://www.iana.org/assignments/media-types/application/vnd.wmf.bootstrap}"],"xrefs":{"person":["Prakash_Iyer","Thinh_Nguyenphu"],"template":["application/vnd.wmf.bootstrap"]},"registered":true},{"content-type":"application/vnd.wolfram.mathematica","encoding":"base64","references":["IANA","[Wolfram]","{application/vnd.wolfram.mathematica=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.mathematica"]},"registered":true},{"content-type":"application/vnd.wolfram.mathematica.package","encoding":"base64","references":["IANA","[Wolfram]","{application/vnd.wolfram.mathematica.package=http://www.iana.org/assignments/media-types/application/vnd.wolfram.mathematica.package}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.mathematica.package"]},"registered":true},{"content-type":"application/vnd.wolfram.player","friendly":{"en":"Mathematica Notebook Player"},"encoding":"base64","extensions":["nbp"],"references":["IANA","[Wolfram]","{application/vnd.wolfram.player=http://www.iana.org/assignments/media-types/application/vnd.wolfram.player}"],"xrefs":{"person":["Wolfram"],"template":["application/vnd.wolfram.player"]},"registered":true},{"content-type":"application/vnd.wordperfect","friendly":{"en":"Wordperfect"},"encoding":"base64","extensions":["wpd"],"references":["IANA","[Kim_Scarborough]","{application/vnd.wordperfect=http://www.iana.org/assignments/media-types/application/vnd.wordperfect}"],"xrefs":{"person":["Kim_Scarborough"],"template":["application/vnd.wordperfect"]},"registered":true},{"content-type":"application/vnd.wqd","friendly":{"en":"SundaHus WQ"},"encoding":"base64","extensions":["wqd"],"references":["IANA","[Jan_Bostrom]","{application/vnd.wqd=http://www.iana.org/assignments/media-types/application/vnd.wqd}"],"xrefs":{"person":["Jan_Bostrom"],"template":["application/vnd.wqd"]},"registered":true},{"content-type":"application/vnd.wrq-hp3000-labelled","encoding":"base64","references":["IANA","[Chris_Bartram]","{application/vnd.wrq-hp3000-labelled=http://www.iana.org/assignments/media-types/application/vnd.wrq-hp3000-labelled}"],"xrefs":{"person":["Chris_Bartram"],"template":["application/vnd.wrq-hp3000-labelled"]},"registered":true},{"content-type":"application/vnd.wt.stf","friendly":{"en":"Worldtalk"},"encoding":"base64","extensions":["stf"],"references":["IANA","[Bill_Wohler]","{application/vnd.wt.stf=http://www.iana.org/assignments/media-types/application/vnd.wt.stf}"],"xrefs":{"person":["Bill_Wohler"],"template":["application/vnd.wt.stf"]},"registered":true},{"content-type":"application/vnd.wv.csp+wbxml","encoding":"base64","extensions":["wv"],"references":["IANA","[Matti_Salmi]","{application/vnd.wv.csp+wbxml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+wbxml}"],"xrefs":{"person":["Matti_Salmi"],"template":["application/vnd.wv.csp+wbxml"]},"registered":true},{"content-type":"application/vnd.wv.csp+xml","encoding":"8bit","references":["IANA","[John_Ingi_Ingimundarson]","{application/vnd.wv.csp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.csp+xml}"],"xrefs":{"person":["John_Ingi_Ingimundarson"],"template":["application/vnd.wv.csp+xml"]},"registered":true},{"content-type":"application/vnd.wv.ssp+xml","encoding":"8bit","references":["IANA","[John_Ingi_Ingimundarson]","{application/vnd.wv.ssp+xml=http://www.iana.org/assignments/media-types/application/vnd.wv.ssp+xml}"],"xrefs":{"person":["John_Ingi_Ingimundarson"],"template":["application/vnd.wv.ssp+xml"]},"registered":true},{"content-type":"application/vnd.xacml+json","encoding":"base64","references":["IANA","[David_Brossard]","{application/vnd.xacml+json=http://www.iana.org/assignments/media-types/application/vnd.xacml+json}"],"xrefs":{"person":["David_Brossard"],"template":["application/vnd.xacml+json"]},"registered":true},{"content-type":"application/vnd.xara","friendly":{"en":"CorelXARA"},"encoding":"base64","extensions":["xar"],"references":["IANA","[David_Matthewman]","{application/vnd.xara=http://www.iana.org/assignments/media-types/application/vnd.xara}"],"xrefs":{"person":["David_Matthewman"],"template":["application/vnd.xara"]},"registered":true},{"content-type":"application/vnd.xfdl","friendly":{"en":"Extensible Forms Description Language"},"encoding":"base64","extensions":["xfdl"],"references":["IANA","[Dave_Manning]","{application/vnd.xfdl=http://www.iana.org/assignments/media-types/application/vnd.xfdl}"],"xrefs":{"person":["Dave_Manning"],"template":["application/vnd.xfdl"]},"registered":true},{"content-type":"application/vnd.xfdl.webform","encoding":"base64","references":["IANA","[Michael_Mansell]","{application/vnd.xfdl.webform=http://www.iana.org/assignments/media-types/application/vnd.xfdl.webform}"],"xrefs":{"person":["Michael_Mansell"],"template":["application/vnd.xfdl.webform"]},"registered":true},{"content-type":"application/vnd.xmi+xml","encoding":"base64","references":["IANA","[Fred_Waskiewicz]","{application/vnd.xmi+xml=http://www.iana.org/assignments/media-types/application/vnd.xmi+xml}"],"xrefs":{"person":["Fred_Waskiewicz"],"template":["application/vnd.xmi+xml"]},"registered":true},{"content-type":"application/vnd.xmpie.cpkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.cpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.cpkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.cpkg"]},"registered":true},{"content-type":"application/vnd.xmpie.dpkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.dpkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.dpkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.dpkg"]},"registered":true},{"content-type":"application/vnd.xmpie.plan","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.plan=http://www.iana.org/assignments/media-types/application/vnd.xmpie.plan}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.plan"]},"registered":true},{"content-type":"application/vnd.xmpie.ppkg","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.ppkg=http://www.iana.org/assignments/media-types/application/vnd.xmpie.ppkg}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.ppkg"]},"registered":true},{"content-type":"application/vnd.xmpie.xlim","encoding":"base64","references":["IANA","[Reuven_Sherwin]","{application/vnd.xmpie.xlim=http://www.iana.org/assignments/media-types/application/vnd.xmpie.xlim}"],"xrefs":{"person":["Reuven_Sherwin"],"template":["application/vnd.xmpie.xlim"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-dic","friendly":{"en":"HV Voice Dictionary"},"encoding":"base64","extensions":["hvd"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-dic=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-dic}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-dic"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-script","friendly":{"en":"HV Script"},"encoding":"base64","extensions":["hvs"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-script=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-script}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-script"]},"registered":true},{"content-type":"application/vnd.yamaha.hv-voice","friendly":{"en":"HV Voice Parameter"},"encoding":"base64","extensions":["hvp"],"references":["IANA","[Tomohiro_Yamamoto]","{application/vnd.yamaha.hv-voice=http://www.iana.org/assignments/media-types/application/vnd.yamaha.hv-voice}"],"xrefs":{"person":["Tomohiro_Yamamoto"],"template":["application/vnd.yamaha.hv-voice"]},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat","friendly":{"en":"Open Score Format"},"encoding":"base64","extensions":["osf"],"references":["IANA","[Mark_Olleson]","{application/vnd.yamaha.openscoreformat=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat}"],"xrefs":{"person":["Mark_Olleson"],"template":["application/vnd.yamaha.openscoreformat"]},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat.osfpvg+xml","friendly":{"en":"OSFPVG"},"encoding":"base64","extensions":["osfpvg"],"references":["IANA","[Mark_Olleson]","{application/vnd.yamaha.openscoreformat.osfpvg+xml=http://www.iana.org/assignments/media-types/application/vnd.yamaha.openscoreformat.osfpvg+xml}"],"xrefs":{"person":["Mark_Olleson"],"template":["application/vnd.yamaha.openscoreformat.osfpvg+xml"]},"registered":true},{"content-type":"application/vnd.yamaha.remote-setup","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.remote-setup=http://www.iana.org/assignments/media-types/application/vnd.yamaha.remote-setup}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.remote-setup"]},"registered":true},{"content-type":"application/vnd.yamaha.smaf-audio","friendly":{"en":"SMAF Audio"},"encoding":"base64","extensions":["saf"],"references":["IANA","[Keiichi_Shinoda]","{application/vnd.yamaha.smaf-audio=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-audio}"],"xrefs":{"person":["Keiichi_Shinoda"],"template":["application/vnd.yamaha.smaf-audio"]},"registered":true},{"content-type":"application/vnd.yamaha.smaf-phrase","friendly":{"en":"SMAF Phrase"},"encoding":"base64","extensions":["spf"],"references":["IANA","[Keiichi_Shinoda]","{application/vnd.yamaha.smaf-phrase=http://www.iana.org/assignments/media-types/application/vnd.yamaha.smaf-phrase}"],"xrefs":{"person":["Keiichi_Shinoda"],"template":["application/vnd.yamaha.smaf-phrase"]},"registered":true},{"content-type":"application/vnd.yamaha.through-ngn","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.through-ngn=http://www.iana.org/assignments/media-types/application/vnd.yamaha.through-ngn}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.through-ngn"]},"registered":true},{"content-type":"application/vnd.yamaha.tunnel-udpencap","encoding":"base64","references":["IANA","[Takehiro_Sukizaki]","{application/vnd.yamaha.tunnel-udpencap=http://www.iana.org/assignments/media-types/application/vnd.yamaha.tunnel-udpencap}"],"xrefs":{"person":["Takehiro_Sukizaki"],"template":["application/vnd.yamaha.tunnel-udpencap"]},"registered":true},{"content-type":"application/vnd.yaoweme","encoding":"base64","references":["IANA","[Jens_Jorgensen]","{application/vnd.yaoweme=http://www.iana.org/assignments/media-types/application/vnd.yaoweme}"],"xrefs":{"person":["Jens_Jorgensen"],"template":["application/vnd.yaoweme"]},"registered":true},{"content-type":"application/vnd.yellowriver-custom-menu","friendly":{"en":"CustomMenu"},"encoding":"base64","extensions":["cmp"],"references":["IANA","[Mr._Yellow]","{application/vnd.yellowriver-custom-menu=http://www.iana.org/assignments/media-types/application/vnd.yellowriver-custom-menu}"],"xrefs":{"person":["Mr._Yellow"],"template":["application/vnd.yellowriver-custom-menu"]},"registered":true},{"content-type":"application/vnd.zul","friendly":{"en":"Z.U.L. Geometry"},"encoding":"base64","extensions":["zir","zirz"],"references":["IANA","[Rene_Grothmann]","{application/vnd.zul=http://www.iana.org/assignments/media-types/application/vnd.zul}"],"xrefs":{"person":["Rene_Grothmann"],"template":["application/vnd.zul"]},"registered":true},{"content-type":"application/vnd.zzazz.deck+xml","friendly":{"en":"Zzazz Deck"},"encoding":"base64","extensions":["zaz"],"references":["IANA","[Micheal_Hewett]","{application/vnd.zzazz.deck+xml=http://www.iana.org/assignments/media-types/application/vnd.zzazz.deck+xml}"],"xrefs":{"person":["Micheal_Hewett"],"template":["application/vnd.zzazz.deck+xml"]},"registered":true},{"content-type":"application/voicexml+xml","friendly":{"en":"VoiceXML"},"encoding":"base64","extensions":["vxml"],"references":["IANA","RFC4267","{application/voicexml+xml=http://www.iana.org/assignments/media-types/application/voicexml+xml}"],"xrefs":{"rfc":["rfc4267"],"template":["application/voicexml+xml"]},"registered":true},{"content-type":"application/vq-rtcpxr","encoding":"base64","references":["IANA","RFC6035","{application/vq-rtcpxr=http://www.iana.org/assignments/media-types/application/vq-rtcpxr}"],"xrefs":{"rfc":["rfc6035"],"template":["application/vq-rtcpxr"]},"registered":true},{"content-type":"application/watcherinfo+xml","encoding":"base64","extensions":["wif"],"references":["IANA","RFC3858","{application/watcherinfo+xml=http://www.iana.org/assignments/media-types/application/watcherinfo+xml}"],"xrefs":{"rfc":["rfc3858"],"template":["application/watcherinfo+xml"]},"registered":true},{"content-type":"application/whoispp-query","encoding":"base64","references":["IANA","RFC2957","{application/whoispp-query=http://www.iana.org/assignments/media-types/application/whoispp-query}"],"xrefs":{"rfc":["rfc2957"],"template":["application/whoispp-query"]},"registered":true},{"content-type":"application/whoispp-response","encoding":"base64","references":["IANA","RFC2958","{application/whoispp-response=http://www.iana.org/assignments/media-types/application/whoispp-response}"],"xrefs":{"rfc":["rfc2958"],"template":["application/whoispp-response"]},"registered":true},{"content-type":"application/widget","friendly":{"en":"Widget Packaging and XML Configuration"},"encoding":"base64","extensions":["wgt"],"references":["IANA","[W3C]","[Steven_Pemberton]","{http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw}"],"xrefs":{"person":["Steven_Pemberton","W3C"],"uri":["http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw"]},"registered":true},{"content-type":"application/winhlp","friendly":{"en":"WinHelp"},"encoding":"base64","extensions":["hlp"],"registered":false},{"content-type":"application/wita","encoding":"base64","references":["IANA","[Larry_Campbell]","{application/wita=http://www.iana.org/assignments/media-types/application/wita}"],"xrefs":{"person":["Larry_Campbell"],"template":["application/wita"]},"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"],"references":["IANA","[Paul_Lindner]","{application/wordperfect5.1=http://www.iana.org/assignments/media-types/application/wordperfect5.1}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/wordperfect5.1"]},"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"],"references":["IANA","[W3C]","{application/wsdl+xml=http://www.iana.org/assignments/media-types/application/wsdl+xml}"],"xrefs":{"person":["W3C"],"template":["application/wsdl+xml"]},"registered":true},{"content-type":"application/wspolicy+xml","friendly":{"en":"Web Services Policy"},"encoding":"base64","extensions":["wspolicy"],"references":["IANA","[W3C]","{application/wspolicy+xml=http://www.iana.org/assignments/media-types/application/wspolicy+xml}"],"xrefs":{"person":["W3C"],"template":["application/wspolicy+xml"]},"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"],"references":["{7zip=http://www.7-zip.org/7z.html}"],"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,"system":"(?-mix:mac)"},{"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,"system":"(?-mix:mac)"},{"content-type":"application/x-mac-compactpro","encoding":"base64","extensions":["cpt"],"registered":false},{"content-type":"application/x-macbase64","encoding":"base64","extensions":["bin"],"registered":false,"system":"(?-mix:mac)"},{"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","references":["IANA","[W3C]","[Robin_Berjon]","{application/x-www-form-urlencoded=http://www.iana.org/assignments/media-types/application/x-www-form-urlencoded}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["application/x-www-form-urlencoded"]},"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","references":["IANA","RFC1494","{application/x400-bp=http://www.iana.org/assignments/media-types/application/x400-bp}"],"xrefs":{"rfc":["rfc1494"],"template":["application/x400-bp"]},"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","references":["IANA","RFC7061","{application/xacml+xml=http://www.iana.org/assignments/media-types/application/xacml+xml}"],"xrefs":{"rfc":["rfc7061"],"template":["application/xacml+xml"]},"registered":true},{"content-type":"application/xaml+xml","encoding":"base64","extensions":["xaml"],"registered":false},{"content-type":"application/xcap-att+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-att+xml=http://www.iana.org/assignments/media-types/application/xcap-att+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-att+xml"]},"registered":true},{"content-type":"application/xcap-caps+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-caps+xml=http://www.iana.org/assignments/media-types/application/xcap-caps+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-caps+xml"]},"registered":true},{"content-type":"application/xcap-diff+xml","friendly":{"en":"XML Configuration Access Protocol - XCAP Diff"},"encoding":"base64","extensions":["xdf"],"references":["IANA","RFC5874","{application/xcap-diff+xml=http://www.iana.org/assignments/media-types/application/xcap-diff+xml}"],"xrefs":{"rfc":["rfc5874"],"template":["application/xcap-diff+xml"]},"registered":true},{"content-type":"application/xcap-el+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-el+xml=http://www.iana.org/assignments/media-types/application/xcap-el+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-el+xml"]},"registered":true},{"content-type":"application/xcap-error+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-error+xml=http://www.iana.org/assignments/media-types/application/xcap-error+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-error+xml"]},"registered":true},{"content-type":"application/xcap-ns+xml","encoding":"base64","references":["IANA","RFC4825","{application/xcap-ns+xml=http://www.iana.org/assignments/media-types/application/xcap-ns+xml}"],"xrefs":{"rfc":["rfc4825"],"template":["application/xcap-ns+xml"]},"registered":true},{"content-type":"application/xcon-conference-info+xml","encoding":"base64","references":["IANA","RFC6502","{application/xcon-conference-info+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info+xml}"],"xrefs":{"rfc":["rfc6502"],"template":["application/xcon-conference-info+xml"]},"registered":true},{"content-type":"application/xcon-conference-info-diff+xml","encoding":"base64","references":["IANA","RFC6502","{application/xcon-conference-info-diff+xml=http://www.iana.org/assignments/media-types/application/xcon-conference-info-diff+xml}"],"xrefs":{"rfc":["rfc6502"],"template":["application/xcon-conference-info-diff+xml"]},"registered":true},{"content-type":"application/xenc+xml","friendly":{"en":"XML Encryption Syntax and Processing"},"encoding":"base64","extensions":["xenc"],"references":["IANA","[Joseph_Reagle]","[XENC_Working_Group]","{application/xenc+xml=http://www.iana.org/assignments/media-types/application/xenc+xml}"],"xrefs":{"person":["Joseph_Reagle","XENC_Working_Group"],"template":["application/xenc+xml"]},"registered":true},{"content-type":"application/xhtml+xml","friendly":{"en":"XHTML - The Extensible HyperText Markup Language"},"encoding":"8bit","extensions":["xht","xhtml"],"references":["IANA","[W3C]","[Robin_Berjon]","{application/xhtml+xml=http://www.iana.org/assignments/media-types/application/xhtml+xml}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["application/xhtml+xml"]},"registered":true},{"content-type":"application/xhtml-voice+xml","encoding":"base64","obsolete":true,"references":["IANA","DRAFT:draft-mccobb-xplusv-media-type","{application/xhtml-voice+xml=http://www.iana.org/assignments/media-types/application/xhtml-voice+xml}"],"xrefs":{"draft":["draft-mccobb-xplusv-media-type"],"template":["application/xhtml-voice+xml"],"notes":["- OBSOLETE; no replacement given"]},"registered":true},{"content-type":"application/xml","friendly":{"en":"XML - Extensible Markup Language"},"encoding":"8bit","extensions":["xml","xsl"],"references":["IANA","RFC7303","{application/xml=http://www.iana.org/assignments/media-types/application/xml}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml"]},"registered":true},{"content-type":"application/xml-dtd","friendly":{"en":"Document Type Definition"},"encoding":"8bit","extensions":["dtd"],"references":["IANA","RFC7303","{application/xml-dtd=http://www.iana.org/assignments/media-types/application/xml-dtd}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml-dtd"]},"registered":true},{"content-type":"application/xml-external-parsed-entity","encoding":"base64","references":["IANA","RFC7303","{application/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/application/xml-external-parsed-entity}"],"xrefs":{"rfc":["rfc7303"],"template":["application/xml-external-parsed-entity"]},"registered":true},{"content-type":"application/xml-patch+xml","encoding":"base64","references":["IANA","RFC7351","{application/xml-patch+xml=http://www.iana.org/assignments/media-types/application/xml-patch+xml}"],"xrefs":{"rfc":["rfc7351"],"template":["application/xml-patch+xml"]},"registered":true},{"content-type":"application/xmpp+xml","encoding":"base64","references":["IANA","RFC3923","{application/xmpp+xml=http://www.iana.org/assignments/media-types/application/xmpp+xml}"],"xrefs":{"rfc":["rfc3923"],"template":["application/xmpp+xml"]},"registered":true},{"content-type":"application/xop+xml","friendly":{"en":"XML-Binary Optimized Packaging"},"encoding":"base64","extensions":["xop"],"references":["IANA","[Mark_Nottingham]","{application/xop+xml=http://www.iana.org/assignments/media-types/application/xop+xml}"],"xrefs":{"person":["Mark_Nottingham"],"template":["application/xop+xml"]},"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"],"references":["IANA","[W3C]","{http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration"]},"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"],"references":["IANA","RFC4374","{application/xv+xml=http://www.iana.org/assignments/media-types/application/xv+xml}"],"xrefs":{"rfc":["rfc4374"],"template":["application/xv+xml"]},"registered":true},{"content-type":"application/yang","friendly":{"en":"YANG Data Modeling Language"},"encoding":"base64","extensions":["yang"],"references":["IANA","RFC6020","{application/yang=http://www.iana.org/assignments/media-types/application/yang}"],"xrefs":{"rfc":["rfc6020"],"template":["application/yang"]},"registered":true},{"content-type":"application/yin+xml","friendly":{"en":"YIN (YANG - XML)"},"encoding":"base64","extensions":["yin"],"references":["IANA","RFC6020","{application/yin+xml=http://www.iana.org/assignments/media-types/application/yin+xml}"],"xrefs":{"rfc":["rfc6020"],"template":["application/yin+xml"]},"registered":true},{"content-type":"application/zip","friendly":{"en":"Zip Archive"},"encoding":"base64","extensions":["zip"],"references":["IANA","[Paul_Lindner]","{application/zip=http://www.iana.org/assignments/media-types/application/zip}"],"xrefs":{"person":["Paul_Lindner"],"template":["application/zip"]},"registered":true},{"content-type":"application/zlib","encoding":"base64","references":["IANA","RFC6713","{application/zlib=http://www.iana.org/assignments/media-types/application/zlib}"],"xrefs":{"rfc":["rfc6713"],"template":["application/zlib"]},"registered":true},{"content-type":"audio/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{audio/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/audio/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["audio/1d-interleaved-parityfec"]},"registered":true},{"content-type":"audio/32kadpcm","encoding":"base64","references":["IANA","RFC3802","RFC2421","{audio/32kadpcm=http://www.iana.org/assignments/media-types/audio/32kadpcm}"],"xrefs":{"rfc":["rfc2421","rfc3802"],"template":["audio/32kadpcm"]},"registered":true},{"content-type":"audio/3gpp","encoding":"base64","references":["IANA","RFC3839","RFC6381","{audio/3gpp=http://www.iana.org/assignments/media-types/audio/3gpp}"],"xrefs":{"rfc":["rfc3839","rfc6381"],"template":["audio/3gpp"]},"registered":true},{"content-type":"audio/3gpp2","encoding":"base64","references":["IANA","RFC4393","RFC6381","{audio/3gpp2=http://www.iana.org/assignments/media-types/audio/3gpp2}"],"xrefs":{"rfc":["rfc4393","rfc6381"],"template":["audio/3gpp2"]},"registered":true},{"content-type":"audio/ac3","encoding":"base64","references":["IANA","RFC4184","{audio/ac3=http://www.iana.org/assignments/media-types/audio/ac3}"],"xrefs":{"rfc":["rfc4184"],"template":["audio/ac3"]},"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"],"references":["IANA","RFC4867","{audio/AMR=http://www.iana.org/assignments/media-types/audio/AMR}"],"xrefs":{"rfc":["rfc4867"],"template":["audio/AMR"]},"registered":true},{"content-type":"audio/AMR-WB","encoding":"base64","extensions":["awb"],"references":["IANA","RFC4867","{audio/AMR-WB=http://www.iana.org/assignments/media-types/audio/AMR-WB}"],"xrefs":{"rfc":["rfc4867"],"template":["audio/AMR-WB"]},"registered":true},{"content-type":"audio/amr-wb+","encoding":"base64","references":["IANA","RFC4352","{audio/amr-wb+=http://www.iana.org/assignments/media-types/audio/amr-wb+}"],"xrefs":{"rfc":["rfc4352"],"template":["audio/amr-wb+"]},"registered":true},{"content-type":"audio/aptx","encoding":"base64","references":["IANA","RFC7310","{audio/aptx=http://www.iana.org/assignments/media-types/audio/aptx}"],"xrefs":{"rfc":["rfc7310"],"template":["audio/aptx"]},"registered":true},{"content-type":"audio/asc","encoding":"base64","references":["IANA","RFC6295","{audio/asc=http://www.iana.org/assignments/media-types/audio/asc}"],"xrefs":{"rfc":["rfc6295"],"template":["audio/asc"]},"registered":true},{"content-type":"audio/ATRAC-ADVANCED-LOSSLESS","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC-ADVANCED-LOSSLESS=http://www.iana.org/assignments/media-types/audio/ATRAC-ADVANCED-LOSSLESS}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC-ADVANCED-LOSSLESS"]},"registered":true},{"content-type":"audio/ATRAC-X","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC-X=http://www.iana.org/assignments/media-types/audio/ATRAC-X}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC-X"]},"registered":true},{"content-type":"audio/ATRAC3","encoding":"base64","references":["IANA","RFC5584","{audio/ATRAC3=http://www.iana.org/assignments/media-types/audio/ATRAC3}"],"xrefs":{"rfc":["rfc5584"],"template":["audio/ATRAC3"]},"registered":true},{"content-type":"audio/basic","friendly":{"en":"Sun Audio - Au file format"},"encoding":"base64","extensions":["au","snd"],"references":["IANA","RFC2045","RFC2046","{audio/basic=http://www.iana.org/assignments/media-types/audio/basic}"],"xrefs":{"rfc":["rfc2045","rfc2046"],"template":["audio/basic"]},"registered":true},{"content-type":"audio/BV16","encoding":"base64","references":["IANA","RFC4298","{audio/BV16=http://www.iana.org/assignments/media-types/audio/BV16}"],"xrefs":{"rfc":["rfc4298"],"template":["audio/BV16"]},"registered":true},{"content-type":"audio/BV32","encoding":"base64","references":["IANA","RFC4298","{audio/BV32=http://www.iana.org/assignments/media-types/audio/BV32}"],"xrefs":{"rfc":["rfc4298"],"template":["audio/BV32"]},"registered":true},{"content-type":"audio/clearmode","encoding":"base64","references":["IANA","RFC4040","{audio/clearmode=http://www.iana.org/assignments/media-types/audio/clearmode}"],"xrefs":{"rfc":["rfc4040"],"template":["audio/clearmode"]},"registered":true},{"content-type":"audio/CN","encoding":"base64","references":["IANA","RFC3389","{audio/CN=http://www.iana.org/assignments/media-types/audio/CN}"],"xrefs":{"rfc":["rfc3389"],"template":["audio/CN"]},"registered":true},{"content-type":"audio/DAT12","encoding":"base64","references":["IANA","RFC3190","{audio/DAT12=http://www.iana.org/assignments/media-types/audio/DAT12}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/DAT12"]},"registered":true},{"content-type":"audio/dls","encoding":"base64","references":["IANA","RFC4613","{audio/dls=http://www.iana.org/assignments/media-types/audio/dls}"],"xrefs":{"rfc":["rfc4613"],"template":["audio/dls"]},"registered":true},{"content-type":"audio/dsr-es201108","encoding":"base64","references":["IANA","RFC3557","{audio/dsr-es201108=http://www.iana.org/assignments/media-types/audio/dsr-es201108}"],"xrefs":{"rfc":["rfc3557"],"template":["audio/dsr-es201108"]},"registered":true},{"content-type":"audio/dsr-es202050","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202050=http://www.iana.org/assignments/media-types/audio/dsr-es202050}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202050"]},"registered":true},{"content-type":"audio/dsr-es202211","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202211=http://www.iana.org/assignments/media-types/audio/dsr-es202211}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202211"]},"registered":true},{"content-type":"audio/dsr-es202212","encoding":"base64","references":["IANA","RFC4060","{audio/dsr-es202212=http://www.iana.org/assignments/media-types/audio/dsr-es202212}"],"xrefs":{"rfc":["rfc4060"],"template":["audio/dsr-es202212"]},"registered":true},{"content-type":"audio/DV","encoding":"base64","references":["IANA","RFC6469","{audio/DV=http://www.iana.org/assignments/media-types/audio/DV}"],"xrefs":{"rfc":["rfc6469"],"template":["audio/DV"]},"registered":true},{"content-type":"audio/DVI4","encoding":"base64","references":["IANA","RFC4856","{audio/DVI4=http://www.iana.org/assignments/media-types/audio/DVI4}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/DVI4"]},"registered":true},{"content-type":"audio/eac3","encoding":"base64","references":["IANA","RFC4598","{audio/eac3=http://www.iana.org/assignments/media-types/audio/eac3}"],"xrefs":{"rfc":["rfc4598"],"template":["audio/eac3"]},"registered":true},{"content-type":"audio/encaprtp","encoding":"base64","references":["IANA","RFC6849","{audio/encaprtp=http://www.iana.org/assignments/media-types/audio/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["audio/encaprtp"]},"registered":true},{"content-type":"audio/EVRC","encoding":"base64","extensions":["evc"],"references":["IANA","RFC4788","{audio/EVRC=http://www.iana.org/assignments/media-types/audio/EVRC}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC"]},"registered":true},{"content-type":"audio/EVRC-QCP","encoding":"base64","references":["IANA","RFC3625","{audio/EVRC-QCP=http://www.iana.org/assignments/media-types/audio/EVRC-QCP}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/EVRC-QCP"]},"registered":true},{"content-type":"audio/EVRC0","encoding":"base64","references":["IANA","RFC4788","{audio/EVRC0=http://www.iana.org/assignments/media-types/audio/EVRC0}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC0"]},"registered":true},{"content-type":"audio/EVRC1","encoding":"base64","references":["IANA","RFC4788","{audio/EVRC1=http://www.iana.org/assignments/media-types/audio/EVRC1}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRC1"]},"registered":true},{"content-type":"audio/EVRCB","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCB=http://www.iana.org/assignments/media-types/audio/EVRCB}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCB"]},"registered":true},{"content-type":"audio/EVRCB0","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCB0=http://www.iana.org/assignments/media-types/audio/EVRCB0}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCB0"]},"registered":true},{"content-type":"audio/EVRCB1","encoding":"base64","references":["IANA","RFC4788","{audio/EVRCB1=http://www.iana.org/assignments/media-types/audio/EVRCB1}"],"xrefs":{"rfc":["rfc4788"],"template":["audio/EVRCB1"]},"registered":true},{"content-type":"audio/EVRCNW","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW=http://www.iana.org/assignments/media-types/audio/EVRCNW}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW"]},"registered":true},{"content-type":"audio/EVRCNW0","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW0=http://www.iana.org/assignments/media-types/audio/EVRCNW0}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW0"]},"registered":true},{"content-type":"audio/EVRCNW1","encoding":"base64","references":["IANA","RFC6884","{audio/EVRCNW1=http://www.iana.org/assignments/media-types/audio/EVRCNW1}"],"xrefs":{"rfc":["rfc6884"],"template":["audio/EVRCNW1"]},"registered":true},{"content-type":"audio/EVRCWB","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB=http://www.iana.org/assignments/media-types/audio/EVRCWB}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB"]},"registered":true},{"content-type":"audio/EVRCWB0","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB0=http://www.iana.org/assignments/media-types/audio/EVRCWB0}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB0"]},"registered":true},{"content-type":"audio/EVRCWB1","encoding":"base64","references":["IANA","RFC5188","{audio/EVRCWB1=http://www.iana.org/assignments/media-types/audio/EVRCWB1}"],"xrefs":{"rfc":["rfc5188"],"template":["audio/EVRCWB1"]},"registered":true},{"content-type":"audio/example","encoding":"base64","references":["IANA","RFC4735","{audio/example=http://www.iana.org/assignments/media-types/audio/example}"],"xrefs":{"rfc":["rfc4735"],"template":["audio/example"]},"registered":true},{"content-type":"audio/fwdred","encoding":"base64","references":["IANA","RFC6354","{audio/fwdred=http://www.iana.org/assignments/media-types/audio/fwdred}"],"xrefs":{"rfc":["rfc6354"],"template":["audio/fwdred"]},"registered":true},{"content-type":"audio/G719","encoding":"base64","references":["IANA","RFC5404","{RFC Errata 3245=http://www.rfc-editor.org/errata_search.php?eid=3245}","{audio/G719=http://www.iana.org/assignments/media-types/audio/G719}"],"xrefs":{"rfc":["rfc5404"],"rfc-errata":["3245"],"template":["audio/G719"]},"registered":true},{"content-type":"audio/G722","encoding":"base64","references":["IANA","RFC4856","{audio/G722=http://www.iana.org/assignments/media-types/audio/G722}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G722"]},"registered":true},{"content-type":"audio/G7221","encoding":"base64","references":["IANA","RFC5577","{audio/G721=http://www.iana.org/assignments/media-types/audio/G721}"],"xrefs":{"rfc":["rfc5577"],"template":["audio/G721"]},"registered":true},{"content-type":"audio/G723","encoding":"base64","references":["IANA","RFC4856","{audio/G723=http://www.iana.org/assignments/media-types/audio/G723}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G723"]},"registered":true},{"content-type":"audio/G726-16","encoding":"base64","references":["IANA","RFC4856","{audio/G726-16=http://www.iana.org/assignments/media-types/audio/G726-16}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-16"]},"registered":true},{"content-type":"audio/G726-24","encoding":"base64","references":["IANA","RFC4856","{audio/G726-24=http://www.iana.org/assignments/media-types/audio/G726-24}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-24"]},"registered":true},{"content-type":"audio/G726-32","encoding":"base64","references":["IANA","RFC4856","{audio/G726-32=http://www.iana.org/assignments/media-types/audio/G726-32}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-32"]},"registered":true},{"content-type":"audio/G726-40","encoding":"base64","references":["IANA","RFC4856","{audio/G726-40=http://www.iana.org/assignments/media-types/audio/G726-40}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G726-40"]},"registered":true},{"content-type":"audio/G728","encoding":"base64","references":["IANA","RFC4856","{audio/G728=http://www.iana.org/assignments/media-types/audio/G728}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G728"]},"registered":true},{"content-type":"audio/G729","encoding":"base64","references":["IANA","RFC4856","{audio/G729=http://www.iana.org/assignments/media-types/audio/G729}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729"]},"registered":true},{"content-type":"audio/G7291","encoding":"base64","references":["IANA","RFC4749","RFC5459"],"xrefs":{"rfc":["rfc4749","rfc5459"]},"registered":true},{"content-type":"audio/G729D","encoding":"base64","references":["IANA","RFC4856","{audio/G729D=http://www.iana.org/assignments/media-types/audio/G729D}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729D"]},"registered":true},{"content-type":"audio/G729E","encoding":"base64","references":["IANA","RFC4856","{audio/G729E=http://www.iana.org/assignments/media-types/audio/G729E}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/G729E"]},"registered":true},{"content-type":"audio/GSM","encoding":"base64","references":["IANA","RFC4856","{audio/GSM=http://www.iana.org/assignments/media-types/audio/GSM}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/GSM"]},"registered":true},{"content-type":"audio/GSM-EFR","encoding":"base64","references":["IANA","RFC4856","{audio/GSM-EFR=http://www.iana.org/assignments/media-types/audio/GSM-EFR}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/GSM-EFR"]},"registered":true},{"content-type":"audio/GSM-HR-08","encoding":"base64","references":["IANA","RFC5993","{audio/GSM-HR-08=http://www.iana.org/assignments/media-types/audio/GSM-HR-08}"],"xrefs":{"rfc":["rfc5993"],"template":["audio/GSM-HR-08"]},"registered":true},{"content-type":"audio/iLBC","encoding":"base64","references":["IANA","RFC3952","{audio/iLBC=http://www.iana.org/assignments/media-types/audio/iLBC}"],"xrefs":{"rfc":["rfc3952"],"template":["audio/iLBC"]},"registered":true},{"content-type":"audio/ip-mr_v2.5","encoding":"base64","references":["IANA","RFC6262","{audio/ip-mr_v2.5=http://www.iana.org/assignments/media-types/audio/ip-mr_v2.5}"],"xrefs":{"rfc":["rfc6262"],"template":["audio/ip-mr_v2.5"]},"registered":true},{"content-type":"audio/L16","encoding":"base64","extensions":["l16"],"references":["IANA","RFC4856","{audio/L16=http://www.iana.org/assignments/media-types/audio/L16}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/L16"]},"registered":true},{"content-type":"audio/L20","encoding":"base64","references":["IANA","RFC3190","{audio/L20=http://www.iana.org/assignments/media-types/audio/L20}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/L20"]},"registered":true},{"content-type":"audio/L24","encoding":"base64","references":["IANA","RFC3190","{audio/L24=http://www.iana.org/assignments/media-types/audio/L24}"],"xrefs":{"rfc":["rfc3190"],"template":["audio/L24"]},"registered":true},{"content-type":"audio/L8","encoding":"base64","references":["IANA","RFC4856","{audio/L8=http://www.iana.org/assignments/media-types/audio/L8}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/L8"]},"registered":true},{"content-type":"audio/LPC","encoding":"base64","references":["IANA","RFC4856","{audio/LPC=http://www.iana.org/assignments/media-types/audio/LPC}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/LPC"]},"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","references":["IANA","RFC4723","{audio/mobile-xmf=http://www.iana.org/assignments/media-types/audio/mobile-xmf}"],"xrefs":{"rfc":["rfc4723"],"template":["audio/mobile-xmf"]},"registered":true},{"content-type":"audio/mp4","friendly":{"en":"MPEG-4 Audio"},"encoding":"base64","extensions":["mp4","mpg4","f4a","f4b","mp4a"],"references":["IANA","RFC4337","RFC6381","{audio/mp4=http://www.iana.org/assignments/media-types/audio/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["audio/mp4"]},"registered":true},{"content-type":"audio/MP4A-LATM","encoding":"base64","extensions":["m4a"],"references":["IANA","RFC6416","{audio/MP4A-LATM=http://www.iana.org/assignments/media-types/audio/MP4A-LATM}"],"xrefs":{"rfc":["rfc6416"],"template":["audio/MP4A-LATM"]},"registered":true},{"content-type":"audio/MPA","encoding":"base64","references":["IANA","RFC3555","{audio/MPA=http://www.iana.org/assignments/media-types/audio/MPA}"],"xrefs":{"rfc":["rfc3555"],"template":["audio/MPA"]},"registered":true},{"content-type":"audio/mpa-robust","encoding":"base64","references":["IANA","RFC5219","{audio/mpa-robust=http://www.iana.org/assignments/media-types/audio/mpa-robust}"],"xrefs":{"rfc":["rfc5219"],"template":["audio/mpa-robust"]},"registered":true},{"content-type":"audio/mpeg","friendly":{"en":"MPEG Audio"},"encoding":"base64","extensions":["mpga","mp2","mp3","m2a","m3a","mp2a"],"references":["IANA","RFC3003","{audio/mpeg=http://www.iana.org/assignments/media-types/audio/mpeg}"],"xrefs":{"rfc":["rfc3003"],"template":["audio/mpeg"]},"registered":true},{"content-type":"audio/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","RFC5691","RFC6295","{audio/mpeg4-generic=http://www.iana.org/assignments/media-types/audio/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640","rfc5691","rfc6295"],"template":["audio/mpeg4-generic"]},"registered":true},{"content-type":"audio/ogg","friendly":{"en":"Ogg Audio"},"encoding":"base64","extensions":["oga","ogg","spx"],"references":["IANA","RFC5334","{audio/ogg=http://www.iana.org/assignments/media-types/audio/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["audio/ogg"]},"registered":true},{"content-type":"audio/opus","encoding":"base64","references":["IANA","DRAFT:draft-ietf-payload-rtp-opus-11","{audio/opus=http://www.iana.org/assignments/media-types/audio/opus}"],"xrefs":{"draft":["RFC-ietf-payload-rtp-opus-11"],"template":["audio/opus"]},"registered":true},{"content-type":"audio/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"audio/PCMA","encoding":"base64","references":["IANA","RFC4856","{audio/PCMA=http://www.iana.org/assignments/media-types/audio/PCMA}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/PCMA"]},"registered":true},{"content-type":"audio/PCMA-WB","encoding":"base64","references":["IANA","RFC5391","{audio/PCMA-WB=http://www.iana.org/assignments/media-types/audio/PCMA-WB}"],"xrefs":{"rfc":["rfc5391"],"template":["audio/PCMA-WB"]},"registered":true},{"content-type":"audio/PCMU","encoding":"base64","references":["IANA","RFC4856","{audio/PCMU=http://www.iana.org/assignments/media-types/audio/PCMU}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/PCMU"]},"registered":true},{"content-type":"audio/PCMU-WB","encoding":"base64","references":["IANA","RFC5391","{audio/PCMU-WB=http://www.iana.org/assignments/media-types/audio/PCMU-WB}"],"xrefs":{"rfc":["rfc5391"],"template":["audio/PCMU-WB"]},"registered":true},{"content-type":"audio/prs.sid","encoding":"base64","references":["IANA","[Linus_Walleij]","{audio/prs.sid=http://www.iana.org/assignments/media-types/audio/prs.sid}"],"xrefs":{"person":["Linus_Walleij"],"template":["audio/prs.sid"]},"registered":true},{"content-type":"audio/QCELP","encoding":"base64","references":["IANA","RFC3555","RFC3625"],"xrefs":{"rfc":["rfc3555","rfc3625"]},"registered":true},{"content-type":"audio/raptorfec","encoding":"base64","references":["IANA","RFC6682","{audio/raptorfec=http://www.iana.org/assignments/media-types/audio/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["audio/raptorfec"]},"registered":true},{"content-type":"audio/RED","encoding":"base64","references":["IANA","RFC3555","{audio/RED=http://www.iana.org/assignments/media-types/audio/RED}"],"xrefs":{"rfc":["rfc3555"],"template":["audio/RED"]},"registered":true},{"content-type":"audio/rtp-enc-aescm128","encoding":"base64","references":["IANA","[ThreeGPP]","{audio/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/audio/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["audio/rtp-enc-aescm128"]},"registered":true},{"content-type":"audio/rtp-midi","encoding":"base64","references":["IANA","RFC6295","{audio/rtp-midi=http://www.iana.org/assignments/media-types/audio/rtp-midi}"],"xrefs":{"rfc":["rfc6295"],"template":["audio/rtp-midi"]},"registered":true},{"content-type":"audio/rtploopback","encoding":"base64","references":["IANA","RFC6849","{audio/rtploopback=http://www.iana.org/assignments/media-types/audio/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["audio/rtploopback"]},"registered":true},{"content-type":"audio/rtx","encoding":"base64","references":["IANA","RFC4588","{audio/rtx=http://www.iana.org/assignments/media-types/audio/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["audio/rtx"]},"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"],"references":["IANA","RFC3558","{audio/SMV=http://www.iana.org/assignments/media-types/audio/SMV}"],"xrefs":{"rfc":["rfc3558"],"template":["audio/SMV"]},"registered":true},{"content-type":"audio/SMV-QCP","encoding":"base64","references":["IANA","RFC3625","{audio/SMV-QCP=http://www.iana.org/assignments/media-types/audio/SMV-QCP}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/SMV-QCP"]},"registered":true},{"content-type":"audio/SMV0","encoding":"base64","references":["IANA","RFC3558","{audio/SMV0=http://www.iana.org/assignments/media-types/audio/SMV0}"],"xrefs":{"rfc":["rfc3558"],"template":["audio/SMV0"]},"registered":true},{"content-type":"audio/sp-midi","encoding":"base64","references":["IANA","[Timo_Kosonen]","[Tom_White]","{audio/sp-midi=http://www.iana.org/assignments/media-types/audio/sp-midi}"],"xrefs":{"person":["Timo_Kosonen","Tom_White"],"template":["audio/sp-midi"]},"registered":true},{"content-type":"audio/speex","encoding":"base64","references":["IANA","RFC5574","{audio/speex=http://www.iana.org/assignments/media-types/audio/speex}"],"xrefs":{"rfc":["rfc5574"],"template":["audio/speex"]},"registered":true},{"content-type":"audio/t140c","encoding":"base64","references":["IANA","RFC4351","{audio/t140c=http://www.iana.org/assignments/media-types/audio/t140c}"],"xrefs":{"rfc":["rfc4351"],"template":["audio/t140c"]},"registered":true},{"content-type":"audio/t38","encoding":"base64","references":["IANA","RFC4612","{audio/t38=http://www.iana.org/assignments/media-types/audio/t38}"],"xrefs":{"rfc":["rfc4612"],"template":["audio/t38"]},"registered":true},{"content-type":"audio/telephone-event","encoding":"base64","references":["IANA","RFC4733","{audio/telephone-event=http://www.iana.org/assignments/media-types/audio/telephone-event}"],"xrefs":{"rfc":["rfc4733"],"template":["audio/telephone-event"]},"registered":true},{"content-type":"audio/tone","encoding":"base64","references":["IANA","RFC4733","{audio/tone=http://www.iana.org/assignments/media-types/audio/tone}"],"xrefs":{"rfc":["rfc4733"],"template":["audio/tone"]},"registered":true},{"content-type":"audio/UEMCLIP","encoding":"base64","references":["IANA","RFC5686","{audio/UEMCLIP=http://www.iana.org/assignments/media-types/audio/UEMCLIP}"],"xrefs":{"rfc":["rfc5686"],"template":["audio/UEMCLIP"]},"registered":true},{"content-type":"audio/ulpfec","encoding":"base64","references":["IANA","RFC5109","{audio/ulpfec=http://www.iana.org/assignments/media-types/audio/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["audio/ulpfec"]},"registered":true},{"content-type":"audio/VDVI","encoding":"base64","references":["IANA","RFC4856","{audio/VDVI=http://www.iana.org/assignments/media-types/audio/VDVI}"],"xrefs":{"rfc":["rfc4856"],"template":["audio/VDVI"]},"registered":true},{"content-type":"audio/VMR-WB","encoding":"base64","references":["IANA","RFC4348","RFC4424","{audio/VMR-WB=http://www.iana.org/assignments/media-types/audio/VMR-WB}"],"xrefs":{"rfc":["rfc4348","rfc4424"],"template":["audio/VMR-WB"]},"registered":true},{"content-type":"audio/vnd.3gpp.iufp","encoding":"base64","references":["IANA","[Thomas_Belling]","{audio/vnd.3gpp.iufp=http://www.iana.org/assignments/media-types/audio/vnd.3gpp.iufp}"],"xrefs":{"person":["Thomas_Belling"],"template":["audio/vnd.3gpp.iufp"]},"registered":true},{"content-type":"audio/vnd.4SB","encoding":"base64","references":["IANA","[Serge_De_Jaham]","{audio/vnd.4SB=http://www.iana.org/assignments/media-types/audio/vnd.4SB}"],"xrefs":{"person":["Serge_De_Jaham"],"template":["audio/vnd.4SB"]},"registered":true},{"content-type":"audio/vnd.audiokoz","encoding":"base64","references":["IANA","[Vicki_DeBarros]","{audio/vnd.audiokoz=http://www.iana.org/assignments/media-types/audio/vnd.audiokoz}"],"xrefs":{"person":["Vicki_DeBarros"],"template":["audio/vnd.audiokoz"]},"registered":true},{"content-type":"audio/vnd.CELP","encoding":"base64","references":["IANA","[Serge_De_Jaham]","{audio/vnd.CELP=http://www.iana.org/assignments/media-types/audio/vnd.CELP}"],"xrefs":{"person":["Serge_De_Jaham"],"template":["audio/vnd.CELP"]},"registered":true},{"content-type":"audio/vnd.cisco.nse","encoding":"base64","references":["IANA","[Rajesh_Kumar]","{audio/vnd.cisco.nse=http://www.iana.org/assignments/media-types/audio/vnd.cisco.nse}"],"xrefs":{"person":["Rajesh_Kumar"],"template":["audio/vnd.cisco.nse"]},"registered":true},{"content-type":"audio/vnd.cmles.radio-events","encoding":"base64","references":["IANA","[Jean-Philippe_Goulet]","{audio/vnd.cmles.radio-events=http://www.iana.org/assignments/media-types/audio/vnd.cmles.radio-events}"],"xrefs":{"person":["Jean-Philippe_Goulet"],"template":["audio/vnd.cmles.radio-events"]},"registered":true},{"content-type":"audio/vnd.cns.anp1","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{audio/vnd.cns.anp1=http://www.iana.org/assignments/media-types/audio/vnd.cns.anp1}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["audio/vnd.cns.anp1"]},"registered":true},{"content-type":"audio/vnd.cns.inf1","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{audio/vnd.cns.inf1=http://www.iana.org/assignments/media-types/audio/vnd.cns.inf1}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["audio/vnd.cns.inf1"]},"registered":true},{"content-type":"audio/vnd.dece.audio","friendly":{"en":"DECE Audio"},"encoding":"base64","extensions":["uva","uvva"],"references":["IANA","[Michael_A_Dolan]","{audio/vnd.dece.audio=http://www.iana.org/assignments/media-types/audio/vnd.dece.audio}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["audio/vnd.dece.audio"]},"registered":true},{"content-type":"audio/vnd.digital-winds","friendly":{"en":"Digital Winds Music"},"encoding":"7bit","extensions":["eol"],"references":["IANA","[Armands_Strazds]","{audio/vnd.digital-winds=http://www.iana.org/assignments/media-types/audio/vnd.digital-winds}"],"xrefs":{"person":["Armands_Strazds"],"template":["audio/vnd.digital-winds"]},"registered":true},{"content-type":"audio/vnd.dlna.adts","encoding":"base64","references":["IANA","[Edwin_Heredia]","{audio/vnd.dlna.adts=http://www.iana.org/assignments/media-types/audio/vnd.dlna.adts}"],"xrefs":{"person":["Edwin_Heredia"],"template":["audio/vnd.dlna.adts"]},"registered":true},{"content-type":"audio/vnd.dolby.heaac.1","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.heaac.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.heaac.1"]},"registered":true},{"content-type":"audio/vnd.dolby.heaac.2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.heaac.2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.heaac.2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.heaac.2"]},"registered":true},{"content-type":"audio/vnd.dolby.mlp","encoding":"base64","references":["IANA","[Mike_Ward]","{audio/vnd.dolby.mlp=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mlp}"],"xrefs":{"person":["Mike_Ward"],"template":["audio/vnd.dolby.mlp"]},"registered":true},{"content-type":"audio/vnd.dolby.mps","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.mps=http://www.iana.org/assignments/media-types/audio/vnd.dolby.mps}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.mps"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2x","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2x=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2x}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2x"]},"registered":true},{"content-type":"audio/vnd.dolby.pl2z","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pl2z=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pl2z}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pl2z"]},"registered":true},{"content-type":"audio/vnd.dolby.pulse.1","encoding":"base64","references":["IANA","[Steve_Hattersley]","{audio/vnd.dolby.pulse.1=http://www.iana.org/assignments/media-types/audio/vnd.dolby.pulse.1}"],"xrefs":{"person":["Steve_Hattersley"],"template":["audio/vnd.dolby.pulse.1"]},"registered":true},{"content-type":"audio/vnd.dra","friendly":{"en":"DRA Audio"},"encoding":"base64","extensions":["dra"],"references":["IANA","[Jiang_Tian]","{audio/vnd.dra=http://www.iana.org/assignments/media-types/audio/vnd.dra}"],"xrefs":{"person":["Jiang_Tian"],"template":["audio/vnd.dra"]},"registered":true},{"content-type":"audio/vnd.dts","friendly":{"en":"DTS Audio"},"encoding":"base64","extensions":["dts"],"references":["IANA","[William_Zou]","{audio/vnd.dts=http://www.iana.org/assignments/media-types/audio/vnd.dts}"],"xrefs":{"person":["William_Zou"],"template":["audio/vnd.dts"]},"registered":true},{"content-type":"audio/vnd.dts.hd","friendly":{"en":"DTS High Definition Audio"},"encoding":"base64","extensions":["dtshd"],"references":["IANA","[William_Zou]","{audio/vnd.dts.hd=http://www.iana.org/assignments/media-types/audio/vnd.dts.hd}"],"xrefs":{"person":["William_Zou"],"template":["audio/vnd.dts.hd"]},"registered":true},{"content-type":"audio/vnd.dvb.file","encoding":"base64","references":["IANA","[Peter_Siebert]","{audio/vnd.dvb.file=http://www.iana.org/assignments/media-types/audio/vnd.dvb.file}"],"xrefs":{"person":["Peter_Siebert"],"template":["audio/vnd.dvb.file"]},"registered":true},{"content-type":"audio/vnd.everad.plj","encoding":"base64","extensions":["plj"],"references":["IANA","[Shay_Cicelsky]","{audio/vnd.everad.plj=http://www.iana.org/assignments/media-types/audio/vnd.everad.plj}"],"xrefs":{"person":["Shay_Cicelsky"],"template":["audio/vnd.everad.plj"]},"registered":true},{"content-type":"audio/vnd.hns.audio","encoding":"base64","references":["IANA","[Swaminathan]","{audio/vnd.hns.audio=http://www.iana.org/assignments/media-types/audio/vnd.hns.audio}"],"xrefs":{"person":["Swaminathan"],"template":["audio/vnd.hns.audio"]},"registered":true},{"content-type":"audio/vnd.lucent.voice","friendly":{"en":"Lucent Voice"},"encoding":"base64","extensions":["lvp"],"references":["IANA","[Greg_Vaudreuil]","{audio/vnd.lucent.voice=http://www.iana.org/assignments/media-types/audio/vnd.lucent.voice}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.lucent.voice"]},"registered":true},{"content-type":"audio/vnd.ms-playready.media.pya","friendly":{"en":"Microsoft PlayReady Ecosystem"},"encoding":"base64","extensions":["pya"],"references":["IANA","[Steve_DiAcetis]","{audio/vnd.ms-playready.media.pya=http://www.iana.org/assignments/media-types/audio/vnd.ms-playready.media.pya}"],"xrefs":{"person":["Steve_DiAcetis"],"template":["audio/vnd.ms-playready.media.pya"]},"registered":true},{"content-type":"audio/vnd.nokia.mobile-xmf","encoding":"base64","extensions":["mxmf"],"references":["IANA","[Nokia]","{audio/vnd.nokia.mobile-xmf=http://www.iana.org/assignments/media-types/audio/vnd.nokia.mobile-xmf}"],"xrefs":{"person":["Nokia"],"template":["audio/vnd.nokia.mobile-xmf"]},"registered":true},{"content-type":"audio/vnd.nortel.vbk","encoding":"base64","extensions":["vbk"],"references":["IANA","[Glenn_Parsons]","{audio/vnd.nortel.vbk=http://www.iana.org/assignments/media-types/audio/vnd.nortel.vbk}"],"xrefs":{"person":["Glenn_Parsons"],"template":["audio/vnd.nortel.vbk"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp4800","friendly":{"en":"Nuera ECELP 4800"},"encoding":"base64","extensions":["ecelp4800"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp4800=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp4800}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp4800"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp7470","friendly":{"en":"Nuera ECELP 7470"},"encoding":"base64","extensions":["ecelp7470"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp7470=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp7470}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp7470"]},"registered":true},{"content-type":"audio/vnd.nuera.ecelp9600","friendly":{"en":"Nuera ECELP 9600"},"encoding":"base64","extensions":["ecelp9600"],"references":["IANA","[Michael_Fox]","{audio/vnd.nuera.ecelp9600=http://www.iana.org/assignments/media-types/audio/vnd.nuera.ecelp9600}"],"xrefs":{"person":["Michael_Fox"],"template":["audio/vnd.nuera.ecelp9600"]},"registered":true},{"content-type":"audio/vnd.octel.sbc","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.octel.sbc=http://www.iana.org/assignments/media-types/audio/vnd.octel.sbc}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.octel.sbc"]},"registered":true},{"content-type":"audio/vnd.qcelp","encoding":"base64","extensions":["qcp"],"obsolete":true,"use-instead":"audio/qcelp","references":["IANA","RFC3625","{audio/vnd.qcelp=http://www.iana.org/assignments/media-types/audio/vnd.qcelp}"],"xrefs":{"rfc":["rfc3625"],"template":["audio/vnd.qcelp"],"notes":["- DEPRECATED in favor of audio/qcelp"]},"registered":true},{"content-type":"audio/vnd.rhetorex.32kadpcm","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.rhetorex.32kadpcm=http://www.iana.org/assignments/media-types/audio/vnd.rhetorex.32kadpcm}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.rhetorex.32kadpcm"]},"registered":true},{"content-type":"audio/vnd.rip","friendly":{"en":"Hit'n'Mix"},"encoding":"base64","extensions":["rip"],"references":["IANA","[Martin_Dawe]","{audio/vnd.rip=http://www.iana.org/assignments/media-types/audio/vnd.rip}"],"xrefs":{"person":["Martin_Dawe"],"template":["audio/vnd.rip"]},"registered":true},{"content-type":"audio/vnd.sealedmedia.softseal.mpeg","encoding":"base64","extensions":["smp3","smp","s1m"],"references":["IANA","[David_Petersen]","{audio/vnd.sealedmedia.softseal-mpeg=http://www.iana.org/assignments/media-types/audio/vnd.sealedmedia.softseal-mpeg}"],"xrefs":{"person":["David_Petersen"],"template":["audio/vnd.sealedmedia.softseal-mpeg"]},"registered":true},{"content-type":"audio/vnd.vmx.cvsd","encoding":"base64","references":["IANA","[Greg_Vaudreuil]","{audio/vnd.vmx.cvsd=http://www.iana.org/assignments/media-types/audio/vnd.vmx.cvsd}"],"xrefs":{"person":["Greg_Vaudreuil"],"template":["audio/vnd.vmx.cvsd"]},"registered":true},{"content-type":"audio/vorbis","encoding":"base64","references":["IANA","RFC5215","{audio/vorbis=http://www.iana.org/assignments/media-types/audio/vorbis}"],"xrefs":{"rfc":["rfc5215"],"template":["audio/vorbis"]},"registered":true},{"content-type":"audio/vorbis-config","encoding":"base64","references":["IANA","RFC5215","{audio/vorbis-config=http://www.iana.org/assignments/media-types/audio/vorbis-config}"],"xrefs":{"rfc":["rfc5215"],"template":["audio/vorbis-config"]},"registered":true},{"content-type":"audio/webm","friendly":{"en":"Open Web Media Project - Audio"},"encoding":"base64","extensions":["weba","webm"],"references":["{WebM=http://www.webmproject.org/code/specs/container/}"],"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"],"references":["IANA","[Alan_Francis]","{image/cgm=http://www.iana.org/assignments/media-types/image/cgm}"],"xrefs":{"person":["Alan_Francis"],"template":["image/cgm"]},"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","references":["IANA","RFC4735","{image/example=http://www.iana.org/assignments/media-types/image/example}"],"xrefs":{"rfc":["rfc4735"],"template":["image/example"]},"registered":true},{"content-type":"image/fits","encoding":"base64","references":["IANA","RFC4047","{image/fits=http://www.iana.org/assignments/media-types/image/fits}"],"xrefs":{"rfc":["rfc4047"],"template":["image/fits"]},"registered":true},{"content-type":"image/g3fax","friendly":{"en":"G3 Fax Image"},"encoding":"base64","extensions":["g3"],"references":["IANA","RFC1494","{image/g3fax=http://www.iana.org/assignments/media-types/image/g3fax}"],"xrefs":{"rfc":["rfc1494"],"template":["image/g3fax"]},"registered":true},{"content-type":"image/gif","friendly":{"en":"Graphics Interchange Format"},"encoding":"base64","extensions":["gif"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"image/ief","friendly":{"en":"Image Exchange Format"},"encoding":"base64","extensions":["ief"],"references":["IANA","RFC1314"],"xrefs":{"rfc":["rfc1314"]},"registered":true},{"content-type":"image/jp2","encoding":"base64","extensions":["jp2","jpg2"],"references":["IANA","RFC3745","{image/jp2=http://www.iana.org/assignments/media-types/image/jp2}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jp2"]},"registered":true},{"content-type":"image/jpeg","friendly":{"en":"JPEG Image"},"encoding":"base64","extensions":["jpeg","jpg","jpe"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"image/jpm","encoding":"base64","extensions":["jpm","jpgm"],"references":["IANA","RFC3745","{image/jpm=http://www.iana.org/assignments/media-types/image/jpm}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jpm"]},"registered":true},{"content-type":"image/jpx","encoding":"base64","extensions":["jpx","jpf"],"references":["IANA","RFC3745","{image/jpx=http://www.iana.org/assignments/media-types/image/jpx}"],"xrefs":{"rfc":["rfc3745"],"template":["image/jpx"]},"registered":true},{"content-type":"image/ktx","friendly":{"en":"OpenGL Textures (KTX)"},"encoding":"base64","extensions":["ktx"],"references":["IANA","[Mark_Callow]","[Khronos]","{http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration}"],"xrefs":{"person":["Khronos","Mark_Callow"],"uri":["http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration"]},"registered":true},{"content-type":"image/naplps","encoding":"base64","references":["IANA","[Ilya_Ferber]","{image/naplps=http://www.iana.org/assignments/media-types/image/naplps}"],"xrefs":{"person":["Ilya_Ferber"],"template":["image/naplps"]},"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"],"references":["IANA","[Glenn_Randers-Pehrson]","{image/png=http://www.iana.org/assignments/media-types/image/png}"],"xrefs":{"person":["Glenn_Randers-Pehrson"],"template":["image/png"]},"registered":true},{"content-type":"image/prs.btif","friendly":{"en":"BTIF"},"encoding":"base64","extensions":["btif"],"references":["IANA","[Ben_Simon]","{image/prs.btif=http://www.iana.org/assignments/media-types/image/prs.btif}"],"xrefs":{"person":["Ben_Simon"],"template":["image/prs.btif"]},"registered":true},{"content-type":"image/prs.pti","encoding":"base64","references":["IANA","[Juern_Laun]","{image/prs.pti=http://www.iana.org/assignments/media-types/image/prs.pti}"],"xrefs":{"person":["Juern_Laun"],"template":["image/prs.pti"]},"registered":true},{"content-type":"image/pwg-raster","encoding":"base64","references":["IANA","[Michael_Sweet]","{image/pwg-raster=http://www.iana.org/assignments/media-types/image/pwg-raster}"],"xrefs":{"person":["Michael_Sweet"],"template":["image/pwg-raster"]},"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"],"references":["IANA","[W3C]","{http://www.w3.org/TR/SVG/mimereg.html}"],"xrefs":{"person":["W3C"],"uri":["http://www.w3.org/TR/SVG/mimereg.html"]},"registered":true},{"content-type":"image/t38","encoding":"base64","references":["IANA","RFC3362","{image/t38=http://www.iana.org/assignments/media-types/image/t38}"],"xrefs":{"rfc":["rfc3362"],"template":["image/t38"]},"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"],"references":["IANA","RFC3302","{image/tiff=http://www.iana.org/assignments/media-types/image/tiff}"],"xrefs":{"rfc":["rfc3302"],"template":["image/tiff"]},"registered":true},{"content-type":"image/tiff-fx","encoding":"base64","references":["IANA","RFC3950","{image/tiff-fx=http://www.iana.org/assignments/media-types/image/tiff-fx}"],"xrefs":{"rfc":["rfc3950"],"template":["image/tiff-fx"]},"registered":true},{"content-type":"image/vnd.adobe.photoshop","friendly":{"en":"Photoshop Document"},"encoding":"base64","extensions":["psd"],"references":["IANA","[Kim_Scarborough]","{image/vnd.adobe.photoshop=http://www.iana.org/assignments/media-types/image/vnd.adobe.photoshop}"],"xrefs":{"person":["Kim_Scarborough"],"template":["image/vnd.adobe.photoshop"]},"registered":true},{"content-type":"image/vnd.airzip.accelerator.azv","encoding":"base64","references":["IANA","[Gary_Clueit]","{image/vnd.airzip.accelerator.azv=http://www.iana.org/assignments/media-types/image/vnd.airzip.accelerator.azv}"],"xrefs":{"person":["Gary_Clueit"],"template":["image/vnd.airzip.accelerator.azv"]},"registered":true},{"content-type":"image/vnd.cns.inf2","encoding":"base64","references":["IANA","[Ann_McLaughlin]","{image/vnd.cns.inf2=http://www.iana.org/assignments/media-types/image/vnd.cns.inf2}"],"xrefs":{"person":["Ann_McLaughlin"],"template":["image/vnd.cns.inf2"]},"registered":true},{"content-type":"image/vnd.dece.graphic","friendly":{"en":"DECE Graphic"},"encoding":"base64","extensions":["uvg","uvi","uvvg","uvvi"],"references":["IANA","[Michael_A_Dolan]","{image/vnd.dece.graphic=http://www.iana.org/assignments/media-types/image/vnd.dece.graphic}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["image/vnd.dece.graphic"]},"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"],"references":["IANA","[Leon_Bottou]","{image/vnd-djvu=http://www.iana.org/assignments/media-types/image/vnd-djvu}"],"xrefs":{"person":["Leon_Bottou"],"template":["image/vnd-djvu"]},"registered":true},{"content-type":"image/vnd.dvb.subtitle","friendly":{"en":"Close Captioning - Subtitle"},"encoding":"base64","extensions":["sub"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{image/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/image/vnd.dvb.subtitle}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["image/vnd.dvb.subtitle"]},"registered":true},{"content-type":"image/vnd.dwg","friendly":{"en":"DWG Drawing"},"encoding":"base64","extensions":["dwg"],"references":["IANA","[Jodi_Moline]","{image/vnd.dwg=http://www.iana.org/assignments/media-types/image/vnd.dwg}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd.dwg"]},"registered":true},{"content-type":"image/vnd.dxf","friendly":{"en":"AutoCAD DXF"},"encoding":"base64","extensions":["dxf"],"references":["IANA","[Jodi_Moline]","{image/vnd.dxf=http://www.iana.org/assignments/media-types/image/vnd.dxf}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd.dxf"]},"registered":true},{"content-type":"image/vnd.fastbidsheet","friendly":{"en":"FastBid Sheet"},"encoding":"base64","extensions":["fbs"],"references":["IANA","[Scott_Becker]","{image/vnd.fastbidsheet=http://www.iana.org/assignments/media-types/image/vnd.fastbidsheet}"],"xrefs":{"person":["Scott_Becker"],"template":["image/vnd.fastbidsheet"]},"registered":true},{"content-type":"image/vnd.fpx","friendly":{"en":"FlashPix"},"encoding":"base64","extensions":["fpx"],"references":["IANA","[Marc_Douglas_Spencer]","{image/vnd.fpx=http://www.iana.org/assignments/media-types/image/vnd.fpx}"],"xrefs":{"person":["Marc_Douglas_Spencer"],"template":["image/vnd.fpx"]},"registered":true},{"content-type":"image/vnd.fst","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fst"],"references":["IANA","[Arild_Fuldseth]","{image/vnd.fst=http://www.iana.org/assignments/media-types/image/vnd.fst}"],"xrefs":{"person":["Arild_Fuldseth"],"template":["image/vnd.fst"]},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-mmr","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["mmr"],"references":["IANA","[Masanori_Onda]","{image/vnd.fujixerox.edmics-mmr=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-mmr}"],"xrefs":{"person":["Masanori_Onda"],"template":["image/vnd.fujixerox.edmics-mmr"]},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-rlc","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["rlc"],"references":["IANA","[Masanori_Onda]","{image/vnd.fujixerox.edmics-rlc=http://www.iana.org/assignments/media-types/image/vnd.fujixerox.edmics-rlc}"],"xrefs":{"person":["Masanori_Onda"],"template":["image/vnd.fujixerox.edmics-rlc"]},"registered":true},{"content-type":"image/vnd.globalgraphics.pgb","encoding":"base64","extensions":["pgb"],"references":["IANA","[Martin_Bailey]","{image/vnd.globalgraphics.pgb=http://www.iana.org/assignments/media-types/image/vnd.globalgraphics.pgb}"],"xrefs":{"person":["Martin_Bailey"],"template":["image/vnd.globalgraphics.pgb"]},"registered":true},{"content-type":"image/vnd.microsoft.icon","encoding":"base64","extensions":["ico"],"references":["IANA","[Simon_Butcher]","{image/vnd.microsoft.icon=http://www.iana.org/assignments/media-types/image/vnd.microsoft.icon}"],"xrefs":{"person":["Simon_Butcher"],"template":["image/vnd.microsoft.icon"]},"registered":true},{"content-type":"image/vnd.mix","encoding":"base64","references":["IANA","[Saveen_Reddy]","{image/vnd.mix=http://www.iana.org/assignments/media-types/image/vnd.mix}"],"xrefs":{"person":["Saveen_Reddy"],"template":["image/vnd.mix"]},"registered":true},{"content-type":"image/vnd.ms-modi","friendly":{"en":"Microsoft Document Imaging Format"},"encoding":"base64","extensions":["mdi"],"references":["IANA","[Gregory_Vaughan]","{image/vnd.ms-modi=http://www.iana.org/assignments/media-types/image/vnd.ms-modi}"],"xrefs":{"person":["Gregory_Vaughan"],"template":["image/vnd.ms-modi"]},"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"],"references":["IANA","[Marc_Douglas_Spencer]","{image/vnd.net-fpx=http://www.iana.org/assignments/media-types/image/vnd.net-fpx}"],"xrefs":{"person":["Marc_Douglas_Spencer"],"template":["image/vnd.net-fpx"]},"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","references":["IANA","[Randolph_Fritz]","[Greg_Ward]","{image/vnd.radiance=http://www.iana.org/assignments/media-types/image/vnd.radiance}"],"xrefs":{"person":["Greg_Ward","Randolph_Fritz"],"template":["image/vnd.radiance"]},"registered":true},{"content-type":"image/vnd.sealed.png","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealed-png=http://www.iana.org/assignments/media-types/image/vnd.sealed-png}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealed-png"]},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.gif","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealedmedia.softseal-gif=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-gif}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealedmedia.softseal-gif"]},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.jpg","encoding":"base64","references":["IANA","[David_Petersen]","{image/vnd.sealedmedia.softseal-jpg=http://www.iana.org/assignments/media-types/image/vnd.sealedmedia.softseal-jpg}"],"xrefs":{"person":["David_Petersen"],"template":["image/vnd.sealedmedia.softseal-jpg"]},"registered":true},{"content-type":"image/vnd.svf","encoding":"base64","references":["IANA","[Jodi_Moline]","{image/vnd-svf=http://www.iana.org/assignments/media-types/image/vnd-svf}"],"xrefs":{"person":["Jodi_Moline"],"template":["image/vnd-svf"]},"registered":true},{"content-type":"image/vnd.tencent.tap","encoding":"base64","references":["IANA","[Ni_Hui]","{image/vnd.tencent.tap=http://www.iana.org/assignments/media-types/image/vnd.tencent.tap}"],"xrefs":{"person":["Ni_Hui"],"template":["image/vnd.tencent.tap"]},"registered":true},{"content-type":"image/vnd.valve.source.texture","encoding":"base64","references":["IANA","[Henrik_Andersson]","{image/vnd.valve.source.texture=http://www.iana.org/assignments/media-types/image/vnd.valve.source.texture}"],"xrefs":{"person":["Henrik_Andersson"],"template":["image/vnd.valve.source.texture"]},"registered":true},{"content-type":"image/vnd.wap.wbmp","friendly":{"en":"WAP Bitamp (WBMP)"},"encoding":"base64","extensions":["wbmp"],"references":["IANA","[Peter_Stark]","{image/vnd-wap-wbmp=http://www.iana.org/assignments/media-types/image/vnd-wap-wbmp}"],"xrefs":{"person":["Peter_Stark"],"template":["image/vnd-wap-wbmp"]},"registered":true},{"content-type":"image/vnd.xiff","friendly":{"en":"eXtended Image File Format (XIFF)"},"encoding":"base64","extensions":["xif"],"references":["IANA","[Steven_Martin]","{image/vnd.xiff=http://www.iana.org/assignments/media-types/image/vnd.xiff}"],"xrefs":{"person":["Steven_Martin"],"template":["image/vnd.xiff"]},"registered":true},{"content-type":"image/vnd.zbrush.pcx","encoding":"base64","references":["IANA","[Chris_Charabaruk]","{image/vnd.zbrush.pcx=http://www.iana.org/assignments/media-types/image/vnd.zbrush.pcx}"],"xrefs":{"person":["Chris_Charabaruk"],"template":["image/vnd.zbrush.pcx"]},"registered":true},{"content-type":"image/webp","friendly":{"en":"WebP Image"},"encoding":"base64","extensions":["webp"],"references":["{WebP=https://developers.google.com/speed/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"],"references":["{XCF=http://git.gnome.org/browse/gimp/tree/devel-docs/xcf.txt}"],"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","references":["IANA","RFC3862","{message/CPIM=http://www.iana.org/assignments/media-types/message/CPIM}"],"xrefs":{"rfc":["rfc3862"],"template":["message/CPIM"]},"registered":true},{"content-type":"message/delivery-status","encoding":"base64","references":["IANA","RFC1894","{message/delivery-status=http://www.iana.org/assignments/media-types/message/delivery-status}"],"xrefs":{"rfc":["rfc1894"],"template":["message/delivery-status"]},"registered":true},{"content-type":"message/disposition-notification","encoding":"base64","references":["IANA","RFC3798","{message/disposition-notification=http://www.iana.org/assignments/media-types/message/disposition-notification}"],"xrefs":{"rfc":["rfc3798"],"template":["message/disposition-notification"]},"registered":true},{"content-type":"message/example","encoding":"base64","references":["IANA","RFC4735","{message/example=http://www.iana.org/assignments/media-types/message/example}"],"xrefs":{"rfc":["rfc4735"],"template":["message/example"]},"registered":true},{"content-type":"message/external-body","encoding":"8bit","references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/feedback-report","encoding":"base64","references":["IANA","RFC5965","{message/feedback-report=http://www.iana.org/assignments/media-types/message/feedback-report}"],"xrefs":{"rfc":["rfc5965"],"template":["message/feedback-report"]},"registered":true},{"content-type":"message/global","encoding":"base64","references":["IANA","RFC6532","{message/global=http://www.iana.org/assignments/media-types/message/global}"],"xrefs":{"rfc":["rfc6532"],"template":["message/global"]},"registered":true},{"content-type":"message/global-delivery-status","encoding":"base64","references":["IANA","RFC6533","{message/global-delivery-status=http://www.iana.org/assignments/media-types/message/global-delivery-status}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-delivery-status"]},"registered":true},{"content-type":"message/global-disposition-notification","encoding":"base64","references":["IANA","RFC6533","{message/global-disposition-notification=http://www.iana.org/assignments/media-types/message/global-disposition-notification}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-disposition-notification"]},"registered":true},{"content-type":"message/global-headers","encoding":"base64","references":["IANA","RFC6533","{message/global-headers=http://www.iana.org/assignments/media-types/message/global-headers}"],"xrefs":{"rfc":["rfc6533"],"template":["message/global-headers"]},"registered":true},{"content-type":"message/http","encoding":"base64","references":["IANA","RFC7230","{message/http=http://www.iana.org/assignments/media-types/message/http}"],"xrefs":{"rfc":["rfc7230"],"template":["message/http"]},"registered":true},{"content-type":"message/imdn+xml","encoding":"base64","references":["IANA","RFC5438","{message/imdn+xml=http://www.iana.org/assignments/media-types/message/imdn+xml}"],"xrefs":{"rfc":["rfc5438"],"template":["message/imdn+xml"]},"registered":true},{"content-type":"message/news","encoding":"8bit","obsolete":true,"references":["IANA","RFC5537","[Henry_Spencer]","{message/news=http://www.iana.org/assignments/media-types/message/news}"],"xrefs":{"rfc":["rfc5537"],"person":["Henry_Spencer"],"template":["message/news"],"notes":["- OBSOLETED by RFC5537"]},"registered":true},{"content-type":"message/partial","encoding":"8bit","references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/rfc822","friendly":{"en":"Email Message"},"encoding":"8bit","extensions":["eml","mime"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"message/s-http","encoding":"base64","references":["IANA","RFC2660","{message/s-http=http://www.iana.org/assignments/media-types/message/s-http}"],"xrefs":{"rfc":["rfc2660"],"template":["message/s-http"]},"registered":true},{"content-type":"message/sip","encoding":"base64","references":["IANA","RFC3261","{message/sip=http://www.iana.org/assignments/media-types/message/sip}"],"xrefs":{"rfc":["rfc3261"],"template":["message/sip"]},"registered":true},{"content-type":"message/sipfrag","encoding":"base64","references":["IANA","RFC3420","{message/sipfrag=http://www.iana.org/assignments/media-types/message/sipfrag}"],"xrefs":{"rfc":["rfc3420"],"template":["message/sipfrag"]},"registered":true},{"content-type":"message/tracking-status","encoding":"base64","references":["IANA","RFC3886","{message/tracking-status=http://www.iana.org/assignments/media-types/message/tracking-status}"],"xrefs":{"rfc":["rfc3886"],"template":["message/tracking-status"]},"registered":true},{"content-type":"message/vnd.si.simp","encoding":"base64","obsolete":true,"references":["IANA","[Nicholas_Parks_Young]","{message/vnd.si.simp=http://www.iana.org/assignments/media-types/message/vnd.si.simp}"],"xrefs":{"person":["Nicholas_Parks_Young"],"template":["message/vnd.si.simp"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"message/vnd.wfa.wsc","encoding":"base64","references":["IANA","[Mick_Conley]","{message/vnd.wfa.wsc=http://www.iana.org/assignments/media-types/message/vnd.wfa.wsc}"],"xrefs":{"person":["Mick_Conley"],"template":["message/vnd.wfa.wsc"]},"registered":true},{"content-type":"model/example","encoding":"base64","references":["IANA","RFC4735","{model/example=http://www.iana.org/assignments/media-types/model/example}"],"xrefs":{"rfc":["rfc4735"],"template":["model/example"]},"registered":true},{"content-type":"model/iges","friendly":{"en":"Initial Graphics Exchange Specification (IGES)"},"encoding":"base64","extensions":["igs","iges"],"references":["IANA","[Curtis_Parks]","{model/iges=http://www.iana.org/assignments/media-types/model/iges}"],"xrefs":{"person":["Curtis_Parks"],"template":["model/iges"]},"registered":true},{"content-type":"model/mesh","friendly":{"en":"Mesh Data Type"},"encoding":"base64","extensions":["msh","mesh","silo"],"references":["IANA","RFC2077"],"xrefs":{"rfc":["rfc2077"]},"registered":true},{"content-type":"model/vnd.collada+xml","friendly":{"en":"COLLADA"},"encoding":"base64","extensions":["dae"],"references":["IANA","[James_Riordon]","{model/vnd.collada+xml=http://www.iana.org/assignments/media-types/model/vnd.collada+xml}"],"xrefs":{"person":["James_Riordon"],"template":["model/vnd.collada+xml"]},"registered":true},{"content-type":"model/vnd.dwf","friendly":{"en":"Autodesk Design Web Format (DWF)"},"encoding":"base64","extensions":["dwf"],"references":["IANA","[Jason_Pratt]","{model/vnd-dwf=http://www.iana.org/assignments/media-types/model/vnd-dwf}"],"xrefs":{"person":["Jason_Pratt"],"template":["model/vnd-dwf"]},"registered":true},{"content-type":"model/vnd.flatland.3dml","encoding":"base64","references":["IANA","[Michael_Powers]","{model/vnd.flatland.3dml=http://www.iana.org/assignments/media-types/model/vnd.flatland.3dml}"],"xrefs":{"person":["Michael_Powers"],"template":["model/vnd.flatland.3dml"]},"registered":true},{"content-type":"model/vnd.gdl","friendly":{"en":"Geometric Description Language (GDL)"},"encoding":"base64","extensions":["gdl"],"references":["IANA","[Attila_Babits]","{model/vnd.gdl=http://www.iana.org/assignments/media-types/model/vnd.gdl}"],"xrefs":{"person":["Attila_Babits"],"template":["model/vnd.gdl"]},"registered":true},{"content-type":"model/vnd.gs-gdl","encoding":"base64","references":["IANA","[Attila_Babits]","{model/vnd.gs-gdl=http://www.iana.org/assignments/media-types/model/vnd.gs-gdl}"],"xrefs":{"person":["Attila_Babits"],"template":["model/vnd.gs-gdl"]},"registered":true},{"content-type":"model/vnd.gtw","friendly":{"en":"Gen-Trix Studio"},"encoding":"base64","extensions":["gtw"],"references":["IANA","[Yutaka_Ozaki]","{model/vnd.gtw=http://www.iana.org/assignments/media-types/model/vnd.gtw}"],"xrefs":{"person":["Yutaka_Ozaki"],"template":["model/vnd.gtw"]},"registered":true},{"content-type":"model/vnd.moml+xml","encoding":"base64","references":["IANA","[Christopher_Brooks]","{model/vnd.moml+xml=http://www.iana.org/assignments/media-types/model/vnd.moml+xml}"],"xrefs":{"person":["Christopher_Brooks"],"template":["model/vnd.moml+xml"]},"registered":true},{"content-type":"model/vnd.mts","friendly":{"en":"Virtue MTS"},"encoding":"base64","extensions":["mts"],"references":["IANA","[Boris_Rabinovitch]","{model/vnd.mts=http://www.iana.org/assignments/media-types/model/vnd.mts}"],"xrefs":{"person":["Boris_Rabinovitch"],"template":["model/vnd.mts"]},"registered":true},{"content-type":"model/vnd.opengex","encoding":"base64","references":["IANA","[Eric_Lengyel]","{model/vnd.opengex=http://www.iana.org/assignments/media-types/model/vnd.opengex}"],"xrefs":{"person":["Eric_Lengyel"],"template":["model/vnd.opengex"]},"registered":true},{"content-type":"model/vnd.parasolid.transmit.binary","encoding":"base64","extensions":["x_b","xmt_bin"],"references":["IANA","[Parasolid]","{model/vnd.parasolid.transmit-binary=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-binary}"],"xrefs":{"person":["Parasolid"],"template":["model/vnd.parasolid.transmit-binary"]},"registered":true},{"content-type":"model/vnd.parasolid.transmit.text","encoding":"quoted-printable","extensions":["x_t","xmt_txt"],"references":["IANA","[Parasolid]","{model/vnd.parasolid.transmit-text=http://www.iana.org/assignments/media-types/model/vnd.parasolid.transmit-text}"],"xrefs":{"person":["Parasolid"],"template":["model/vnd.parasolid.transmit-text"]},"registered":true},{"content-type":"model/vnd.valve.source.compiled-map","encoding":"base64","references":["IANA","[Henrik_Andersson]","{model/vnd.valve.source.compiled-map=http://www.iana.org/assignments/media-types/model/vnd.valve.source.compiled-map}"],"xrefs":{"person":["Henrik_Andersson"],"template":["model/vnd.valve.source.compiled-map"]},"registered":true},{"content-type":"model/vnd.vtu","friendly":{"en":"Virtue VTU"},"encoding":"base64","extensions":["vtu"],"references":["IANA","[Boris_Rabinovitch]","{model/vnd.vtu=http://www.iana.org/assignments/media-types/model/vnd.vtu}"],"xrefs":{"person":["Boris_Rabinovitch"],"template":["model/vnd.vtu"]},"registered":true},{"content-type":"model/vrml","friendly":{"en":"Virtual Reality Modeling Language"},"encoding":"base64","extensions":["wrl","vrml"],"references":["IANA","RFC2077"],"xrefs":{"rfc":["rfc2077"]},"registered":true},{"content-type":"model/x3d+binary","encoding":"base64","extensions":["x3db","x3dbz"],"registered":false},{"content-type":"model/x3d+fastinfoset","encoding":"base64","references":["IANA","[Web3D_X3D]","{model/x3d+fastinfoset=http://www.iana.org/assignments/media-types/model/x3d+fastinfoset}"],"xrefs":{"person":["Web3D_X3D"],"template":["model/x3d+fastinfoset"]},"registered":true},{"content-type":"model/x3d+vrml","encoding":"base64","extensions":["x3dv","x3dvz"],"registered":false},{"content-type":"model/x3d+xml","encoding":"base64","extensions":["x3d","x3dz"],"references":["IANA","[Web3D]","[Web3D_X3D]","{model/x3d+xml=http://www.iana.org/assignments/media-types/model/x3d+xml}"],"xrefs":{"person":["Web3D","Web3D_X3D"],"template":["model/x3d+xml"]},"registered":true},{"content-type":"model/x3d-vrml","encoding":"base64","references":["IANA","[Web3D]","[Web3D_X3D]","{model/x3d-vrml=http://www.iana.org/assignments/media-types/model/x3d-vrml}"],"xrefs":{"person":["Web3D","Web3D_X3D"],"template":["model/x3d-vrml"]},"registered":true},{"content-type":"multipart/alternative","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/appledouble","encoding":"8bit","references":["IANA","[Patrik_Faltstrom]","{multipart/appledouble=http://www.iana.org/assignments/media-types/multipart/appledouble}"],"xrefs":{"person":["Patrik_Faltstrom"],"template":["multipart/appledouble"]},"registered":true},{"content-type":"multipart/byteranges","encoding":"base64","references":["IANA","RFC7233","{multipart/byteranges=http://www.iana.org/assignments/media-types/multipart/byteranges}"],"xrefs":{"rfc":["rfc7233"],"template":["multipart/byteranges"]},"registered":true},{"content-type":"multipart/digest","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/encrypted","encoding":"base64","references":["IANA","RFC1847","{multipart/encrypted=http://www.iana.org/assignments/media-types/multipart/encrypted}"],"xrefs":{"rfc":["rfc1847"],"template":["multipart/encrypted"]},"registered":true},{"content-type":"multipart/example","encoding":"base64","references":["IANA","RFC4735","{multipart/example=http://www.iana.org/assignments/media-types/multipart/example}"],"xrefs":{"rfc":["rfc4735"],"template":["multipart/example"]},"registered":true},{"content-type":"multipart/form-data","encoding":"base64","references":["IANA","DRAFT:draft-ietf-appsawg-multipart-form-data-11","{multipart/form-data=http://www.iana.org/assignments/media-types/multipart/form-data}"],"xrefs":{"draft":["RFC-ietf-appsawg-multipart-form-data-11"],"template":["multipart/form-data"]},"registered":true},{"content-type":"multipart/header-set","encoding":"base64","references":["IANA","[Dave_Crocker]","{multipart/header-set=http://www.iana.org/assignments/media-types/multipart/header-set}"],"xrefs":{"person":["Dave_Crocker"],"template":["multipart/header-set"]},"registered":true},{"content-type":"multipart/mixed","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/parallel","encoding":"8bit","references":["IANA","RFC2046","RFC2045"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"multipart/related","encoding":"base64","references":["IANA","RFC2387","{multipart/related=http://www.iana.org/assignments/media-types/multipart/related}"],"xrefs":{"rfc":["rfc2387"],"template":["multipart/related"]},"registered":true},{"content-type":"multipart/report","encoding":"base64","references":["IANA","RFC6522","{multipart/report=http://www.iana.org/assignments/media-types/multipart/report}"],"xrefs":{"rfc":["rfc6522"],"template":["multipart/report"]},"registered":true},{"content-type":"multipart/signed","encoding":"base64","references":["IANA","RFC1847","{multipart/signed=http://www.iana.org/assignments/media-types/multipart/signed}"],"xrefs":{"rfc":["rfc1847"],"template":["multipart/signed"]},"registered":true},{"content-type":"multipart/voice-message","encoding":"base64","references":["IANA","RFC2421","RFC2423","{multipart/voice-message=http://www.iana.org/assignments/media-types/multipart/voice-message}"],"xrefs":{"rfc":["rfc2421","rfc2423"],"template":["multipart/voice-message"]},"registered":true},{"content-type":"multipart/x-gzip","encoding":"base64","registered":false},{"content-type":"multipart/x-mixed-replace","encoding":"base64","references":["IANA","[W3C]","[Robin_Berjon]","{multipart/x-mixed-replace=http://www.iana.org/assignments/media-types/multipart/x-mixed-replace}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["multipart/x-mixed-replace"]},"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","references":["IANA","RFC6015","{text/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/text/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["text/1d-interleaved-parityfec"]},"registered":true},{"content-type":"text/cache-manifest","encoding":"quoted-printable","extensions":["appcache","manifest"],"references":["IANA","[W3C]","[Robin_Berjon]","{text/cache-manifest=http://www.iana.org/assignments/media-types/text/cache-manifest}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["text/cache-manifest"]},"registered":true},{"content-type":"text/calendar","friendly":{"en":"iCalendar"},"encoding":"quoted-printable","extensions":["ics","ifb"],"references":["IANA","RFC5545","{text/calendar=http://www.iana.org/assignments/media-types/text/calendar}"],"xrefs":{"rfc":["rfc5545"],"template":["text/calendar"]},"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"],"references":["IANA","RFC2318","{text/css=http://www.iana.org/assignments/media-types/text/css}"],"xrefs":{"rfc":["rfc2318"],"template":["text/css"]},"registered":true},{"content-type":"text/csv","friendly":{"en":"Comma-Separated Values"},"encoding":"8bit","extensions":["csv"],"references":["IANA","RFC4180","RFC7111","{text/csv=http://www.iana.org/assignments/media-types/text/csv}"],"xrefs":{"rfc":["rfc4180","rfc7111"],"template":["text/csv"]},"registered":true},{"content-type":"text/csv-schema","encoding":"quoted-printable","references":["IANA","[National_Archives_UK]","[David_Underdown]","{text/csv-schema=http://www.iana.org/assignments/media-types/text/csv-schema}"],"xrefs":{"person":["David_Underdown","National_Archives_UK"],"template":["text/csv-schema"]},"registered":true},{"content-type":"text/directory","encoding":"quoted-printable","obsolete":true,"references":["IANA","RFC2425","RFC6350","{text/directory=http://www.iana.org/assignments/media-types/text/directory}"],"xrefs":{"rfc":["rfc2425","rfc6350"],"template":["text/directory"],"notes":["- DEPRECATED by RFC6350"]},"registered":true},{"content-type":"text/dns","encoding":"quoted-printable","references":["IANA","RFC4027","{text/dns=http://www.iana.org/assignments/media-types/text/dns}"],"xrefs":{"rfc":["rfc4027"],"template":["text/dns"]},"registered":true},{"content-type":"text/ecmascript","encoding":"quoted-printable","obsolete":true,"use-instead":"application/ecmascript","references":["IANA","RFC4329","{text/ecmascript=http://www.iana.org/assignments/media-types/text/ecmascript}"],"xrefs":{"rfc":["rfc4329"],"template":["text/ecmascript"],"notes":["- OBSOLETED in favor of application/ecmascript"]},"registered":true},{"content-type":"text/encaprtp","encoding":"quoted-printable","references":["IANA","RFC6849","{text/encaprtp=http://www.iana.org/assignments/media-types/text/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["text/encaprtp"]},"registered":true},{"content-type":"text/enriched","encoding":"quoted-printable","references":["IANA","RFC1896"],"xrefs":{"rfc":["rfc1896"]},"registered":true},{"content-type":"text/example","encoding":"quoted-printable","references":["IANA","RFC4735","{text/example=http://www.iana.org/assignments/media-types/text/example}"],"xrefs":{"rfc":["rfc4735"],"template":["text/example"]},"registered":true},{"content-type":"text/fwdred","encoding":"quoted-printable","references":["IANA","RFC6354","{text/fwdred=http://www.iana.org/assignments/media-types/text/fwdred}"],"xrefs":{"rfc":["rfc6354"],"template":["text/fwdred"]},"registered":true},{"content-type":"text/grammar-ref-list","encoding":"quoted-printable","references":["IANA","RFC6787","{text/grammar-ref-list=http://www.iana.org/assignments/media-types/text/grammar-ref-list}"],"xrefs":{"rfc":["rfc6787"],"template":["text/grammar-ref-list"]},"registered":true},{"content-type":"text/html","friendly":{"en":"HyperText Markup Language (HTML)"},"encoding":"8bit","extensions":["html","htm","htmlx","shtml","htx"],"references":["IANA","[W3C]","[Robin_Berjon]","{text/html=http://www.iana.org/assignments/media-types/text/html}"],"xrefs":{"person":["Robin_Berjon","W3C"],"template":["text/html"]},"registered":true},{"content-type":"text/javascript","encoding":"quoted-printable","extensions":["js"],"obsolete":true,"use-instead":"application/javascript","references":["IANA","RFC4329","{text/javascript=http://www.iana.org/assignments/media-types/text/javascript}"],"xrefs":{"rfc":["rfc4329"],"template":["text/javascript"],"notes":["- OBSOLETED in favor of application/javascript"]},"registered":true},{"content-type":"text/jcr-cnd","encoding":"quoted-printable","references":["IANA","[Peeter_Piegaze]","{text/jcr-cnd=http://www.iana.org/assignments/media-types/text/jcr-cnd}"],"xrefs":{"person":["Peeter_Piegaze"],"template":["text/jcr-cnd"]},"registered":true},{"content-type":"text/markdown","encoding":"quoted-printable","references":["IANA","DRAFT:draft-ietf-appsawg-text-markdown","{text/markdown=http://www.iana.org/assignments/media-types/text/markdown}"],"xrefs":{"draft":["draft-ietf-appsawg-text-markdown"],"template":["text/markdown"],"notes":["(TEMPORARY - registered 2014-11-11, expires 2015-11-11)"]},"registered":true},{"content-type":"text/mizar","encoding":"quoted-printable","references":["IANA","[Jesse_Alama]","{text/mizar=http://www.iana.org/assignments/media-types/text/mizar}"],"xrefs":{"person":["Jesse_Alama"],"template":["text/mizar"]},"registered":true},{"content-type":"text/n3","friendly":{"en":"Notation3"},"encoding":"quoted-printable","extensions":["n3"],"references":["IANA","[W3C]","[Eric_Prudhommeaux]","{text/n3=http://www.iana.org/assignments/media-types/text/n3}"],"xrefs":{"person":["Eric_Prudhommeaux","W3C"],"template":["text/n3"]},"registered":true},{"content-type":"text/parameters","encoding":"quoted-printable","references":["IANA","DRAFT:draft-ietf-mmusic-rfc2326bis-40","{text/parameters=http://www.iana.org/assignments/media-types/text/parameters}"],"xrefs":{"draft":["RFC-ietf-mmusic-rfc2326bis-40"],"template":["text/parameters"]},"registered":true},{"content-type":"text/parityfec","encoding":"quoted-printable","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"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"],"references":["IANA","RFC2046","RFC3676","RFC5147"],"xrefs":{"rfc":["rfc2046","rfc3676","rfc5147"]},"registered":true},{"content-type":"text/provenance-notation","encoding":"quoted-printable","references":["IANA","[W3C]","[Ivan_Herman]","{text/provenance-notation=http://www.iana.org/assignments/media-types/text/provenance-notation}"],"xrefs":{"person":["Ivan_Herman","W3C"],"template":["text/provenance-notation"]},"registered":true},{"content-type":"text/prs.fallenstein.rst","encoding":"quoted-printable","extensions":["rst"],"references":["IANA","[Benja_Fallenstein]","{text/prs.fallenstein.rst=http://www.iana.org/assignments/media-types/text/prs.fallenstein.rst}"],"xrefs":{"person":["Benja_Fallenstein"],"template":["text/prs.fallenstein.rst"]},"registered":true},{"content-type":"text/prs.lines.tag","friendly":{"en":"PRS Lines Tag"},"encoding":"quoted-printable","extensions":["dsc"],"references":["IANA","[John_Lines]","{text/prs.lines.tag=http://www.iana.org/assignments/media-types/text/prs.lines.tag}"],"xrefs":{"person":["John_Lines"],"template":["text/prs.lines.tag"]},"registered":true},{"content-type":"text/raptorfec","encoding":"quoted-printable","references":["IANA","RFC6682","{text/raptorfec=http://www.iana.org/assignments/media-types/text/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["text/raptorfec"]},"registered":true},{"content-type":"text/RED","encoding":"quoted-printable","references":["IANA","RFC4102","{text/RED=http://www.iana.org/assignments/media-types/text/RED}"],"xrefs":{"rfc":["rfc4102"],"template":["text/RED"]},"registered":true},{"content-type":"text/rfc822-headers","encoding":"quoted-printable","references":["IANA","RFC6522","{text/rfc822-headers=http://www.iana.org/assignments/media-types/text/rfc822-headers}"],"xrefs":{"rfc":["rfc6522"],"template":["text/rfc822-headers"]},"registered":true},{"content-type":"text/richtext","friendly":{"en":"Rich Text Format (RTF)"},"encoding":"8bit","extensions":["rtx"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"text/rtf","encoding":"8bit","extensions":["rtf"],"references":["IANA","[Paul_Lindner]","{text/rtf=http://www.iana.org/assignments/media-types/text/rtf}"],"xrefs":{"person":["Paul_Lindner"],"template":["text/rtf"]},"registered":true},{"content-type":"text/rtp-enc-aescm128","encoding":"quoted-printable","references":["IANA","[ThreeGPP]","{text/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/text/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["text/rtp-enc-aescm128"]},"registered":true},{"content-type":"text/rtploopback","encoding":"quoted-printable","references":["IANA","RFC6849","{text/rtploopback=http://www.iana.org/assignments/media-types/text/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["text/rtploopback"]},"registered":true},{"content-type":"text/rtx","encoding":"quoted-printable","references":["IANA","RFC4588","{text/rtx=http://www.iana.org/assignments/media-types/text/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["text/rtx"]},"registered":true},{"content-type":"text/sgml","friendly":{"en":"Standard Generalized Markup Language (SGML)"},"encoding":"quoted-printable","extensions":["sgml","sgm"],"references":["IANA","RFC1874","{text/SGML=http://www.iana.org/assignments/media-types/text/SGML}"],"xrefs":{"rfc":["rfc1874"],"template":["text/SGML"]},"registered":true},{"content-type":"text/t140","encoding":"quoted-printable","references":["IANA","RFC4103","{text/t140=http://www.iana.org/assignments/media-types/text/t140}"],"xrefs":{"rfc":["rfc4103"],"template":["text/t140"]},"registered":true},{"content-type":"text/tab-separated-values","friendly":{"en":"Tab Separated Values"},"encoding":"quoted-printable","extensions":["tsv"],"references":["IANA","[Paul_Lindner]","{text/tab-separated-values=http://www.iana.org/assignments/media-types/text/tab-separated-values}"],"xrefs":{"person":["Paul_Lindner"],"template":["text/tab-separated-values"]},"registered":true},{"content-type":"text/troff","friendly":{"en":"troff"},"encoding":"8bit","extensions":["t","tr","roff","troff","man","me","ms"],"references":["IANA","RFC4263","{text/troff=http://www.iana.org/assignments/media-types/text/troff}"],"xrefs":{"rfc":["rfc4263"],"template":["text/troff"]},"registered":true},{"content-type":"text/turtle","friendly":{"en":"Turtle (Terse RDF Triple Language)"},"encoding":"quoted-printable","extensions":["ttl"],"references":["IANA","[W3C]","[Eric_Prudhommeaux]","{text/turtle=http://www.iana.org/assignments/media-types/text/turtle}"],"xrefs":{"person":["Eric_Prudhommeaux","W3C"],"template":["text/turtle"]},"registered":true},{"content-type":"text/ulpfec","encoding":"quoted-printable","references":["IANA","RFC5109","{text/ulpfec=http://www.iana.org/assignments/media-types/text/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["text/ulpfec"]},"registered":true},{"content-type":"text/uri-list","friendly":{"en":"URI Resolution Services"},"encoding":"quoted-printable","extensions":["uri","uris","urls"],"references":["IANA","RFC2483","{text/uri-list=http://www.iana.org/assignments/media-types/text/uri-list}"],"xrefs":{"rfc":["rfc2483"],"template":["text/uri-list"]},"registered":true},{"content-type":"text/vcard","encoding":"quoted-printable","extensions":["vcard"],"references":["IANA","RFC6350","{text/vcard=http://www.iana.org/assignments/media-types/text/vcard}"],"xrefs":{"rfc":["rfc6350"],"template":["text/vcard"]},"registered":true,"signature":true},{"content-type":"text/vnd.a","encoding":"quoted-printable","references":["IANA","[Regis_Dehoux]","{text/vnd-a=http://www.iana.org/assignments/media-types/text/vnd-a}"],"xrefs":{"person":["Regis_Dehoux"],"template":["text/vnd-a"]},"registered":true},{"content-type":"text/vnd.abc","encoding":"quoted-printable","references":["IANA","[Steve_Allen]","{text/vnd.abc=http://www.iana.org/assignments/media-types/text/vnd.abc}"],"xrefs":{"person":["Steve_Allen"],"template":["text/vnd.abc"]},"registered":true},{"content-type":"text/vnd.curl","friendly":{"en":"Curl - Applet"},"encoding":"quoted-printable","extensions":["curl"],"references":["IANA","[Robert_Byrnes]","{text/vnd-curl=http://www.iana.org/assignments/media-types/text/vnd-curl}"],"xrefs":{"person":["Robert_Byrnes"],"template":["text/vnd-curl"]},"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","references":["IANA","[Charles_Plessy]","{text/vnd.debian.copyright=http://www.iana.org/assignments/media-types/text/vnd.debian.copyright}"],"xrefs":{"person":["Charles_Plessy"],"template":["text/vnd.debian.copyright"]},"registered":true},{"content-type":"text/vnd.DMClientScript","encoding":"quoted-printable","references":["IANA","[Dan_Bradley]","{text/vnd.DMClientScript=http://www.iana.org/assignments/media-types/text/vnd.DMClientScript}"],"xrefs":{"person":["Dan_Bradley"],"template":["text/vnd.DMClientScript"]},"registered":true},{"content-type":"text/vnd.dvb.subtitle","encoding":"quoted-printable","extensions":["sub"],"references":["IANA","[Peter_Siebert]","[Michael_Lagally]","{text/vnd.dvb.subtitle=http://www.iana.org/assignments/media-types/text/vnd.dvb.subtitle}"],"xrefs":{"person":["Michael_Lagally","Peter_Siebert"],"template":["text/vnd.dvb.subtitle"]},"registered":true},{"content-type":"text/vnd.esmertec.theme-descriptor","encoding":"quoted-printable","references":["IANA","[Stefan_Eilemann]","{text/vnd.esmertec.theme-descriptor=http://www.iana.org/assignments/media-types/text/vnd.esmertec.theme-descriptor}"],"xrefs":{"person":["Stefan_Eilemann"],"template":["text/vnd.esmertec.theme-descriptor"]},"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"],"references":["IANA","[John-Mark_Gurney]","{text/vnd.fly=http://www.iana.org/assignments/media-types/text/vnd.fly}"],"xrefs":{"person":["John-Mark_Gurney"],"template":["text/vnd.fly"]},"registered":true},{"content-type":"text/vnd.fmi.flexstor","friendly":{"en":"FLEXSTOR"},"encoding":"quoted-printable","extensions":["flx"],"references":["IANA","[Kari_E._Hurtta]","{text/vnd.fmi.flexstor=http://www.iana.org/assignments/media-types/text/vnd.fmi.flexstor}"],"xrefs":{"person":["Kari_E._Hurtta"],"template":["text/vnd.fmi.flexstor"]},"registered":true},{"content-type":"text/vnd.graphviz","friendly":{"en":"Graphviz"},"encoding":"quoted-printable","extensions":["gv"],"references":["IANA","[John_Ellson]","{text/vnd.graphviz=http://www.iana.org/assignments/media-types/text/vnd.graphviz}"],"xrefs":{"person":["John_Ellson"],"template":["text/vnd.graphviz"]},"registered":true},{"content-type":"text/vnd.in3d.3dml","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["3dml"],"references":["IANA","[Michael_Powers]","{text/vnd.in3d.3dml=http://www.iana.org/assignments/media-types/text/vnd.in3d.3dml}"],"xrefs":{"person":["Michael_Powers"],"template":["text/vnd.in3d.3dml"]},"registered":true},{"content-type":"text/vnd.in3d.spot","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["spot"],"references":["IANA","[Michael_Powers]","{text/vnd.in3d.spot=http://www.iana.org/assignments/media-types/text/vnd.in3d.spot}"],"xrefs":{"person":["Michael_Powers"],"template":["text/vnd.in3d.spot"]},"registered":true},{"content-type":"text/vnd.IPTC.NewsML","encoding":"quoted-printable","references":["IANA","[IPTC]","{text/vnd.IPTC.NewsML=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NewsML}"],"xrefs":{"person":["IPTC"],"template":["text/vnd.IPTC.NewsML"]},"registered":true},{"content-type":"text/vnd.IPTC.NITF","encoding":"quoted-printable","references":["IANA","[IPTC]","{text/vnd.IPTC.NITF=http://www.iana.org/assignments/media-types/text/vnd.IPTC.NITF}"],"xrefs":{"person":["IPTC"],"template":["text/vnd.IPTC.NITF"]},"registered":true},{"content-type":"text/vnd.latex-z","encoding":"quoted-printable","references":["IANA","[Mikusiak_Lubos]","{text/vnd.latex-z=http://www.iana.org/assignments/media-types/text/vnd.latex-z}"],"xrefs":{"person":["Mikusiak_Lubos"],"template":["text/vnd.latex-z"]},"registered":true},{"content-type":"text/vnd.motorola.reflex","encoding":"quoted-printable","references":["IANA","[Mark_Patton]","{text/vnd.motorola.reflex=http://www.iana.org/assignments/media-types/text/vnd.motorola.reflex}"],"xrefs":{"person":["Mark_Patton"],"template":["text/vnd.motorola.reflex"]},"registered":true},{"content-type":"text/vnd.ms-mediapackage","encoding":"quoted-printable","references":["IANA","[Jan_Nelson]","{text/vnd.ms-mediapackage=http://www.iana.org/assignments/media-types/text/vnd.ms-mediapackage}"],"xrefs":{"person":["Jan_Nelson"],"template":["text/vnd.ms-mediapackage"]},"registered":true},{"content-type":"text/vnd.net2phone.commcenter.command","encoding":"quoted-printable","extensions":["ccc"],"references":["IANA","[Feiyu_Xie]","{text/vnd.net2phone.commcenter.command=http://www.iana.org/assignments/media-types/text/vnd.net2phone.commcenter.command}"],"xrefs":{"person":["Feiyu_Xie"],"template":["text/vnd.net2phone.commcenter.command"]},"registered":true},{"content-type":"text/vnd.radisys.msml-basic-layout","encoding":"quoted-printable","references":["IANA","RFC5707","{text/vnd.radisys.msml-basic-layout=http://www.iana.org/assignments/media-types/text/vnd.radisys.msml-basic-layout}"],"xrefs":{"rfc":["rfc5707"],"template":["text/vnd.radisys.msml-basic-layout"]},"registered":true},{"content-type":"text/vnd.si.uricatalogue","encoding":"quoted-printable","obsolete":true,"references":["IANA","[Nicholas_Parks_Young]","{text/vnd.si.uricatalogue=http://www.iana.org/assignments/media-types/text/vnd.si.uricatalogue}"],"xrefs":{"person":["Nicholas_Parks_Young"],"template":["text/vnd.si.uricatalogue"],"notes":["- OBSOLETED by request"]},"registered":true},{"content-type":"text/vnd.sun.j2me.app-descriptor","friendly":{"en":"J2ME App Descriptor"},"encoding":"8bit","extensions":["jad"],"references":["IANA","[Gary_Adams]","{text/vnd.sun.j2me.app-descriptor=http://www.iana.org/assignments/media-types/text/vnd.sun.j2me.app-descriptor}"],"xrefs":{"person":["Gary_Adams"],"template":["text/vnd.sun.j2me.app-descriptor"]},"registered":true},{"content-type":"text/vnd.trolltech.linguist","encoding":"quoted-printable","references":["IANA","[David_Lee_Lambert]","{text/vnd.trolltech.linguist=http://www.iana.org/assignments/media-types/text/vnd.trolltech.linguist}"],"xrefs":{"person":["David_Lee_Lambert"],"template":["text/vnd.trolltech.linguist"]},"registered":true},{"content-type":"text/vnd.wap.si","encoding":"quoted-printable","extensions":["si"],"references":["IANA","[WAP-Forum]","{text/vnd.wap.si=http://www.iana.org/assignments/media-types/text/vnd.wap.si}"],"xrefs":{"person":["WAP-Forum"],"template":["text/vnd.wap.si"]},"registered":true},{"content-type":"text/vnd.wap.sl","encoding":"quoted-printable","extensions":["sl"],"references":["IANA","[WAP-Forum]","{text/vnd.wap.sl=http://www.iana.org/assignments/media-types/text/vnd.wap.sl}"],"xrefs":{"person":["WAP-Forum"],"template":["text/vnd.wap.sl"]},"registered":true},{"content-type":"text/vnd.wap.wml","friendly":{"en":"Wireless Markup Language (WML)"},"encoding":"quoted-printable","extensions":["wml"],"references":["IANA","[Peter_Stark]","{text/vnd.wap-wml=http://www.iana.org/assignments/media-types/text/vnd.wap-wml}"],"xrefs":{"person":["Peter_Stark"],"template":["text/vnd.wap-wml"]},"registered":true},{"content-type":"text/vnd.wap.wmlscript","friendly":{"en":"Wireless Markup Language Script (WMLScript)"},"encoding":"quoted-printable","extensions":["wmls"],"references":["IANA","[Peter_Stark]","{text/vnd.wap.wmlscript=http://www.iana.org/assignments/media-types/text/vnd.wap.wmlscript}"],"xrefs":{"person":["Peter_Stark"],"template":["text/vnd.wap.wmlscript"]},"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"],"references":["IANA","RFC7303","{text/xml=http://www.iana.org/assignments/media-types/text/xml}"],"xrefs":{"rfc":["rfc7303"],"template":["text/xml"]},"registered":true},{"content-type":"text/xml-external-parsed-entity","encoding":"quoted-printable","references":["IANA","RFC7303","{text/xml-external-parsed-entity=http://www.iana.org/assignments/media-types/text/xml-external-parsed-entity}"],"xrefs":{"rfc":["rfc7303"],"template":["text/xml-external-parsed-entity"]},"registered":true},{"content-type":"video/1d-interleaved-parityfec","encoding":"base64","references":["IANA","RFC6015","{video/1d-interleaved-parityfec=http://www.iana.org/assignments/media-types/video/1d-interleaved-parityfec}"],"xrefs":{"rfc":["rfc6015"],"template":["video/1d-interleaved-parityfec"]},"registered":true},{"content-type":"video/3gpp","friendly":{"en":"3GP"},"encoding":"base64","extensions":["3gp","3gpp"],"references":["IANA","RFC3839","RFC6381","{video/3gpp=http://www.iana.org/assignments/media-types/video/3gpp}"],"xrefs":{"rfc":["rfc3839","rfc6381"],"template":["video/3gpp"]},"registered":true},{"content-type":"video/3gpp-tt","encoding":"base64","references":["IANA","RFC4396","{video/3gpp-tt=http://www.iana.org/assignments/media-types/video/3gpp-tt}"],"xrefs":{"rfc":["rfc4396"],"template":["video/3gpp-tt"]},"registered":true},{"content-type":"video/3gpp2","friendly":{"en":"3GP2"},"encoding":"base64","extensions":["3g2","3gpp2"],"references":["IANA","RFC4393","RFC6381","{video/3gpp2=http://www.iana.org/assignments/media-types/video/3gpp2}"],"xrefs":{"rfc":["rfc4393","rfc6381"],"template":["video/3gpp2"]},"registered":true},{"content-type":"video/BMPEG","encoding":"base64","references":["IANA","RFC3555","{video/BMPEG=http://www.iana.org/assignments/media-types/video/BMPEG}"],"xrefs":{"rfc":["rfc3555"],"template":["video/BMPEG"]},"registered":true},{"content-type":"video/BT656","encoding":"base64","references":["IANA","RFC3555","{video/BT656=http://www.iana.org/assignments/media-types/video/BT656}"],"xrefs":{"rfc":["rfc3555"],"template":["video/BT656"]},"registered":true},{"content-type":"video/CelB","encoding":"base64","references":["IANA","RFC3555","{video/CelB=http://www.iana.org/assignments/media-types/video/CelB}"],"xrefs":{"rfc":["rfc3555"],"template":["video/CelB"]},"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"],"references":["IANA","RFC6469","{video/DV=http://www.iana.org/assignments/media-types/video/DV}"],"xrefs":{"rfc":["rfc6469"],"template":["video/DV"]},"registered":true},{"content-type":"video/encaprtp","encoding":"base64","references":["IANA","RFC6849","{video/encaprtp=http://www.iana.org/assignments/media-types/video/encaprtp}"],"xrefs":{"rfc":["rfc6849"],"template":["video/encaprtp"]},"registered":true},{"content-type":"video/example","encoding":"base64","references":["IANA","RFC4735","{video/example=http://www.iana.org/assignments/media-types/video/example}"],"xrefs":{"rfc":["rfc4735"],"template":["video/example"]},"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"],"references":["IANA","RFC4587","{video/H261=http://www.iana.org/assignments/media-types/video/H261}"],"xrefs":{"rfc":["rfc4587"],"template":["video/H261"]},"registered":true},{"content-type":"video/H263","friendly":{"en":"H.263"},"encoding":"base64","extensions":["h263"],"references":["IANA","RFC3555","{video/H263=http://www.iana.org/assignments/media-types/video/H263}"],"xrefs":{"rfc":["rfc3555"],"template":["video/H263"]},"registered":true},{"content-type":"video/H263-1998","encoding":"base64","references":["IANA","RFC4629","{video/H263-1998=http://www.iana.org/assignments/media-types/video/H263-1998}"],"xrefs":{"rfc":["rfc4629"],"template":["video/H263-1998"]},"registered":true},{"content-type":"video/H263-2000","encoding":"base64","references":["IANA","RFC4629","{video/H263-2000=http://www.iana.org/assignments/media-types/video/H263-2000}"],"xrefs":{"rfc":["rfc4629"],"template":["video/H263-2000"]},"registered":true},{"content-type":"video/H264","friendly":{"en":"H.264"},"encoding":"base64","extensions":["h264"],"references":["IANA","RFC6184","{video/H264=http://www.iana.org/assignments/media-types/video/H264}"],"xrefs":{"rfc":["rfc6184"],"template":["video/H264"]},"registered":true},{"content-type":"video/H264-RCDO","encoding":"base64","references":["IANA","RFC6185","{video/H264-RCDO=http://www.iana.org/assignments/media-types/video/H264-RCDO}"],"xrefs":{"rfc":["rfc6185"],"template":["video/H264-RCDO"]},"registered":true},{"content-type":"video/H264-SVC","encoding":"base64","references":["IANA","RFC6190","{video/H264-SVC=http://www.iana.org/assignments/media-types/video/H264-SVC}"],"xrefs":{"rfc":["rfc6190"],"template":["video/H264-SVC"]},"registered":true},{"content-type":"video/iso.segment","encoding":"base64","references":["IANA","[David_Singer]","[ISO-IEC_JTC1]","{video/iso.segment=http://www.iana.org/assignments/media-types/video/iso.segment}"],"xrefs":{"person":["David_Singer","ISO-IEC_JTC1"],"template":["video/iso.segment"]},"registered":true},{"content-type":"video/JPEG","friendly":{"en":"JPGVideo"},"encoding":"base64","extensions":["jpgv"],"references":["IANA","RFC3555","{video/JPEG=http://www.iana.org/assignments/media-types/video/JPEG}"],"xrefs":{"rfc":["rfc3555"],"template":["video/JPEG"]},"registered":true},{"content-type":"video/jpeg2000","encoding":"base64","references":["IANA","RFC5371","RFC5372","{video/jpeg2000=http://www.iana.org/assignments/media-types/video/jpeg2000}"],"xrefs":{"rfc":["rfc5371","rfc5372"],"template":["video/jpeg2000"]},"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"],"references":["IANA","RFC3745","{video/mj2=http://www.iana.org/assignments/media-types/video/mj2}"],"xrefs":{"rfc":["rfc3745"],"template":["video/mj2"]},"registered":true},{"content-type":"video/MP1S","encoding":"base64","references":["IANA","RFC3555","{video/MP1S=http://www.iana.org/assignments/media-types/video/MP1S}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP1S"]},"registered":true},{"content-type":"video/MP2P","encoding":"base64","references":["IANA","RFC3555","{video/MP2P=http://www.iana.org/assignments/media-types/video/MP2P}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP2P"]},"registered":true},{"content-type":"video/MP2T","encoding":"base64","extensions":["ts"],"references":["IANA","RFC3555","{video/MP2T=http://www.iana.org/assignments/media-types/video/MP2T}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MP2T"]},"registered":true},{"content-type":"video/mp4","friendly":{"en":"MPEG-4 Video"},"encoding":"base64","extensions":["mp4","mpg4","f4v","f4p","mp4v"],"references":["IANA","RFC4337","RFC6381","{video/mp4=http://www.iana.org/assignments/media-types/video/mp4}"],"xrefs":{"rfc":["rfc4337","rfc6381"],"template":["video/mp4"]},"registered":true},{"content-type":"video/MP4V-ES","encoding":"base64","references":["IANA","RFC6416","{video/MP4V-ES=http://www.iana.org/assignments/media-types/video/MP4V-ES}"],"xrefs":{"rfc":["rfc6416"],"template":["video/MP4V-ES"]},"registered":true},{"content-type":"video/mpeg","friendly":{"en":"MPEG Video"},"encoding":"base64","extensions":["mp2","mp3g","mpe","mpeg","mpg","m1v","m2v"],"references":["IANA","RFC2045","RFC2046"],"xrefs":{"rfc":["rfc2045","rfc2046"]},"registered":true},{"content-type":"video/mpeg4-generic","encoding":"base64","references":["IANA","RFC3640","{video/mpeg4-generic=http://www.iana.org/assignments/media-types/video/mpeg4-generic}"],"xrefs":{"rfc":["rfc3640"],"template":["video/mpeg4-generic"]},"registered":true},{"content-type":"video/MPV","encoding":"base64","references":["IANA","RFC3555","{video/MPV=http://www.iana.org/assignments/media-types/video/MPV}"],"xrefs":{"rfc":["rfc3555"],"template":["video/MPV"]},"registered":true},{"content-type":"video/nv","encoding":"base64","references":["IANA","RFC4856","{video/nv=http://www.iana.org/assignments/media-types/video/nv}"],"xrefs":{"rfc":["rfc4856"],"template":["video/nv"]},"registered":true},{"content-type":"video/ogg","friendly":{"en":"Ogg Video"},"encoding":"base64","extensions":["ogg","ogv"],"references":["IANA","RFC5334","{video/ogg=http://www.iana.org/assignments/media-types/video/ogg}"],"xrefs":{"rfc":["rfc5334"],"template":["video/ogg"]},"registered":true},{"content-type":"video/parityfec","encoding":"base64","references":["IANA","RFC5109"],"xrefs":{"rfc":["rfc5109"]},"registered":true},{"content-type":"video/pointer","encoding":"base64","references":["IANA","RFC2862","{video/pointer=http://www.iana.org/assignments/media-types/video/pointer}"],"xrefs":{"rfc":["rfc2862"],"template":["video/pointer"]},"registered":true},{"content-type":"video/quicktime","friendly":{"en":"Quicktime Video"},"encoding":"base64","extensions":["qt","mov"],"references":["IANA","RFC6381","[Paul_Lindner]","{video/quicktime=http://www.iana.org/assignments/media-types/video/quicktime}"],"xrefs":{"rfc":["rfc6381"],"person":["Paul_Lindner"],"template":["video/quicktime"]},"registered":true},{"content-type":"video/raptorfec","encoding":"base64","references":["IANA","RFC6682","{video/raptorfec=http://www.iana.org/assignments/media-types/video/raptorfec}"],"xrefs":{"rfc":["rfc6682"],"template":["video/raptorfec"]},"registered":true},{"content-type":"video/raw","encoding":"base64","references":["IANA","RFC4175"],"xrefs":{"rfc":["rfc4175"]},"registered":true},{"content-type":"video/rtp-enc-aescm128","encoding":"base64","references":["IANA","[ThreeGPP]","{video/rtp-enc-aescm128=http://www.iana.org/assignments/media-types/video/rtp-enc-aescm128}"],"xrefs":{"person":["ThreeGPP"],"template":["video/rtp-enc-aescm128"]},"registered":true},{"content-type":"video/rtploopback","encoding":"base64","references":["IANA","RFC6849","{video/rtploopback=http://www.iana.org/assignments/media-types/video/rtploopback}"],"xrefs":{"rfc":["rfc6849"],"template":["video/rtploopback"]},"registered":true},{"content-type":"video/rtx","encoding":"base64","references":["IANA","RFC4588","{video/rtx=http://www.iana.org/assignments/media-types/video/rtx}"],"xrefs":{"rfc":["rfc4588"],"template":["video/rtx"]},"registered":true},{"content-type":"video/SMPTE292M","encoding":"base64","references":["IANA","RFC3497","{video/SMPTE292M=http://www.iana.org/assignments/media-types/video/SMPTE292M}"],"xrefs":{"rfc":["rfc3497"],"template":["video/SMPTE292M"]},"registered":true},{"content-type":"video/ulpfec","encoding":"base64","references":["IANA","RFC5109","{video/ulpfec=http://www.iana.org/assignments/media-types/video/ulpfec}"],"xrefs":{"rfc":["rfc5109"],"template":["video/ulpfec"]},"registered":true},{"content-type":"video/vc1","encoding":"base64","references":["IANA","RFC4425","{video/vc1=http://www.iana.org/assignments/media-types/video/vc1}"],"xrefs":{"rfc":["rfc4425"],"template":["video/vc1"]},"registered":true},{"content-type":"video/vnd.CCTV","encoding":"base64","references":["IANA","[Frank_Rottmann]","{video/vnd.CCTV=http://www.iana.org/assignments/media-types/video/vnd.CCTV}"],"xrefs":{"person":["Frank_Rottmann"],"template":["video/vnd.CCTV"]},"registered":true},{"content-type":"video/vnd.dece.hd","friendly":{"en":"DECE High Definition Video"},"encoding":"base64","extensions":["uvh","uvvh"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.hd=http://www.iana.org/assignments/media-types/video/vnd.dece.hd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.hd"]},"registered":true},{"content-type":"video/vnd.dece.mobile","friendly":{"en":"DECE Mobile Video"},"encoding":"base64","extensions":["uvm","uvvm"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.mobile=http://www.iana.org/assignments/media-types/video/vnd.dece.mobile}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.mobile"]},"registered":true},{"content-type":"video/vnd.dece.mp4","encoding":"base64","references":["IANA","[Michael_A_Dolan]","{video/vnd.dece-mp4=http://www.iana.org/assignments/media-types/video/vnd.dece-mp4}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece-mp4"]},"registered":true},{"content-type":"video/vnd.dece.pd","friendly":{"en":"DECE PD Video"},"encoding":"base64","extensions":["uvp","uvvp"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.pd=http://www.iana.org/assignments/media-types/video/vnd.dece.pd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.pd"]},"registered":true},{"content-type":"video/vnd.dece.sd","friendly":{"en":"DECE SD Video"},"encoding":"base64","extensions":["uvs","uvvs"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.sd=http://www.iana.org/assignments/media-types/video/vnd.dece.sd}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.sd"]},"registered":true},{"content-type":"video/vnd.dece.video","friendly":{"en":"DECE Video"},"encoding":"base64","extensions":["uvv","uvvv"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.dece.video=http://www.iana.org/assignments/media-types/video/vnd.dece.video}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.dece.video"]},"registered":true},{"content-type":"video/vnd.directv.mpeg","encoding":"base64","references":["IANA","[Nathan_Zerbe]","{video/vnd.directv-mpeg=http://www.iana.org/assignments/media-types/video/vnd.directv-mpeg}"],"xrefs":{"person":["Nathan_Zerbe"],"template":["video/vnd.directv-mpeg"]},"registered":true},{"content-type":"video/vnd.directv.mpeg-tts","encoding":"base64","references":["IANA","[Nathan_Zerbe]","{video/vnd.directv.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.directv.mpeg-tts}"],"xrefs":{"person":["Nathan_Zerbe"],"template":["video/vnd.directv.mpeg-tts"]},"registered":true},{"content-type":"video/vnd.dlna.mpeg-tts","encoding":"base64","references":["IANA","[Edwin_Heredia]","{video/vnd.dlna.mpeg-tts=http://www.iana.org/assignments/media-types/video/vnd.dlna.mpeg-tts}"],"xrefs":{"person":["Edwin_Heredia"],"template":["video/vnd.dlna.mpeg-tts"]},"registered":true},{"content-type":"video/vnd.dvb.file","encoding":"base64","extensions":["dvb"],"references":["IANA","[Peter_Siebert]","[Kevin_Murray]","{video/vnd.dvb.file=http://www.iana.org/assignments/media-types/video/vnd.dvb.file}"],"xrefs":{"person":["Kevin_Murray","Peter_Siebert"],"template":["video/vnd.dvb.file"]},"registered":true},{"content-type":"video/vnd.fvt","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fvt"],"references":["IANA","[Arild_Fuldseth]","{video/vnd.fvt=http://www.iana.org/assignments/media-types/video/vnd.fvt}"],"xrefs":{"person":["Arild_Fuldseth"],"template":["video/vnd.fvt"]},"registered":true},{"content-type":"video/vnd.hns.video","encoding":"base64","references":["IANA","[Swaminathan]","{video/vnd.hns.video=http://www.iana.org/assignments/media-types/video/vnd.hns.video}"],"xrefs":{"person":["Swaminathan"],"template":["video/vnd.hns.video"]},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-1010","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.1dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-1010}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.1dparityfec-1010"]},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-2005","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.1dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.1dparityfec-2005}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.1dparityfec-2005"]},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-1010","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.2dparityfec-1010=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-1010}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.2dparityfec-1010"]},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-2005","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.2dparityfec-2005=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.2dparityfec-2005}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.2dparityfec-2005"]},"registered":true},{"content-type":"video/vnd.iptvforum.ttsavc","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.ttsavc=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsavc}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.ttsavc"]},"registered":true},{"content-type":"video/vnd.iptvforum.ttsmpeg2","encoding":"base64","references":["IANA","[Shuji_Nakamura]","{video/vnd.iptvforum.ttsmpeg2=http://www.iana.org/assignments/media-types/video/vnd.iptvforum.ttsmpeg2}"],"xrefs":{"person":["Shuji_Nakamura"],"template":["video/vnd.iptvforum.ttsmpeg2"]},"registered":true},{"content-type":"video/vnd.motorola.video","encoding":"base64","references":["IANA","[Tom_McGinty]","{video/vnd.motorola.video=http://www.iana.org/assignments/media-types/video/vnd.motorola.video}"],"xrefs":{"person":["Tom_McGinty"],"template":["video/vnd.motorola.video"]},"registered":true},{"content-type":"video/vnd.motorola.videop","encoding":"base64","references":["IANA","[Tom_McGinty]","{video/vnd.motorola.videop=http://www.iana.org/assignments/media-types/video/vnd.motorola.videop}"],"xrefs":{"person":["Tom_McGinty"],"template":["video/vnd.motorola.videop"]},"registered":true},{"content-type":"video/vnd.mpegurl","friendly":{"en":"MPEG Url"},"encoding":"8bit","extensions":["mxu","m4u"],"references":["IANA","[Heiko_Recktenwald]","{video/vnd-mpegurl=http://www.iana.org/assignments/media-types/video/vnd-mpegurl}"],"xrefs":{"person":["Heiko_Recktenwald"],"template":["video/vnd-mpegurl"]},"registered":true},{"content-type":"video/vnd.ms-playready.media.pyv","friendly":{"en":"Microsoft PlayReady Ecosystem Video"},"encoding":"base64","extensions":["pyv"],"references":["IANA","[Steve_DiAcetis]","{video/vnd.ms-playready.media.pyv=http://www.iana.org/assignments/media-types/video/vnd.ms-playready.media.pyv}"],"xrefs":{"person":["Steve_DiAcetis"],"template":["video/vnd.ms-playready.media.pyv"]},"registered":true},{"content-type":"video/vnd.nokia.interleaved-multimedia","encoding":"base64","extensions":["nim"],"references":["IANA","[Petteri_Kangaslampi]","{video/vnd.nokia.interleaved-multimedia=http://www.iana.org/assignments/media-types/video/vnd.nokia.interleaved-multimedia}"],"xrefs":{"person":["Petteri_Kangaslampi"],"template":["video/vnd.nokia.interleaved-multimedia"]},"registered":true},{"content-type":"video/vnd.nokia.videovoip","encoding":"base64","references":["IANA","[Nokia]","{video/vnd.nokia.videovoip=http://www.iana.org/assignments/media-types/video/vnd.nokia.videovoip}"],"xrefs":{"person":["Nokia"],"template":["video/vnd.nokia.videovoip"]},"registered":true},{"content-type":"video/vnd.objectvideo","encoding":"base64","extensions":["mp4","m4v"],"references":["IANA","[John_Clark]","{video/vnd.objectvideo=http://www.iana.org/assignments/media-types/video/vnd.objectvideo}"],"xrefs":{"person":["John_Clark"],"template":["video/vnd.objectvideo"]},"registered":true},{"content-type":"video/vnd.radgamettools.bink","encoding":"base64","references":["IANA","[Henrik_Andersson]","{video/vnd.radgamettools.bink=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.bink}"],"xrefs":{"person":["Henrik_Andersson"],"template":["video/vnd.radgamettools.bink"]},"registered":true},{"content-type":"video/vnd.radgamettools.smacker","encoding":"base64","references":["IANA","[Henrik_Andersson]","{video/vnd.radgamettools.smacker=http://www.iana.org/assignments/media-types/video/vnd.radgamettools.smacker}"],"xrefs":{"person":["Henrik_Andersson"],"template":["video/vnd.radgamettools.smacker"]},"registered":true},{"content-type":"video/vnd.sealed.mpeg1","encoding":"base64","extensions":["s11"],"references":["IANA","[David_Petersen]","{video/vnd.sealed.mpeg1=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg1}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed.mpeg1"]},"registered":true},{"content-type":"video/vnd.sealed.mpeg4","encoding":"base64","extensions":["smpg","s14"],"references":["IANA","[David_Petersen]","{video/vnd.sealed.mpeg4=http://www.iana.org/assignments/media-types/video/vnd.sealed.mpeg4}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed.mpeg4"]},"registered":true},{"content-type":"video/vnd.sealed.swf","encoding":"base64","extensions":["sswf","ssw"],"references":["IANA","[David_Petersen]","{video/vnd.sealed-swf=http://www.iana.org/assignments/media-types/video/vnd.sealed-swf}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealed-swf"]},"registered":true},{"content-type":"video/vnd.sealedmedia.softseal.mov","encoding":"base64","extensions":["smov","smo","s1q"],"references":["IANA","[David_Petersen]","{video/vnd.sealedmedia.softseal-mov=http://www.iana.org/assignments/media-types/video/vnd.sealedmedia.softseal-mov}"],"xrefs":{"person":["David_Petersen"],"template":["video/vnd.sealedmedia.softseal-mov"]},"registered":true},{"content-type":"video/vnd.uvvu.mp4","friendly":{"en":"DECE MP4"},"encoding":"base64","extensions":["uvu","uvvu"],"references":["IANA","[Michael_A_Dolan]","{video/vnd.uvvu-mp4=http://www.iana.org/assignments/media-types/video/vnd.uvvu-mp4}"],"xrefs":{"person":["Michael_A_Dolan"],"template":["video/vnd.uvvu-mp4"]},"registered":true},{"content-type":"video/vnd.vivo","friendly":{"en":"Vivo"},"encoding":"base64","extensions":["viv","vivo"],"references":["IANA","[John_Wolfe]","{video/vnd-vivo=http://www.iana.org/assignments/media-types/video/vnd-vivo}"],"xrefs":{"person":["John_Wolfe"],"template":["video/vnd-vivo"]},"registered":true},{"content-type":"video/webm","friendly":{"en":"Open Web Media Project - Video"},"encoding":"base64","extensions":["webm"],"references":["{WebM=http://www.webmproject.org/code/specs/container/}"],"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}]
diff --git a/data/mime.content_type.column b/data/mime.content_type.column
index fae0814..0958fda 100644
--- a/data/mime.content_type.column
+++ b/data/mime.content_type.column
@@ -1,239 +1,239 @@
-application/1d-interleaved-parityfec
-application/3gpdash-qoe-report+xml
-application/3gpp-ims+xml
-application/A2L
-application/acad
+application/1d-interleaved-parityfec
+application/3gpdash-qoe-report+xml
+application/3gpp-ims+xml
+application/A2L
+application/acad
application/access mdf mda mdb mde
-application/activemessage
-application/alto-costmap+json
-application/alto-costmapfilter+json
-application/alto-directory+json
-application/alto-endpointcost+json
-application/alto-endpointcostparams+json
-application/alto-endpointprop+json
-application/alto-endpointpropparams+json
-application/alto-error+json
-application/alto-networkmap+json
-application/alto-networkmapfilter+json
-application/AML
+application/activemessage
+application/alto-costmap+json
+application/alto-costmapfilter+json
+application/alto-directory+json
+application/alto-endpointcost+json
+application/alto-endpointcostparams+json
+application/alto-endpointprop+json
+application/alto-endpointpropparams+json
+application/alto-error+json
+application/alto-networkmap+json
+application/alto-networkmapfilter+json
+application/AML
application/andrew-inset ez
-application/appledouble
-application/applefile
+application/appledouble
+application/applefile
application/applixware aw
-application/ATF
-application/ATFX
+application/ATF
+application/ATFX
application/atom+xml atom
application/atomcat+xml atomcat
-application/atomdeleted+xml
-application/atomicmail
+application/atomdeleted+xml
+application/atomicmail
application/atomsvc+xml atomsvc
-application/ATXML
-application/auth-policy+xml
-application/bacnet-xdd+zip
-application/batch-SMTP
-application/beep+xml
+application/ATXML
+application/auth-policy+xml
+application/bacnet-xdd+zip
+application/batch-SMTP
+application/beep+xml
application/bleeper bleep
-application/calendar+json
-application/calendar+xml
-application/call-completion
-application/cals-1840
-application/cals1840
-application/cbor
-application/ccmp+xml
+application/calendar+json
+application/calendar+xml
+application/call-completion
+application/cals-1840
+application/cals1840
+application/cbor
+application/ccmp+xml
application/ccxml+xml ccxml
-application/CDFX+XML
+application/CDFX+XML
application/cdmi-capability cdmia
application/cdmi-container cdmic
application/cdmi-domain cdmid
application/cdmi-object cdmio
application/cdmi-queue cdmiq
-application/CEA
-application/cea-2018+xml
-application/cellml+xml
-application/cfw
-application/clariscad
-application/cms
-application/cnrp+xml
-application/coap-group+json
-application/commonground
-application/conference-info+xml
-application/cpl+xml
-application/csrattrs
-application/csta+xml
-application/CSTAdata+xml
+application/CEA
+application/cea-2018+xml
+application/cellml+xml
+application/cfw
+application/clariscad
+application/cms
+application/cnrp+xml
+application/coap-group+json
+application/commonground
+application/conference-info+xml
+application/cpl+xml
+application/csrattrs
+application/csta+xml
+application/CSTAdata+xml
application/cu-seeme cu
-application/cybercash
-application/dash+xml
-application/dashdelta
+application/cybercash
+application/dash+xml
+application/dashdelta
application/davmount+xml davmount
-application/dca-rft
-application/DCD
-application/dec-dx
-application/dialog-info+xml
+application/dca-rft
+application/DCD
+application/dec-dx
+application/dialog-info+xml
application/dicom dcm
-application/DII
-application/DIT
-application/dns
+application/DII
+application/DIT
+application/dns
application/docbook+xml dbk
-application/drafting
-application/dskpp+xml
+application/drafting
+application/dskpp+xml
application/dssc+der dssc
application/dssc+xml xdssc
-application/dvcs
-application/dxf
+application/dvcs
+application/dxf
application/ecmascript ecma
-application/EDI-consent
-application/EDI-X12
-application/EDIFACT
+application/EDI-consent
+application/EDI-X12
+application/EDIFACT
application/emma+xml emma
-application/emotionml+xml
-application/encaprtp
-application/epp+xml
+application/emotionml+xml
+application/encaprtp
+application/epp+xml
application/epub+zip epub
-application/eshop
-application/example
+application/eshop
+application/example
application/excel xls xlt
application/exi exi
-application/fastinfoset
-application/fastsoap
-application/fdt+xml
-application/fits
+application/fastinfoset
+application/fastsoap
+application/fdt+xml
+application/fits
application/font-sfnt otf ttf
application/font-tdpfr pfr
-application/font-woff woff
-application/fractals
-application/framework-attributes+xml
+application/font-woff woff woff2
+application/fractals
+application/framework-attributes+xml
application/futuresplash spl
-application/ghostview
+application/ghostview
application/gml+xml gml
application/gpx+xml gpx
application/gxf gxf
application/gzip gz
-application/H224
-application/held+xml
+application/H224
+application/held+xml
application/hep hep
-application/http
+application/http
application/hyperstudio stk
-application/i-deas
-application/ibe-key-request+xml
-application/ibe-pkg-reply+xml
-application/ibe-pp-data
-application/iges
-application/im-iscomposing+xml
+application/i-deas
+application/ibe-key-request+xml
+application/ibe-pkg-reply+xml
+application/ibe-pp-data
+application/iges
+application/im-iscomposing+xml
application/imagemap imagemap imap
-application/index
-application/index.cmd
-application/index.obj
-application/index.response
-application/index.vnd
+application/index
+application/index.cmd
+application/index.obj
+application/index.response
+application/index.vnd
application/inkml+xml ink inkml
-application/iotp
+application/iotp
application/ipfix ipfix
-application/ipp
-application/isup
-application/its+xml
+application/ipp
+application/isup
+application/its+xml
application/java-archive jar
application/java-serialized-object ser
application/java-vm class
application/javascript js sj
-application/jose
-application/jose+json
-application/jrd+json
+application/jose
+application/jose+json
+application/jrd+json
application/json json
-application/json-patch+json
-application/json-seq
+application/json-patch+json
+application/json-seq
application/jsonml+json jsonml
-application/jwk+json
-application/jwk-set+json
-application/jwt
-application/kpml-request+xml
-application/kpml-response+xml
-application/ld+json
-application/link-format
-application/load-control+xml
+application/jwk+json
+application/jwk-set+json
+application/jwt
+application/kpml-request+xml
+application/kpml-response+xml
+application/ld+json
+application/link-format
+application/load-control+xml
application/lost+xml lostxml
-application/lostsync+xml
+application/lostsync+xml
application/lotus-123 wks
-application/LXF
+application/LXF
application/mac-binhex40 hqx
application/mac-compactpro cpt
-application/macbinary
-application/macwriteii
+application/macbinary
+application/macwriteii
application/mads+xml mads
application/marc mrc
application/marcxml+xml mrcx
application/mathcad mcd
application/mathematica ma mb nb
-application/mathematica-old
+application/mathematica-old
application/mathml+xml mathml
-application/mathml-content+xml
-application/mathml-presentation+xml
-application/mbms-associated-procedure-description+xml
-application/mbms-deregister+xml
-application/mbms-envelope+xml
-application/mbms-msk+xml
-application/mbms-msk-response+xml
-application/mbms-protection-description+xml
-application/mbms-reception-report+xml
-application/mbms-register+xml
-application/mbms-register-response+xml
-application/mbms-schedule+xml
-application/mbms-user-service-description+xml
+application/mathml-content+xml
+application/mathml-presentation+xml
+application/mbms-associated-procedure-description+xml
+application/mbms-deregister+xml
+application/mbms-envelope+xml
+application/mbms-msk+xml
+application/mbms-msk-response+xml
+application/mbms-protection-description+xml
+application/mbms-reception-report+xml
+application/mbms-register+xml
+application/mbms-register-response+xml
+application/mbms-schedule+xml
+application/mbms-user-service-description+xml
application/mbox mbox
-application/media-policy-dataset+xml
-application/media_control+xml
+application/media-policy-dataset+xml
+application/media_control+xml
application/mediaservercontrol+xml mscml
-application/merge-patch+json
+application/merge-patch+json
application/metalink+xml metalink
application/metalink4+xml meta4
application/mets+xml mets
-application/MF4
-application/mikey
+application/MF4
+application/mikey
application/mods+xml mods
-application/moss-keys
-application/moss-signature
-application/mosskey-data
-application/mosskey-request
+application/moss-keys
+application/moss-signature
+application/mosskey-data
+application/mosskey-request
application/mp21 m21 mp21
application/mp4 mp4 mpg4 mp4s
-application/mpeg4-generic
-application/mpeg4-iod
-application/mpeg4-iod-xmt
-application/mrb-consumer+xml
-application/mrb-publish+xml
-application/msc-ivr+xml
-application/msc-mixer+xml
+application/mpeg4-generic
+application/mpeg4-iod
+application/mpeg4-iod-xmt
+application/mrb-consumer+xml
+application/mrb-publish+xml
+application/msc-ivr+xml
+application/msc-mixer+xml
application/msword doc dot wrd
application/mxf mxf
-application/nasdata
+application/nasdata
application/netcdf nc cdf
-application/news-checkgroups
-application/news-groupinfo
-application/news-message-id
-application/news-transmission
-application/nlsml+xml
-application/nss
-application/ocsp-request
-application/ocsp-response
+application/news-checkgroups
+application/news-groupinfo
+application/news-message-id
+application/news-transmission
+application/nlsml+xml
+application/nss
+application/ocsp-request
+application/ocsp-response
application/octet-stream bin dms lha lzh exe class ani pgp so dll dylib bpk deploy dist distz dump elc lrf mar pkg
application/oda oda
-application/ODX
+application/ODX
application/oebps-package+xml opf
application/ogg ogx
application/omdoc+xml omdoc
application/onenote onepkg onetmp onetoc onetoc2
application/oxps oxps
-application/p2p-overlay+xml
-application/parityfec
+application/p2p-overlay+xml
+application/parityfec
application/patch-ops-error+xml xer
application/pdf pdf
-application/PDX
+application/PDX
application/pgp-encrypted pgp
-application/pgp-keys
+application/pgp-keys
application/pgp-signature asc sig
application/pics-rules prf
-application/pidf+xml
-application/pidf-diff+xml
+application/pidf+xml
+application/pidf-diff+xml
application/pkcs10 p10
application/pkcs7-mime p7m p7c
application/pkcs7-signature p7s
@@ -244,121 +244,121 @@ application/pkix-crl crl
application/pkix-pkipath pkipath
application/pkixcmp pki
application/pls+xml pls
-application/poc-settings+xml
+application/poc-settings+xml
application/postscript ai eps ps
application/powerpoint ppt pps pot
-application/pro_eng
-application/provenance+xml
-application/prs.alvestrand.titrax-sheet
+application/pro_eng
+application/provenance+xml
+application/prs.alvestrand.titrax-sheet
application/prs.cww cw cww
-application/prs.hpub+zip
+application/prs.hpub+zip
application/prs.nprend rnd rct
-application/prs.plucker
-application/prs.rdf-xml-crypt
-application/prs.xsf+xml
+application/prs.plucker
+application/prs.rdf-xml-crypt
+application/prs.xsf+xml
application/pskc+xml pskcxml
-application/qsig
+application/qsig
application/quicktimeplayer qtl
-application/raptorfec
-application/rdap+json
+application/raptorfec
+application/rdap+json
application/rdf+xml rdf
application/reginfo+xml rif
application/relax-ng-compact-syntax rnc
-application/remote-printing
-application/remote_printing
-application/reputon+json
+application/remote-printing
+application/remote_printing
+application/reputon+json
application/resource-lists+xml rl
application/resource-lists-diff+xml rld
-application/riscos
-application/rlmi+xml
+application/riscos
+application/rlmi+xml
application/rls-services+xml rs
application/rpki-ghostbusters gbr
application/rpki-manifest mft
application/rpki-roa roa
-application/rpki-updown
+application/rpki-updown
application/rsd+xml rsd
application/rss+xml rss
application/rtf rtf
-application/rtploopback
-application/rtx
-application/samlassertion+xml
-application/samlmetadata+xml
+application/rtploopback
+application/rtx
+application/samlassertion+xml
+application/samlmetadata+xml
application/sbml+xml sbml
-application/scaip+xml
+application/scaip+xml
application/scvp-cv-request scq
application/scvp-cv-response scs
application/scvp-vp-request spq
application/scvp-vp-response spp
application/sdp sdp
-application/sep+xml
-application/sep-exi
-application/session-info
-application/set
-application/set-payment
+application/sep+xml
+application/sep-exi
+application/session-info
+application/set
+application/set-payment
application/set-payment-initiation setpay
-application/set-registration
+application/set-registration
application/set-registration-initiation setreg
application/sgml sgml
application/sgml-open-catalog soc
application/shf+xml shf
application/sieve siv
-application/simple-filter+xml
-application/simple-message-summary
-application/simpleSymbolContainer
-application/SLA
-application/slate
+application/simple-filter+xml
+application/simple-message-summary
+application/simpleSymbolContainer
+application/SLA
+application/slate
application/smil smi smil
application/smil+xml smi smil
-application/smpte336m
-application/soap+fastinfoset
-application/soap+xml
-application/solids
+application/smpte336m
+application/soap+fastinfoset
+application/soap+xml
+application/solids
application/sparql-query rq
application/sparql-results+xml srx
-application/spirits-event+xml
-application/sql
+application/spirits-event+xml
+application/sql
application/srgs gram
application/srgs+xml grxml
application/sru+xml sru
application/ssdl+xml ssdl
application/ssml+xml ssml
-application/STEP
-application/tamp-apex-update
-application/tamp-apex-update-confirm
-application/tamp-community-update
-application/tamp-community-update-confirm
-application/tamp-error
-application/tamp-sequence-adjust
-application/tamp-sequence-adjust-confirm
-application/tamp-status-query
-application/tamp-status-response
-application/tamp-update
-application/tamp-update-confirm
+application/STEP
+application/tamp-apex-update
+application/tamp-apex-update-confirm
+application/tamp-community-update
+application/tamp-community-update-confirm
+application/tamp-error
+application/tamp-sequence-adjust
+application/tamp-sequence-adjust-confirm
+application/tamp-status-query
+application/tamp-status-response
+application/tamp-update
+application/tamp-update-confirm
application/tei+xml tei teicorpus
application/thraud+xml tfi
-application/timestamp-query
-application/timestamp-reply
+application/timestamp-query
+application/timestamp-reply
application/timestamped-data tsd
application/toolbook tbk
-application/ttml+xml
-application/tve-trigger
-application/ulpfec
-application/urc-grpsheet+xml
-application/urc-ressheet+xml
-application/urc-targetdesc+xml
-application/urc-uisocketdesc+xml
-application/vcard+json
-application/vcard+xml
-application/vda
-application/vemmi
+application/ttml+xml
+application/tve-trigger
+application/ulpfec
+application/urc-grpsheet+xml
+application/urc-ressheet+xml
+application/urc-targetdesc+xml
+application/urc-uisocketdesc+xml
+application/vcard+json
+application/vcard+xml
+application/vda
+application/vemmi
application/VMSBACKUP bck
-application/vnd.3gpp.bsf+xml
+application/vnd.3gpp.bsf+xml
application/vnd.3gpp.pic-bw-large plb
application/vnd.3gpp.pic-bw-small psb
application/vnd.3gpp.pic-bw-var pvb
application/vnd.3gpp.sms sms
-application/vnd.3gpp2.bcmcsinfo+xml
-application/vnd.3gpp2.sms
+application/vnd.3gpp2.bcmcsinfo+xml
+application/vnd.3gpp2.sms
application/vnd.3gpp2.tcap tcap
application/vnd.3M.Post-it-Notes pwn
application/vnd.accpac.simply.aso aso
@@ -366,66 +366,67 @@ application/vnd.accpac.simply.imp imp
application/vnd.acucobol acu
application/vnd.acucorp atc acutc
application/vnd.adobe.air-application-installer-package+zip air
-application/vnd.adobe.flash.movie
+application/vnd.adobe.flash.movie
application/vnd.adobe.formscentral.fcdt fcdt
application/vnd.adobe.fxp fxp fxpl
-application/vnd.adobe.partial-upload
+application/vnd.adobe.partial-upload
application/vnd.adobe.xdp+xml xdp
application/vnd.adobe.xfdf xfdf
-application/vnd.aether.imp
-application/vnd.ah-barcode
+application/vnd.aether.imp
+application/vnd.ah-barcode
application/vnd.ahead.space ahead
application/vnd.airzip.filesecure.azf azf
application/vnd.airzip.filesecure.azs azs
application/vnd.amazon.ebook azw
application/vnd.americandynamics.acc acc
application/vnd.amiga.ami ami
-application/vnd.amundsen.maze+xml
+application/vnd.amundsen.maze+xml
application/vnd.android.package-archive apk
application/vnd.anser-web-certificate-issue-initiation cii
application/vnd.anser-web-funds-transfer-initiation fti
application/vnd.antix.game-component atx
-application/vnd.apache.thrift.binary
-application/vnd.apache.thrift.compact
-application/vnd.apache.thrift.json
-application/vnd.api+json
+application/vnd.apache.thrift.binary
+application/vnd.apache.thrift.compact
+application/vnd.apache.thrift.json
+application/vnd.api+json
application/vnd.apple.installer+xml mpkg
application/vnd.apple.mpegurl m3u8
application/vnd.apple.pkpass pkpass
-application/vnd.arastra.swi
+application/vnd.arastra.swi
application/vnd.aristanetworks.swi swi
-application/vnd.artsquare
+application/vnd.artsquare
application/vnd.astraea-software.iota iota
application/vnd.audiograph aep
-application/vnd.autopackage
-application/vnd.avistar+xml
-application/vnd.balsamiq.bmml+xml
-application/vnd.bekitzur-stech+json
+application/vnd.autopackage
+application/vnd.avistar+xml
+application/vnd.balsamiq.bmml+xml
+application/vnd.balsamiq.bmpr
+application/vnd.bekitzur-stech+json
application/vnd.blueice.multipass mpm
-application/vnd.bluetooth.ep.oob
-application/vnd.bluetooth.le.oob
+application/vnd.bluetooth.ep.oob
+application/vnd.bluetooth.le.oob
application/vnd.bmi bmi
application/vnd.businessobjects rep
-application/vnd.cab-jscript
-application/vnd.canon-cpdl
-application/vnd.canon-lips
-application/vnd.cendio.thinlinc.clientconf
-application/vnd.century-systems.tcp_stream
+application/vnd.cab-jscript
+application/vnd.canon-cpdl
+application/vnd.canon-lips
+application/vnd.cendio.thinlinc.clientconf
+application/vnd.century-systems.tcp_stream
application/vnd.chemdraw+xml cdxml
application/vnd.chipnuts.karaoke-mmd mmd
application/vnd.cinderella cdy
-application/vnd.cirpack.isdn-ext
-application/vnd.citationstyles.style+xml
+application/vnd.cirpack.isdn-ext
+application/vnd.citationstyles.style+xml
application/vnd.claymore cla
application/vnd.cloanto.rp9 rp9
application/vnd.clonk.c4group c4d c4f c4g c4p c4u
application/vnd.cluetrust.cartomobile-config c11amc
application/vnd.cluetrust.cartomobile-config-pkg c11amz
-application/vnd.coffeescript
-application/vnd.collection+json
-application/vnd.collection.doc+json
-application/vnd.collection.next+json
-application/vnd.commerce-battelle
+application/vnd.coffeescript
+application/vnd.collection+json
+application/vnd.collection.doc+json
+application/vnd.collection.next+json
+application/vnd.commerce-battelle
application/vnd.commonspace csp
application/vnd.contact.cmsg cdbcmsg
application/vnd.cosmocaller cmc
@@ -436,116 +437,116 @@ application/vnd.crick.clicker.template clkt
application/vnd.crick.clicker.wordbank clkw
application/vnd.criticaltools.wbs+xml wbs
application/vnd.ctc-posml pml
-application/vnd.ctct.ws+xml
-application/vnd.cups-pdf
-application/vnd.cups-postscript
+application/vnd.ctct.ws+xml
+application/vnd.cups-pdf
+application/vnd.cups-postscript
application/vnd.cups-ppd ppd
-application/vnd.cups-raster
-application/vnd.cups-raw
+application/vnd.cups-raster
+application/vnd.cups-raw
application/vnd.curl curl
application/vnd.curl.car car
application/vnd.curl.pcurl pcurl
-application/vnd.cyan.dean.root+xml
-application/vnd.cybank
+application/vnd.cyan.dean.root+xml
+application/vnd.cybank
application/vnd.dart dart
application/vnd.data-vision.rdz rdz
-application/vnd.debian.binary-package
+application/vnd.debian.binary-package
application/vnd.dece.data uvd uvf uvvd uvvf
application/vnd.dece.ttml+xml uvt uvvt
application/vnd.dece.unspecified uvvx uvx
application/vnd.dece.zip uvvz uvz
application/vnd.denovo.fcselayout-link fe_launch
-application/vnd.desmume.movie
-application/vnd.dir-bi.plate-dl-nosuffix
-application/vnd.dm.delegation+xml
+application/vnd.desmume.movie
+application/vnd.dir-bi.plate-dl-nosuffix
+application/vnd.dm.delegation+xml
application/vnd.dna dna
-application/vnd.document+json
+application/vnd.document+json
application/vnd.dolby.mlp mlp
-application/vnd.dolby.mobile.1
-application/vnd.dolby.mobile.2
-application/vnd.doremir.scorecloud-binary-document
+application/vnd.dolby.mobile.1
+application/vnd.dolby.mobile.2
+application/vnd.doremir.scorecloud-binary-document
application/vnd.dpgraph dpg
application/vnd.dreamfactory dfac
application/vnd.ds-keypoint kpxx
-application/vnd.dtg.local
-application/vnd.dtg.local.flash
-application/vnd.dtg.local.html
+application/vnd.dtg.local
+application/vnd.dtg.local.flash
+application/vnd.dtg.local.html
application/vnd.dvb.ait ait
-application/vnd.dvb.dvbj
-application/vnd.dvb.esgcontainer
-application/vnd.dvb.ipdcdftnotifaccess
-application/vnd.dvb.ipdcesgaccess
-application/vnd.dvb.ipdcesgaccess2
-application/vnd.dvb.ipdcesgpdd
-application/vnd.dvb.ipdcroaming
-application/vnd.dvb.iptv.alfec-base
-application/vnd.dvb.iptv.alfec-enhancement
-application/vnd.dvb.notif-aggregate-root+xml
-application/vnd.dvb.notif-container+xml
-application/vnd.dvb.notif-generic+xml
-application/vnd.dvb.notif-ia-msglist+xml
-application/vnd.dvb.notif-ia-registration-request+xml
-application/vnd.dvb.notif-ia-registration-response+xml
-application/vnd.dvb.notif-init+xml
-application/vnd.dvb.pfr
+application/vnd.dvb.dvbj
+application/vnd.dvb.esgcontainer
+application/vnd.dvb.ipdcdftnotifaccess
+application/vnd.dvb.ipdcesgaccess
+application/vnd.dvb.ipdcesgaccess2
+application/vnd.dvb.ipdcesgpdd
+application/vnd.dvb.ipdcroaming
+application/vnd.dvb.iptv.alfec-base
+application/vnd.dvb.iptv.alfec-enhancement
+application/vnd.dvb.notif-aggregate-root+xml
+application/vnd.dvb.notif-container+xml
+application/vnd.dvb.notif-generic+xml
+application/vnd.dvb.notif-ia-msglist+xml
+application/vnd.dvb.notif-ia-registration-request+xml
+application/vnd.dvb.notif-ia-registration-response+xml
+application/vnd.dvb.notif-init+xml
+application/vnd.dvb.pfr
application/vnd.dvb.service svc
-application/vnd.dxr
+application/vnd.dxr
application/vnd.dynageo geo
-application/vnd.dzr
-application/vnd.easykaraoke.cdgdownload
-application/vnd.ecdis-update
+application/vnd.dzr
+application/vnd.easykaraoke.cdgdownload
+application/vnd.ecdis-update
application/vnd.ecowin.chart mag
-application/vnd.ecowin.filerequest
-application/vnd.ecowin.fileupdate
-application/vnd.ecowin.series
-application/vnd.ecowin.seriesrequest
-application/vnd.ecowin.seriesupdate
-application/vnd.emclient.accessrequest+xml
+application/vnd.ecowin.filerequest
+application/vnd.ecowin.fileupdate
+application/vnd.ecowin.series
+application/vnd.ecowin.seriesrequest
+application/vnd.ecowin.seriesupdate
+application/vnd.emclient.accessrequest+xml
application/vnd.enliven nml
-application/vnd.enphase.envoy
-application/vnd.eprints.data+xml
+application/vnd.enphase.envoy
+application/vnd.eprints.data+xml
application/vnd.epson.esf esf
application/vnd.epson.msf msf
application/vnd.epson.quickanime qam
application/vnd.epson.salt slt
application/vnd.epson.ssf ssf
-application/vnd.ericsson.quickcall
+application/vnd.ericsson.quickcall
application/vnd.eszigno3+xml es3 et3
-application/vnd.etsi.aoc+xml
-application/vnd.etsi.asic-e+zip
-application/vnd.etsi.asic-s+zip
-application/vnd.etsi.cug+xml
-application/vnd.etsi.iptvcommand+xml
-application/vnd.etsi.iptvdiscovery+xml
-application/vnd.etsi.iptvprofile+xml
-application/vnd.etsi.iptvsad-bc+xml
-application/vnd.etsi.iptvsad-cod+xml
-application/vnd.etsi.iptvsad-npvr+xml
-application/vnd.etsi.iptvservice+xml
-application/vnd.etsi.iptvsync+xml
-application/vnd.etsi.iptvueprofile+xml
-application/vnd.etsi.mcid+xml
-application/vnd.etsi.mheg5
-application/vnd.etsi.overload-control-policy-dataset+xml
-application/vnd.etsi.pstn+xml
-application/vnd.etsi.sci+xml
-application/vnd.etsi.simservs+xml
-application/vnd.etsi.timestamp-token
-application/vnd.etsi.tsl+xml
-application/vnd.etsi.tsl.der
-application/vnd.eudora.data
+application/vnd.etsi.aoc+xml
+application/vnd.etsi.asic-e+zip
+application/vnd.etsi.asic-s+zip
+application/vnd.etsi.cug+xml
+application/vnd.etsi.iptvcommand+xml
+application/vnd.etsi.iptvdiscovery+xml
+application/vnd.etsi.iptvprofile+xml
+application/vnd.etsi.iptvsad-bc+xml
+application/vnd.etsi.iptvsad-cod+xml
+application/vnd.etsi.iptvsad-npvr+xml
+application/vnd.etsi.iptvservice+xml
+application/vnd.etsi.iptvsync+xml
+application/vnd.etsi.iptvueprofile+xml
+application/vnd.etsi.mcid+xml
+application/vnd.etsi.mheg5
+application/vnd.etsi.overload-control-policy-dataset+xml
+application/vnd.etsi.pstn+xml
+application/vnd.etsi.sci+xml
+application/vnd.etsi.simservs+xml
+application/vnd.etsi.timestamp-token
+application/vnd.etsi.tsl+xml
+application/vnd.etsi.tsl.der
+application/vnd.eudora.data
application/vnd.ezpix-album ez2
application/vnd.ezpix-package ez3
-application/vnd.f-secure.mobile
-application/vnd.fastcopy-disk-image
+application/vnd.f-secure.mobile
+application/vnd.fastcopy-disk-image
application/vnd.fdf fdf
application/vnd.fdsn.mseed mseed
application/vnd.fdsn.seed dataless seed
-application/vnd.ffsns
-application/vnd.fints
+application/vnd.ffsns
+application/vnd.fints
application/vnd.FloGraphIt gph
application/vnd.fluxtime.clip ftc
-application/vnd.font-fontforge-sfd
+application/vnd.font-fontforge-sfd
application/vnd.framemaker frm maker frame fm fb book fbdoc
application/vnd.frogans.fnc fnc
application/vnd.frogans.ltf ltf
@@ -555,35 +556,35 @@ application/vnd.fujitsu.oasys2 oa2
application/vnd.fujitsu.oasys3 oa3
application/vnd.fujitsu.oasysgp fg5
application/vnd.fujitsu.oasysprs bh2
-application/vnd.fujixerox.ART-EX
-application/vnd.fujixerox.ART4
+application/vnd.fujixerox.ART-EX
+application/vnd.fujixerox.ART4
application/vnd.fujixerox.ddd ddd
application/vnd.fujixerox.docuworks xdw
application/vnd.fujixerox.docuworks.binder xbd
-application/vnd.fujixerox.docuworks.container
-application/vnd.fujixerox.HBPL
-application/vnd.fut-misnet
+application/vnd.fujixerox.docuworks.container
+application/vnd.fujixerox.HBPL
+application/vnd.fut-misnet
application/vnd.fuzzysheet fzs
application/vnd.genomatix.tuxedo txd
-application/vnd.geo+json
-application/vnd.geocube+xml
+application/vnd.geo+json
+application/vnd.geocube+xml
application/vnd.geogebra.file ggb
application/vnd.geogebra.tool ggt
application/vnd.geometry-explorer gex gre
application/vnd.geonext gxt
application/vnd.geoplan g2w
application/vnd.geospace g3w
-application/vnd.gerber
-application/vnd.globalplatform.card-content-mgt
-application/vnd.globalplatform.card-content-mgt-response
+application/vnd.gerber
+application/vnd.globalplatform.card-content-mgt
+application/vnd.globalplatform.card-content-mgt-response
application/vnd.gmx gmx
application/vnd.google-earth.kml+xml kml
application/vnd.google-earth.kmz kmz
-application/vnd.gov.sk.e-form+xml
-application/vnd.gov.sk.e-form+zip
-application/vnd.gov.sk.xmldatacontainer+xml
+application/vnd.gov.sk.e-form+xml
+application/vnd.gov.sk.e-form+zip
+application/vnd.gov.sk.xmldatacontainer+xml
application/vnd.grafeq gqf gqs
-application/vnd.gridmp
+application/vnd.gridmp
application/vnd.groove-account gac
application/vnd.groove-help ghf
application/vnd.groove-identity-message gim
@@ -591,12 +592,12 @@ application/vnd.groove-injector grv
application/vnd.groove-tool-message gtm
application/vnd.groove-tool-template tpl
application/vnd.groove-vcard vcg
-application/vnd.hal+json
+application/vnd.hal+json
application/vnd.hal+xml hal
application/vnd.HandHeld-Entertainment+xml zmm
application/vnd.hbci hbci hbc kom upa pkd bpd
-application/vnd.hcl-bireports
-application/vnd.heroku+json
+application/vnd.hcl-bireports
+application/vnd.heroku+json
application/vnd.hhe.lesson-player les
application/vnd.hp-HPGL plt hpgl
application/vnd.hp-hpid hpid
@@ -604,65 +605,65 @@ application/vnd.hp-hps hps
application/vnd.hp-jlyt jlt
application/vnd.hp-PCL pcl
application/vnd.hp-PCLXL pclxl
-application/vnd.httphone
+application/vnd.httphone
application/vnd.hydrostatix.sof-data sfd-hdstx
-application/vnd.hzn-3d-crossword
-application/vnd.ibm.afplinedata
+application/vnd.hzn-3d-crossword
+application/vnd.ibm.afplinedata
application/vnd.ibm.electronic-media emm
application/vnd.ibm.MiniPay mpy
application/vnd.ibm.modcap afp list3820 listafp
application/vnd.ibm.rights-management irm
application/vnd.ibm.secure-container sc
application/vnd.iccprofile icc icm
-application/vnd.ieee.1905
+application/vnd.ieee.1905
application/vnd.igloader igl
application/vnd.immervision-ivp ivp
application/vnd.immervision-ivu ivu
-application/vnd.ims.imsccv1p1
-application/vnd.ims.imsccv1p2
-application/vnd.ims.imsccv1p3
-application/vnd.ims.lis.v2.result+json
-application/vnd.ims.lti.v2.toolconsumerprofile+json
-application/vnd.ims.lti.v2.toolproxy+json
-application/vnd.ims.lti.v2.toolproxy.id+json
-application/vnd.ims.lti.v2.toolsettings+json
-application/vnd.ims.lti.v2.toolsettings.simple+json
-application/vnd.informedcontrol.rms+xml
-application/vnd.informix-visionary
-application/vnd.infotech.project
-application/vnd.infotech.project+xml
-application/vnd.innopath.wamp.notification
+application/vnd.ims.imsccv1p1
+application/vnd.ims.imsccv1p2
+application/vnd.ims.imsccv1p3
+application/vnd.ims.lis.v2.result+json
+application/vnd.ims.lti.v2.toolconsumerprofile+json
+application/vnd.ims.lti.v2.toolproxy+json
+application/vnd.ims.lti.v2.toolproxy.id+json
+application/vnd.ims.lti.v2.toolsettings+json
+application/vnd.ims.lti.v2.toolsettings.simple+json
+application/vnd.informedcontrol.rms+xml
+application/vnd.informix-visionary
+application/vnd.infotech.project
+application/vnd.infotech.project+xml
+application/vnd.innopath.wamp.notification
application/vnd.insors.igm igm
application/vnd.intercon.formnet xpw xpx
application/vnd.intergeo i2g
-application/vnd.intertrust.digibox
-application/vnd.intertrust.nncp
+application/vnd.intertrust.digibox
+application/vnd.intertrust.nncp
application/vnd.intu.qbo qbo
application/vnd.intu.qfx qfx
-application/vnd.iptc.g2.catalogitem+xml
-application/vnd.iptc.g2.conceptitem+xml
-application/vnd.iptc.g2.knowledgeitem+xml
-application/vnd.iptc.g2.newsitem+xml
-application/vnd.iptc.g2.newsmessage+xml
-application/vnd.iptc.g2.packageitem+xml
-application/vnd.iptc.g2.planningitem+xml
+application/vnd.iptc.g2.catalogitem+xml
+application/vnd.iptc.g2.conceptitem+xml
+application/vnd.iptc.g2.knowledgeitem+xml
+application/vnd.iptc.g2.newsitem+xml
+application/vnd.iptc.g2.newsmessage+xml
+application/vnd.iptc.g2.packageitem+xml
+application/vnd.iptc.g2.planningitem+xml
application/vnd.ipunplugged.rcprofile rcprofile
application/vnd.irepository.package+xml irp
application/vnd.is-xpr xpr
application/vnd.isac.fcs fcs
application/vnd.jam jam
-application/vnd.japannet-directory-service
-application/vnd.japannet-jpnstore-wakeup
-application/vnd.japannet-payment-wakeup
-application/vnd.japannet-registration
-application/vnd.japannet-registration-wakeup
-application/vnd.japannet-setstore-wakeup
-application/vnd.japannet-verification
-application/vnd.japannet-verification-wakeup
+application/vnd.japannet-directory-service
+application/vnd.japannet-jpnstore-wakeup
+application/vnd.japannet-payment-wakeup
+application/vnd.japannet-registration
+application/vnd.japannet-registration-wakeup
+application/vnd.japannet-setstore-wakeup
+application/vnd.japannet-verification
+application/vnd.japannet-verification-wakeup
application/vnd.jcp.javame.midlet-rms rms
application/vnd.jisp jisp
application/vnd.joost.joda-archive joda
-application/vnd.jsk.isdn-ngn
+application/vnd.jsk.isdn-ngn
application/vnd.kahootz ktr ktz
application/vnd.kde.karbon karbon
application/vnd.kde.kchart chrt
@@ -678,7 +679,7 @@ application/vnd.Kinar kne knp sdf
application/vnd.koan skd skm skp skt
application/vnd.kodak-descriptor sse
application/vnd.las.las+xml lasxml
-application/vnd.liberty-request+xml
+application/vnd.liberty-request+xml
application/vnd.llamagraphics.life-balance.desktop lbd
application/vnd.llamagraphics.life-balance.exchange+xml lbe
application/vnd.lotus-1-2-3 wks 123
@@ -689,26 +690,26 @@ application/vnd.lotus-organizer org
application/vnd.lotus-screencam scm
application/vnd.lotus-wordpro lwp
application/vnd.macports.portpkg portpkg
-application/vnd.marlin.drm.actiontoken+xml
-application/vnd.marlin.drm.conftoken+xml
-application/vnd.marlin.drm.license+xml
-application/vnd.marlin.drm.mdcf
-application/vnd.mason+json
-application/vnd.maxmind.maxmind-db
+application/vnd.marlin.drm.actiontoken+xml
+application/vnd.marlin.drm.conftoken+xml
+application/vnd.marlin.drm.license+xml
+application/vnd.marlin.drm.mdcf
+application/vnd.mason+json
+application/vnd.maxmind.maxmind-db
application/vnd.mcd mcd
application/vnd.medcalcdata mc1
application/vnd.mediastation.cdkey cdkey
-application/vnd.meridian-slingshot
+application/vnd.meridian-slingshot
application/vnd.MFER mwf
application/vnd.mfmp mfm
-application/vnd.micro+json
+application/vnd.micro+json
application/vnd.micrografx.flo flo
application/vnd.micrografx.igx igx
-application/vnd.microsoft.portable-executable
-application/vnd.miele+json
+application/vnd.microsoft.portable-executable
+application/vnd.miele+json
application/vnd.mif mif
-application/vnd.minisoft-hp3000-save
-application/vnd.mitsubishi.misty-guard.trustweb
+application/vnd.minisoft-hp3000-save
+application/vnd.mitsubishi.misty-guard.trustweb
application/vnd.Mobius.DAF daf
application/vnd.Mobius.DIS dis
application/vnd.Mobius.MBK mbk
@@ -718,16 +719,16 @@ application/vnd.Mobius.PLC plc
application/vnd.Mobius.TXF txf
application/vnd.mophun.application mpn
application/vnd.mophun.certificate mpc
-application/vnd.motorola.flexsuite
-application/vnd.motorola.flexsuite.adsi
-application/vnd.motorola.flexsuite.fis
-application/vnd.motorola.flexsuite.gotap
-application/vnd.motorola.flexsuite.kmr
-application/vnd.motorola.flexsuite.ttc
-application/vnd.motorola.flexsuite.wem
-application/vnd.motorola.iprm
+application/vnd.motorola.flexsuite
+application/vnd.motorola.flexsuite.adsi
+application/vnd.motorola.flexsuite.fis
+application/vnd.motorola.flexsuite.gotap
+application/vnd.motorola.flexsuite.kmr
+application/vnd.motorola.flexsuite.ttc
+application/vnd.motorola.flexsuite.wem
+application/vnd.motorola.iprm
application/vnd.mozilla.xul+xml xul
-application/vnd.ms-3mfdocument
+application/vnd.ms-3mfdocument
application/vnd.ms-artgalry cil
application/vnd.ms-asf asf
application/vnd.ms-cab-compressed cab
@@ -740,12 +741,12 @@ application/vnd.ms-fontobject eot
application/vnd.ms-htmlhelp chm
application/vnd.ms-ims ims
application/vnd.ms-lrm lrm
-application/vnd.ms-office.activeX+xml
+application/vnd.ms-office.activeX+xml
application/vnd.ms-officetheme thmx
application/vnd.ms-outlook msg
application/vnd.ms-pki.seccat cat
application/vnd.ms-pki.stl stl
-application/vnd.ms-playready.initiator+xml
+application/vnd.ms-playready.initiator+xml
application/vnd.ms-powerpoint ppt pps pot
application/vnd.ms-powerpoint.addin.macroEnabled.12 ppam
application/vnd.ms-powerpoint.presentation.macroEnabled.12 pptm
@@ -753,62 +754,62 @@ application/vnd.ms-powerpoint.slide.macroEnabled.12 sldm
application/vnd.ms-powerpoint.slideshow.macroEnabled.12 ppsm
application/vnd.ms-powerpoint.template.macroEnabled.12 potm
application/vnd.ms-project mpp mpt
-application/vnd.ms-tnef
-application/vnd.ms-windows.printerpairing
-application/vnd.ms-wmdrm.lic-chlg-req
-application/vnd.ms-wmdrm.lic-resp
-application/vnd.ms-wmdrm.meter-chlg-req
-application/vnd.ms-wmdrm.meter-resp
+application/vnd.ms-tnef
+application/vnd.ms-windows.printerpairing
+application/vnd.ms-wmdrm.lic-chlg-req
+application/vnd.ms-wmdrm.lic-resp
+application/vnd.ms-wmdrm.meter-chlg-req
+application/vnd.ms-wmdrm.meter-resp
application/vnd.ms-word.document.macroEnabled.12 docm
application/vnd.ms-word.template.macroEnabled.12 dotm
application/vnd.ms-works wcm wdb wks wps
application/vnd.ms-wpl wpl
application/vnd.ms-xpsdocument xps
-application/vnd.msa-disk-image
+application/vnd.msa-disk-image
application/vnd.mseq mseq
-application/vnd.msign
-application/vnd.multiad.creator
-application/vnd.multiad.creator.cif
-application/vnd.music-niff
+application/vnd.msign
+application/vnd.multiad.creator
+application/vnd.multiad.creator.cif
+application/vnd.music-niff
application/vnd.musician mus
application/vnd.muvee.style msty
application/vnd.mynfc taglet
-application/vnd.ncd.control
-application/vnd.ncd.reference
+application/vnd.ncd.control
+application/vnd.ncd.reference
application/vnd.nervana ent entity req request bkm kcm
-application/vnd.netfpx
+application/vnd.netfpx
application/vnd.neurolanguage.nlu nlu
-application/vnd.nintendo.nitro.rom
-application/vnd.nintendo.snes.rom
+application/vnd.nintendo.nitro.rom
+application/vnd.nintendo.snes.rom
application/vnd.nitf nitf ntf
application/vnd.noblenet-directory nnd
application/vnd.noblenet-sealer nns
application/vnd.noblenet-web nnw
-application/vnd.nokia.catalogs
-application/vnd.nokia.conml+wbxml
-application/vnd.nokia.conml+xml
-application/vnd.nokia.iptv.config+xml
-application/vnd.nokia.iSDS-radio-presets
-application/vnd.nokia.landmark+wbxml
-application/vnd.nokia.landmark+xml
-application/vnd.nokia.landmarkcollection+xml
-application/vnd.nokia.n-gage.ac+xml
+application/vnd.nokia.catalogs
+application/vnd.nokia.conml+wbxml
+application/vnd.nokia.conml+xml
+application/vnd.nokia.iptv.config+xml
+application/vnd.nokia.iSDS-radio-presets
+application/vnd.nokia.landmark+wbxml
+application/vnd.nokia.landmark+xml
+application/vnd.nokia.landmarkcollection+xml
+application/vnd.nokia.n-gage.ac+xml
application/vnd.nokia.n-gage.data ngdat
application/vnd.nokia.n-gage.symbian.install n-gage
-application/vnd.nokia.ncd
-application/vnd.nokia.ncd+xml
-application/vnd.nokia.pcd+wbxml
-application/vnd.nokia.pcd+xml
+application/vnd.nokia.ncd
+application/vnd.nokia.ncd+xml
+application/vnd.nokia.pcd+wbxml
+application/vnd.nokia.pcd+xml
application/vnd.nokia.radio-preset rpst
application/vnd.nokia.radio-presets rpss
application/vnd.novadigm.EDM edm
application/vnd.novadigm.EDX edx
application/vnd.novadigm.EXT ext
-application/vnd.ntt-local.content-share
-application/vnd.ntt-local.file-transfer
-application/vnd.ntt-local.ogw_remote-access
-application/vnd.ntt-local.sip-ta_remote
-application/vnd.ntt-local.sip-ta_tcp_stream
+application/vnd.ntt-local.content-share
+application/vnd.ntt-local.file-transfer
+application/vnd.ntt-local.ogw_remote-access
+application/vnd.ntt-local.sip-ta_remote
+application/vnd.ntt-local.sip-ta_tcp_stream
application/vnd.oasis.opendocument.chart odc
application/vnd.oasis.opendocument.chart-template odc otc
application/vnd.oasis.opendocument.database odb
@@ -826,212 +827,212 @@ application/vnd.oasis.opendocument.text odt
application/vnd.oasis.opendocument.text-master odm
application/vnd.oasis.opendocument.text-template ott
application/vnd.oasis.opendocument.text-web oth
-application/vnd.obn
-application/vnd.oftn.l10n+json
-application/vnd.oipf.contentaccessdownload+xml
-application/vnd.oipf.contentaccessstreaming+xml
-application/vnd.oipf.cspg-hexbinary
-application/vnd.oipf.dae.svg+xml
-application/vnd.oipf.dae.xhtml+xml
-application/vnd.oipf.mippvcontrolmessage+xml
-application/vnd.oipf.pae.gem
-application/vnd.oipf.spdiscovery+xml
-application/vnd.oipf.spdlist+xml
-application/vnd.oipf.ueprofile+xml
-application/vnd.oipf.userprofile+xml
+application/vnd.obn
+application/vnd.oftn.l10n+json
+application/vnd.oipf.contentaccessdownload+xml
+application/vnd.oipf.contentaccessstreaming+xml
+application/vnd.oipf.cspg-hexbinary
+application/vnd.oipf.dae.svg+xml
+application/vnd.oipf.dae.xhtml+xml
+application/vnd.oipf.mippvcontrolmessage+xml
+application/vnd.oipf.pae.gem
+application/vnd.oipf.spdiscovery+xml
+application/vnd.oipf.spdlist+xml
+application/vnd.oipf.ueprofile+xml
+application/vnd.oipf.userprofile+xml
application/vnd.olpc-sugar xo
-application/vnd.oma-scws-config
-application/vnd.oma-scws-http-request
-application/vnd.oma-scws-http-response
-application/vnd.oma.bcast.associated-procedure-parameter+xml
-application/vnd.oma.bcast.drm-trigger+xml
-application/vnd.oma.bcast.imd+xml
-application/vnd.oma.bcast.ltkm
-application/vnd.oma.bcast.notification+xml
-application/vnd.oma.bcast.provisioningtrigger
-application/vnd.oma.bcast.sgboot
-application/vnd.oma.bcast.sgdd+xml
-application/vnd.oma.bcast.sgdu
-application/vnd.oma.bcast.simple-symbol-container
-application/vnd.oma.bcast.smartcard-trigger+xml
-application/vnd.oma.bcast.sprov+xml
-application/vnd.oma.bcast.stkm
-application/vnd.oma.cab-address-book+xml
-application/vnd.oma.cab-feature-handler+xml
-application/vnd.oma.cab-pcc+xml
-application/vnd.oma.cab-subs-invite+xml
-application/vnd.oma.cab-user-prefs+xml
-application/vnd.oma.dcd
-application/vnd.oma.dcdc
+application/vnd.oma-scws-config
+application/vnd.oma-scws-http-request
+application/vnd.oma-scws-http-response
+application/vnd.oma.bcast.associated-procedure-parameter+xml
+application/vnd.oma.bcast.drm-trigger+xml
+application/vnd.oma.bcast.imd+xml
+application/vnd.oma.bcast.ltkm
+application/vnd.oma.bcast.notification+xml
+application/vnd.oma.bcast.provisioningtrigger
+application/vnd.oma.bcast.sgboot
+application/vnd.oma.bcast.sgdd+xml
+application/vnd.oma.bcast.sgdu
+application/vnd.oma.bcast.simple-symbol-container
+application/vnd.oma.bcast.smartcard-trigger+xml
+application/vnd.oma.bcast.sprov+xml
+application/vnd.oma.bcast.stkm
+application/vnd.oma.cab-address-book+xml
+application/vnd.oma.cab-feature-handler+xml
+application/vnd.oma.cab-pcc+xml
+application/vnd.oma.cab-subs-invite+xml
+application/vnd.oma.cab-user-prefs+xml
+application/vnd.oma.dcd
+application/vnd.oma.dcdc
application/vnd.oma.dd2+xml dd2
-application/vnd.oma.drm.risd+xml
-application/vnd.oma.group-usage-list+xml
-application/vnd.oma.pal+xml
-application/vnd.oma.poc.detailed-progress-report+xml
-application/vnd.oma.poc.final-report+xml
-application/vnd.oma.poc.groups+xml
-application/vnd.oma.poc.invocation-descriptor+xml
-application/vnd.oma.poc.optimized-progress-report+xml
-application/vnd.oma.push
-application/vnd.oma.scidm.messages+xml
-application/vnd.oma.xcap-directory+xml
-application/vnd.omads-email+xml
-application/vnd.omads-file+xml
-application/vnd.omads-folder+xml
-application/vnd.omaloc-supl-init
-application/vnd.openeye.oeb
+application/vnd.oma.drm.risd+xml
+application/vnd.oma.group-usage-list+xml
+application/vnd.oma.pal+xml
+application/vnd.oma.poc.detailed-progress-report+xml
+application/vnd.oma.poc.final-report+xml
+application/vnd.oma.poc.groups+xml
+application/vnd.oma.poc.invocation-descriptor+xml
+application/vnd.oma.poc.optimized-progress-report+xml
+application/vnd.oma.push
+application/vnd.oma.scidm.messages+xml
+application/vnd.oma.xcap-directory+xml
+application/vnd.omads-email+xml
+application/vnd.omads-file+xml
+application/vnd.omads-folder+xml
+application/vnd.omaloc-supl-init
+application/vnd.openeye.oeb
application/vnd.openofficeorg.extension oxt
-application/vnd.openxmlformats-officedocument.custom-properties+xml
-application/vnd.openxmlformats-officedocument.customXmlProperties+xml
-application/vnd.openxmlformats-officedocument.drawing+xml
-application/vnd.openxmlformats-officedocument.drawingml.chart+xml
-application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
-application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
-application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
-application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
-application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
-application/vnd.openxmlformats-officedocument.extended-properties+xml
-application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
-application/vnd.openxmlformats-officedocument.presentationml.comments+xml
-application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
-application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
-application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
+application/vnd.openxmlformats-officedocument.custom-properties+xml
+application/vnd.openxmlformats-officedocument.customXmlProperties+xml
+application/vnd.openxmlformats-officedocument.drawing+xml
+application/vnd.openxmlformats-officedocument.drawingml.chart+xml
+application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
+application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml
+application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml
+application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml
+application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml
+application/vnd.openxmlformats-officedocument.extended-properties+xml
+application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml
+application/vnd.openxmlformats-officedocument.presentationml.comments+xml
+application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml
+application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml
+application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml
application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
-application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
-application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
+application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
+application/vnd.openxmlformats-officedocument.presentationml.presProps+xml
application/vnd.openxmlformats-officedocument.presentationml.slide sldx
-application/vnd.openxmlformats-officedocument.presentationml.slide+xml
-application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
-application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
+application/vnd.openxmlformats-officedocument.presentationml.slide+xml
+application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml
+application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml
application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
-application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
-application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
-application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
-application/vnd.openxmlformats-officedocument.presentationml.tags+xml
+application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
+application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml
+application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml
+application/vnd.openxmlformats-officedocument.presentationml.tags+xml
application/vnd.openxmlformats-officedocument.presentationml.template potx
-application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
-application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
+application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
+application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
-application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml
application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
-application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
-application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
-application/vnd.openxmlformats-officedocument.theme+xml
-application/vnd.openxmlformats-officedocument.themeOverride+xml
-application/vnd.openxmlformats-officedocument.vmlDrawing
-application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml
+application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
+application/vnd.openxmlformats-officedocument.theme+xml
+application/vnd.openxmlformats-officedocument.themeOverride+xml
+application/vnd.openxmlformats-officedocument.vmlDrawing
+application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
-application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
-application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
-application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
-application/vnd.openxmlformats-package.core-properties+xml
-application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
-application/vnd.openxmlformats-package.relationships+xml
-application/vnd.oracle.resource+json
-application/vnd.orange.indata
-application/vnd.osa.netdeploy
+application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
+application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml
+application/vnd.openxmlformats-package.core-properties+xml
+application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
+application/vnd.openxmlformats-package.relationships+xml
+application/vnd.oracle.resource+json
+application/vnd.orange.indata
+application/vnd.osa.netdeploy
application/vnd.osgeo.mapguide.package mgp
-application/vnd.osgi.bundle
+application/vnd.osgi.bundle
application/vnd.osgi.dp dp
application/vnd.osgi.subsystem esa
-application/vnd.otps.ct-kip+xml
+application/vnd.otps.ct-kip+xml
application/vnd.palm prc pdb pqa oprc
-application/vnd.panoply
-application/vnd.paos.xml
+application/vnd.panoply
+application/vnd.paos.xml
application/vnd.pawaafile paw
-application/vnd.pcos
+application/vnd.pcos
application/vnd.pg.format str
application/vnd.pg.osasli ei6
-application/vnd.piaccess.application-licence
+application/vnd.piaccess.application-licence
application/vnd.picsel efif
application/vnd.pmi.widget wg
-application/vnd.poc.group-advertisement+xml
+application/vnd.poc.group-advertisement+xml
application/vnd.pocketlearn plf
application/vnd.powerbuilder6 pbd
-application/vnd.powerbuilder6-s
-application/vnd.powerbuilder7
-application/vnd.powerbuilder7-s
-application/vnd.powerbuilder75
-application/vnd.powerbuilder75-s
-application/vnd.preminet
+application/vnd.powerbuilder6-s
+application/vnd.powerbuilder7
+application/vnd.powerbuilder7-s
+application/vnd.powerbuilder75
+application/vnd.powerbuilder75-s
+application/vnd.preminet
application/vnd.previewsystems.box box
application/vnd.proteus.magazine mgz
application/vnd.publishare-delta-tree qps
application/vnd.pvi.ptid1 pti ptid
-application/vnd.pwg-multiplexed
-application/vnd.pwg-xhtml-print+xml
-application/vnd.qualcomm.brew-app-res
+application/vnd.pwg-multiplexed
+application/vnd.pwg-xhtml-print+xml
+application/vnd.qualcomm.brew-app-res
application/vnd.Quark.QuarkXPress qxd qxt qwd qwt qxl qxb
-application/vnd.quobject-quoxdocument
-application/vnd.radisys.moml+xml
-application/vnd.radisys.msml+xml
-application/vnd.radisys.msml-audit+xml
-application/vnd.radisys.msml-audit-conf+xml
-application/vnd.radisys.msml-audit-conn+xml
-application/vnd.radisys.msml-audit-dialog+xml
-application/vnd.radisys.msml-audit-stream+xml
-application/vnd.radisys.msml-conf+xml
-application/vnd.radisys.msml-dialog+xml
-application/vnd.radisys.msml-dialog-base+xml
-application/vnd.radisys.msml-dialog-fax-detect+xml
-application/vnd.radisys.msml-dialog-fax-sendrecv+xml
-application/vnd.radisys.msml-dialog-group+xml
-application/vnd.radisys.msml-dialog-speech+xml
-application/vnd.radisys.msml-dialog-transform+xml
-application/vnd.rainstor.data
-application/vnd.rapid
+application/vnd.quobject-quoxdocument
+application/vnd.radisys.moml+xml
+application/vnd.radisys.msml+xml
+application/vnd.radisys.msml-audit+xml
+application/vnd.radisys.msml-audit-conf+xml
+application/vnd.radisys.msml-audit-conn+xml
+application/vnd.radisys.msml-audit-dialog+xml
+application/vnd.radisys.msml-audit-stream+xml
+application/vnd.radisys.msml-conf+xml
+application/vnd.radisys.msml-dialog+xml
+application/vnd.radisys.msml-dialog-base+xml
+application/vnd.radisys.msml-dialog-fax-detect+xml
+application/vnd.radisys.msml-dialog-fax-sendrecv+xml
+application/vnd.radisys.msml-dialog-group+xml
+application/vnd.radisys.msml-dialog-speech+xml
+application/vnd.radisys.msml-dialog-transform+xml
+application/vnd.rainstor.data
+application/vnd.rapid
application/vnd.realvnc.bed bed
application/vnd.recordare.musicxml mxl
application/vnd.recordare.musicxml+xml musicxml
-application/vnd.RenLearn.rlprint
+application/vnd.RenLearn.rlprint
application/vnd.rig.cryptonote cryptonote
application/vnd.rim.cod cod
application/vnd.rn-realmedia rm
application/vnd.rn-realmedia-vbr rmvb
application/vnd.route66.link66+xml link66
-application/vnd.rs-274x
-application/vnd.ruckus.download
-application/vnd.s3sms
+application/vnd.rs-274x
+application/vnd.ruckus.download
+application/vnd.s3sms
application/vnd.sailingtracker.track st
-application/vnd.sbm.cid
-application/vnd.sbm.mid2
-application/vnd.scribus
-application/vnd.sealed.3df
-application/vnd.sealed.csf
+application/vnd.sbm.cid
+application/vnd.sbm.mid2
+application/vnd.scribus
+application/vnd.sealed.3df
+application/vnd.sealed.csf
application/vnd.sealed.doc sdoc sdo s1w
application/vnd.sealed.eml seml sem
application/vnd.sealed.mht smht smh
-application/vnd.sealed.net
+application/vnd.sealed.net
application/vnd.sealed.ppt sppt spp s1p
-application/vnd.sealed.tiff
+application/vnd.sealed.tiff
application/vnd.sealed.xls sxls sxl s1e
application/vnd.sealedmedia.softseal.html stml stm s1h
application/vnd.sealedmedia.softseal.pdf spdf spd s1a
@@ -1044,18 +1045,18 @@ application/vnd.shana.informed.formtemplate itp
application/vnd.shana.informed.interchange iif
application/vnd.shana.informed.package ipk
application/vnd.SimTech-MindMapper twd twds
-application/vnd.siren+json
+application/vnd.siren+json
application/vnd.smaf mmf
-application/vnd.smart.notebook
+application/vnd.smart.notebook
application/vnd.smart.teacher teacher
-application/vnd.software602.filler.form+xml
-application/vnd.software602.filler.form-xml-zip
+application/vnd.software602.filler.form+xml
+application/vnd.software602.filler.form-xml-zip
application/vnd.solent.sdkm+xml sdkd sdkm
application/vnd.spotfire.dxp dxp
application/vnd.spotfire.sfs sfs
-application/vnd.sss-cod
-application/vnd.sss-dtf
-application/vnd.sss-ntf
+application/vnd.sss-cod
+application/vnd.sss-dtf
+application/vnd.sss-ntf
application/vnd.stardivision.calc sdc
application/vnd.stardivision.chart sds
application/vnd.stardivision.draw sda
@@ -1065,8 +1066,8 @@ application/vnd.stardivision.writer sdw vor
application/vnd.stardivision.writer-global sgl
application/vnd.stepmania.package smzip
application/vnd.stepmania.stepchart sm
-application/vnd.street-stream
-application/vnd.sun.wadl+xml
+application/vnd.street-stream
+application/vnd.sun.wadl+xml
application/vnd.sun.xml.calc sxc
application/vnd.sun.xml.calc.template stc
application/vnd.sun.xml.draw sxd
@@ -1079,53 +1080,53 @@ application/vnd.sun.xml.writer.global sxg
application/vnd.sun.xml.writer.template stw
application/vnd.sus-calendar sus susp
application/vnd.svd svd
-application/vnd.swiftview-ics
+application/vnd.swiftview-ics
application/vnd.symbian.install sis sisx
application/vnd.syncml+xml xsm
application/vnd.syncml.dm+wbxml bdm
application/vnd.syncml.dm+xml xdm
-application/vnd.syncml.dm.notification
-application/vnd.syncml.dmddf+wbxml
-application/vnd.syncml.dmddf+xml
-application/vnd.syncml.dmtnds+wbxml
-application/vnd.syncml.dmtnds+xml
-application/vnd.syncml.ds.notification
+application/vnd.syncml.dm.notification
+application/vnd.syncml.dmddf+wbxml
+application/vnd.syncml.dmddf+xml
+application/vnd.syncml.dmtnds+wbxml
+application/vnd.syncml.dmtnds+xml
+application/vnd.syncml.ds.notification
application/vnd.tao.intent-module-archive tao
application/vnd.tcpdump.pcap cap dmp pcap
-application/vnd.tmd.mediaflex.api+xml
+application/vnd.tmd.mediaflex.api+xml
application/vnd.tmobile-livetv tmo
application/vnd.trid.tpt tpt
application/vnd.triscape.mxs mxs
application/vnd.trueapp tra
-application/vnd.truedoc
-application/vnd.ubisoft.webplayer
+application/vnd.truedoc
+application/vnd.ubisoft.webplayer
application/vnd.ufdl ufd ufdl
application/vnd.uiq.theme utz
application/vnd.umajin umj
application/vnd.unity unityweb
application/vnd.uoml+xml uoml
-application/vnd.uplanet.alert
-application/vnd.uplanet.alert-wbxml
-application/vnd.uplanet.bearer-choice
-application/vnd.uplanet.bearer-choice-wbxml
-application/vnd.uplanet.cacheop
-application/vnd.uplanet.cacheop-wbxml
-application/vnd.uplanet.channel
-application/vnd.uplanet.channel-wbxml
-application/vnd.uplanet.list
-application/vnd.uplanet.list-wbxml
-application/vnd.uplanet.listcmd
-application/vnd.uplanet.listcmd-wbxml
-application/vnd.uplanet.signal
-application/vnd.valve.source.material
+application/vnd.uplanet.alert
+application/vnd.uplanet.alert-wbxml
+application/vnd.uplanet.bearer-choice
+application/vnd.uplanet.bearer-choice-wbxml
+application/vnd.uplanet.cacheop
+application/vnd.uplanet.cacheop-wbxml
+application/vnd.uplanet.channel
+application/vnd.uplanet.channel-wbxml
+application/vnd.uplanet.list
+application/vnd.uplanet.list-wbxml
+application/vnd.uplanet.listcmd
+application/vnd.uplanet.listcmd-wbxml
+application/vnd.uplanet.signal
+application/vnd.valve.source.material
application/vnd.vcx vcx
-application/vnd.vd-study
-application/vnd.vectorworks
-application/vnd.verimatrix.vcas
+application/vnd.vd-study
+application/vnd.vectorworks
+application/vnd.verimatrix.vcas
application/vnd.vidsoft.vidconference vsc
application/vnd.visio vsd vst vsw vss
application/vnd.visionary vis
-application/vnd.vividence.scriptfile
+application/vnd.vividence.scriptfile
application/vnd.vsf vsf
application/vnd.wap.sic sic
application/vnd.wap.slc slc
@@ -1133,53 +1134,53 @@ application/vnd.wap.wbxml wbxml
application/vnd.wap.wmlc wmlc
application/vnd.wap.wmlscriptc wmlsc
application/vnd.webturbo wtb
-application/vnd.wfa.p2p
-application/vnd.wfa.wsc
-application/vnd.windows.devicepairing
-application/vnd.wmc
-application/vnd.wmf.bootstrap
-application/vnd.wolfram.mathematica
-application/vnd.wolfram.mathematica.package
+application/vnd.wfa.p2p
+application/vnd.wfa.wsc
+application/vnd.windows.devicepairing
+application/vnd.wmc
+application/vnd.wmf.bootstrap
+application/vnd.wolfram.mathematica
+application/vnd.wolfram.mathematica.package
application/vnd.wolfram.player nbp
application/vnd.wordperfect wpd
application/vnd.wqd wqd
-application/vnd.wrq-hp3000-labelled
+application/vnd.wrq-hp3000-labelled
application/vnd.wt.stf stf
application/vnd.wv.csp+wbxml wv
-application/vnd.wv.csp+xml
-application/vnd.wv.ssp+xml
-application/vnd.xacml+json
+application/vnd.wv.csp+xml
+application/vnd.wv.ssp+xml
+application/vnd.xacml+json
application/vnd.xara xar
application/vnd.xfdl xfdl
-application/vnd.xfdl.webform
-application/vnd.xmi+xml
-application/vnd.xmpie.cpkg
-application/vnd.xmpie.dpkg
-application/vnd.xmpie.plan
-application/vnd.xmpie.ppkg
-application/vnd.xmpie.xlim
+application/vnd.xfdl.webform
+application/vnd.xmi+xml
+application/vnd.xmpie.cpkg
+application/vnd.xmpie.dpkg
+application/vnd.xmpie.plan
+application/vnd.xmpie.ppkg
+application/vnd.xmpie.xlim
application/vnd.yamaha.hv-dic hvd
application/vnd.yamaha.hv-script hvs
application/vnd.yamaha.hv-voice hvp
application/vnd.yamaha.openscoreformat osf
application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
-application/vnd.yamaha.remote-setup
+application/vnd.yamaha.remote-setup
application/vnd.yamaha.smaf-audio saf
application/vnd.yamaha.smaf-phrase spf
-application/vnd.yamaha.through-ngn
-application/vnd.yamaha.tunnel-udpencap
-application/vnd.yaoweme
+application/vnd.yamaha.through-ngn
+application/vnd.yamaha.tunnel-udpencap
+application/vnd.yaoweme
application/vnd.yellowriver-custom-menu cmp
application/vnd.zul zir zirz
application/vnd.zzazz.deck+xml zaz
application/voicexml+xml vxml
-application/vq-rtcpxr
+application/vq-rtcpxr
application/watcherinfo+xml wif
-application/whoispp-query
-application/whoispp-response
+application/whoispp-query
+application/whoispp-response
application/widget wgt
application/winhlp hlp
-application/wita
+application/wita
application/word doc dot
application/wordperfect wp
application/wordperfect5.1 wp5 wp
@@ -1208,7 +1209,7 @@ application/x-cfs-compressed cfs
application/x-chat chat
application/x-chess-pgn pgn
application/x-chrome-extension crx
-application/x-clariscad
+application/x-clariscad
application/x-compress z Z
application/x-compressed z Z
application/x-conference nsc
@@ -1219,15 +1220,15 @@ application/x-debian-package deb udeb
application/x-dgc-compressed dgc
application/x-director dcr @dir @dxr cct cst cxt dir dxr fgd swa w3d
application/x-doom wad
-application/x-drafting
+application/x-drafting
application/x-dtbncx+xml ncx
application/x-dtbook+xml dtb
application/x-dtbresource+xml res
application/x-dvi dvi
-application/x-dxf
+application/x-dxf
application/x-envoy evy
application/x-eva eva
-application/x-excel
+application/x-excel
application/x-font-bdf bdf
application/x-font-ghostscript gsf
application/x-font-linux-psf psf
@@ -1238,11 +1239,11 @@ application/x-font-snf snf
application/x-font-truetype ttf
application/x-font-ttf ttc ttf
application/x-font-type1 afm pfa pfb pfm
-application/x-fractals
+application/x-fractals
application/x-freearc arc
application/x-futuresplash spl
application/x-gca-compressed gca
-application/x-ghostview
+application/x-ghostview
application/x-glulx ulx
application/x-gnumeric gnumeric
application/x-gramps-xml gramps
@@ -1254,7 +1255,7 @@ application/x-html+ruby rhtml
application/x-httpd-php phtml pht php
application/x-ibooks+zip ibooks
application/x-ica ica
-application/x-ideas
+application/x-ideas
application/x-imagemap imagemap imap
application/x-install-instructions install
application/x-iso9660-image iso
@@ -1273,10 +1274,10 @@ application/x-lzh-compressed lha lzh
application/x-mac bin
application/x-mac-compactpro cpt
application/x-macbase64 bin
-application/x-macbinary
+application/x-macbinary
application/x-maker frm maker frame fm fb book fbdoc
application/x-mathcad mcd
-application/x-mathematica-old
+application/x-mathematica-old
application/x-mie mie
application/x-mif mif
application/x-mobipocket-ebook mobi prc
@@ -1305,27 +1306,27 @@ application/x-nzb nzb
application/x-opera-extension oex
application/x-pagemaker pm pm5 pt5
application/x-perl pl pm
-application/x-pgp
+application/x-pgp
application/x-pkcs12 p12 pfx
application/x-pkcs7-certificates p7b spc
application/x-pkcs7-certreqresp p7r
application/x-python py
application/x-quicktimeplayer qtl
application/x-rar-compressed rar
-application/x-remote_printing
+application/x-remote_printing
application/x-research-info-systems ris
application/x-rtf rtf
application/x-ruby rb rbw
-application/x-set
+application/x-set
application/x-sh sh
application/x-shar shar
application/x-shockwave-flash swf
application/x-silverlight-app xap
-application/x-SLA
-application/x-solids
+application/x-SLA
+application/x-solids
application/x-spss sav sbs sps spo spp
application/x-sql sql
-application/x-STEP
+application/x-STEP
application/x-stuffit sit
application/x-stuffitx sitx
application/x-subrip srt
@@ -1344,7 +1345,7 @@ application/x-troff t tr roff
application/x-troff-man man
application/x-troff-me me
application/x-troff-ms ms
-application/x-u-star
+application/x-u-star
application/x-ustar ustar
application/x-VMSBACKUP bck
application/x-wais-source src
@@ -1354,33 +1355,33 @@ application/x-word doc dot
application/x-wordperfect wp
application/x-wordperfect6.1 wp6
application/x-wordperfectd wpd
-application/x-www-form-urlencoded
+application/x-www-form-urlencoded
application/x-x509-ca-cert crt der
application/x-xfig fig
application/x-xliff+xml xlf
application/x-xpinstall xpi
application/x-xz xz
application/x-zmachine z1 z2 z3 z4 z5 z6 z7 z8
-application/x400-bp
-application/x400.bp
-application/xacml+xml
+application/x400-bp
+application/x400.bp
+application/xacml+xml
application/xaml+xml xaml
-application/xcap-att+xml
-application/xcap-caps+xml
+application/xcap-att+xml
+application/xcap-caps+xml
application/xcap-diff+xml xdf
-application/xcap-el+xml
-application/xcap-error+xml
-application/xcap-ns+xml
-application/xcon-conference-info+xml
-application/xcon-conference-info-diff+xml
+application/xcap-el+xml
+application/xcap-error+xml
+application/xcap-ns+xml
+application/xcon-conference-info+xml
+application/xcon-conference-info-diff+xml
application/xenc+xml xenc
application/xhtml+xml xht xhtml
-application/xhtml-voice+xml
+application/xhtml-voice+xml
application/xml xml xsl
application/xml-dtd dtd
-application/xml-external-parsed-entity
-application/xml-patch+xml
-application/xmpp+xml
+application/xml-external-parsed-entity
+application/xml-patch+xml
+application/xmpp+xml
application/xop+xml xop
application/xproc+xml xpl
application/xslt+xml xslt
@@ -1389,137 +1390,137 @@ application/xv+xml mxml xhvml xvm xvml
application/yang yang
application/yin+xml yin
application/zip zip
-application/zlib
-audio/1d-interleaved-parityfec
-audio/32kadpcm
-audio/3gpp
-audio/3gpp2
-audio/ac3
+application/zlib
+audio/1d-interleaved-parityfec
+audio/32kadpcm
+audio/3gpp
+audio/3gpp2
+audio/ac3
audio/adpcm adp
audio/AMR amr
audio/AMR-WB awb
-audio/amr-wb+
-audio/aptx
-audio/asc
-audio/ATRAC-ADVANCED-LOSSLESS
-audio/ATRAC-X
-audio/ATRAC3
+audio/amr-wb+
+audio/aptx
+audio/asc
+audio/ATRAC-ADVANCED-LOSSLESS
+audio/ATRAC-X
+audio/ATRAC3
audio/basic au snd
-audio/BV16
-audio/BV32
-audio/clearmode
-audio/CN
-audio/DAT12
-audio/dls
-audio/dsr-es201108
-audio/dsr-es202050
-audio/dsr-es202211
-audio/dsr-es202212
-audio/DV
-audio/DVI4
-audio/eac3
-audio/encaprtp
+audio/BV16
+audio/BV32
+audio/clearmode
+audio/CN
+audio/DAT12
+audio/dls
+audio/dsr-es201108
+audio/dsr-es202050
+audio/dsr-es202211
+audio/dsr-es202212
+audio/DV
+audio/DVI4
+audio/eac3
+audio/encaprtp
audio/EVRC evc
-audio/EVRC-QCP
-audio/EVRC0
-audio/EVRC1
-audio/EVRCB
-audio/EVRCB0
-audio/EVRCB1
-audio/EVRCNW
-audio/EVRCNW0
-audio/EVRCNW1
-audio/EVRCWB
-audio/EVRCWB0
-audio/EVRCWB1
-audio/example
-audio/fwdred
-audio/G719
-audio/G722
-audio/G7221
-audio/G723
-audio/G726-16
-audio/G726-24
-audio/G726-32
-audio/G726-40
-audio/G728
-audio/G729
-audio/G7291
-audio/G729D
-audio/G729E
-audio/GSM
-audio/GSM-EFR
-audio/GSM-HR-08
-audio/iLBC
-audio/ip-mr_v2.5
+audio/EVRC-QCP
+audio/EVRC0
+audio/EVRC1
+audio/EVRCB
+audio/EVRCB0
+audio/EVRCB1
+audio/EVRCNW
+audio/EVRCNW0
+audio/EVRCNW1
+audio/EVRCWB
+audio/EVRCWB0
+audio/EVRCWB1
+audio/example
+audio/fwdred
+audio/G719
+audio/G722
+audio/G7221
+audio/G723
+audio/G726-16
+audio/G726-24
+audio/G726-32
+audio/G726-40
+audio/G728
+audio/G729
+audio/G7291
+audio/G729D
+audio/G729E
+audio/GSM
+audio/GSM-EFR
+audio/GSM-HR-08
+audio/iLBC
+audio/ip-mr_v2.5
audio/L16 l16
-audio/L20
-audio/L24
-audio/L8
-audio/LPC
+audio/L20
+audio/L24
+audio/L8
+audio/LPC
audio/midi kar mid midi rmi
-audio/mobile-xmf
+audio/mobile-xmf
audio/mp4 mp4 mpg4 f4a f4b mp4a
audio/MP4A-LATM m4a
-audio/MPA
-audio/mpa-robust
+audio/MPA
+audio/mpa-robust
audio/mpeg mpga mp2 mp3 m2a m3a mp2a
-audio/mpeg4-generic
+audio/mpeg4-generic
audio/ogg oga ogg spx
-audio/opus
-audio/parityfec
-audio/PCMA
-audio/PCMA-WB
-audio/PCMU
-audio/PCMU-WB
-audio/prs.sid
-audio/QCELP
-audio/raptorfec
-audio/RED
-audio/rtp-enc-aescm128
-audio/rtp-midi
-audio/rtploopback
-audio/rtx
+audio/opus
+audio/parityfec
+audio/PCMA
+audio/PCMA-WB
+audio/PCMU
+audio/PCMU-WB
+audio/prs.sid
+audio/QCELP
+audio/raptorfec
+audio/RED
+audio/rtp-enc-aescm128
+audio/rtp-midi
+audio/rtploopback
+audio/rtx
audio/s3m s3m
audio/silk sil
audio/SMV smv
-audio/SMV-QCP
-audio/SMV0
-audio/sp-midi
-audio/speex
-audio/t140c
-audio/t38
-audio/telephone-event
-audio/tone
-audio/UEMCLIP
-audio/ulpfec
-audio/VDVI
-audio/VMR-WB
-audio/vnd.3gpp.iufp
-audio/vnd.4SB
-audio/vnd.audiokoz
-audio/vnd.CELP
-audio/vnd.cisco.nse
-audio/vnd.cmles.radio-events
-audio/vnd.cns.anp1
-audio/vnd.cns.inf1
+audio/SMV-QCP
+audio/SMV0
+audio/sp-midi
+audio/speex
+audio/t140c
+audio/t38
+audio/telephone-event
+audio/tone
+audio/UEMCLIP
+audio/ulpfec
+audio/VDVI
+audio/VMR-WB
+audio/vnd.3gpp.iufp
+audio/vnd.4SB
+audio/vnd.audiokoz
+audio/vnd.CELP
+audio/vnd.cisco.nse
+audio/vnd.cmles.radio-events
+audio/vnd.cns.anp1
+audio/vnd.cns.inf1
audio/vnd.dece.audio uva uvva
audio/vnd.digital-winds eol
-audio/vnd.dlna.adts
-audio/vnd.dolby.heaac.1
-audio/vnd.dolby.heaac.2
-audio/vnd.dolby.mlp
-audio/vnd.dolby.mps
-audio/vnd.dolby.pl2
-audio/vnd.dolby.pl2x
-audio/vnd.dolby.pl2z
-audio/vnd.dolby.pulse.1
+audio/vnd.dlna.adts
+audio/vnd.dolby.heaac.1
+audio/vnd.dolby.heaac.2
+audio/vnd.dolby.mlp
+audio/vnd.dolby.mps
+audio/vnd.dolby.pl2
+audio/vnd.dolby.pl2x
+audio/vnd.dolby.pl2z
+audio/vnd.dolby.pulse.1
audio/vnd.dra dra
audio/vnd.dts dts
audio/vnd.dts.hd dtshd
-audio/vnd.dvb.file
+audio/vnd.dvb.file
audio/vnd.everad.plj plj
-audio/vnd.hns.audio
+audio/vnd.hns.audio
audio/vnd.lucent.voice lvp
audio/vnd.ms-playready.media.pya pya
audio/vnd.nokia.mobile-xmf mxmf
@@ -1527,14 +1528,14 @@ audio/vnd.nortel.vbk vbk
audio/vnd.nuera.ecelp4800 ecelp4800
audio/vnd.nuera.ecelp7470 ecelp7470
audio/vnd.nuera.ecelp9600 ecelp9600
-audio/vnd.octel.sbc
+audio/vnd.octel.sbc
audio/vnd.qcelp qcp
-audio/vnd.rhetorex.32kadpcm
+audio/vnd.rhetorex.32kadpcm
audio/vnd.rip rip
audio/vnd.sealedmedia.softseal.mpeg smp3 smp s1m
-audio/vnd.vmx.cvsd
-audio/vorbis
-audio/vorbis-config
+audio/vnd.vmx.cvsd
+audio/vorbis
+audio/vorbis-config
audio/webm weba webm
audio/x-aac aac
audio/x-aiff aif aifc aiff
@@ -1561,9 +1562,9 @@ chemical/x-xyz xyz
drawing/dwf dwf
image/bmp bmp
image/cgm cgm
-image/cmu-raster
-image/example
-image/fits
+image/cmu-raster
+image/example
+image/fits
image/g3fax g3
image/gif gif
image/ief ief
@@ -1572,21 +1573,21 @@ image/jpeg jpeg jpg jpe
image/jpm jpm jpgm
image/jpx jpx jpf
image/ktx ktx
-image/naplps
-image/pjpeg
+image/naplps
+image/pjpeg
image/png png
image/prs.btif btif
-image/prs.pti
-image/pwg-raster
+image/prs.pti
+image/pwg-raster
image/sgi sgi
image/svg+xml svg svgz
-image/t38
+image/t38
image/targa tga
image/tiff tiff tif
-image/tiff-fx
+image/tiff-fx
image/vnd.adobe.photoshop psd
-image/vnd.airzip.accelerator.azv
-image/vnd.cns.inf2
+image/vnd.airzip.accelerator.azv
+image/vnd.cns.inf2
image/vnd.dece.graphic uvg uvi uvvg uvvi
image/vnd.dgn dgn
image/vnd.djvu djvu djv
@@ -1600,21 +1601,21 @@ image/vnd.fujixerox.edmics-mmr mmr
image/vnd.fujixerox.edmics-rlc rlc
image/vnd.globalgraphics.pgb pgb
image/vnd.microsoft.icon ico
-image/vnd.mix
+image/vnd.mix
image/vnd.ms-modi mdi
image/vnd.ms-photo wdp
image/vnd.net-fpx npx
-image/vnd.net.fpx
-image/vnd.radiance
-image/vnd.sealed.png
-image/vnd.sealedmedia.softseal.gif
-image/vnd.sealedmedia.softseal.jpg
-image/vnd.svf
-image/vnd.tencent.tap
-image/vnd.valve.source.texture
+image/vnd.net.fpx
+image/vnd.radiance
+image/vnd.sealed.png
+image/vnd.sealedmedia.softseal.gif
+image/vnd.sealedmedia.softseal.jpg
+image/vnd.svf
+image/vnd.tencent.tap
+image/vnd.valve.source.texture
image/vnd.wap.wbmp wbmp
image/vnd.xiff xif
-image/vnd.zbrush.pcx
+image/vnd.zbrush.pcx
image/webp webp
image/x-3ds 3ds
image/x-bmp bmp
@@ -1637,145 +1638,145 @@ image/x-rgb rgb
image/x-targa tga
image/x-tga tga
image/x-vnd.dgn dgn
-image/x-win-bmp
+image/x-win-bmp
image/x-xbitmap xbm
image/x-xbm xbm
image/x-xcf xcf
image/x-xpixmap xpm
image/x-xwindowdump xwd
-message/CPIM
-message/delivery-status
-message/disposition-notification
-message/example
-message/external-body
-message/feedback-report
-message/global
-message/global-delivery-status
-message/global-disposition-notification
-message/global-headers
-message/http
-message/imdn+xml
-message/news
-message/partial
+message/CPIM
+message/delivery-status
+message/disposition-notification
+message/example
+message/external-body
+message/feedback-report
+message/global
+message/global-delivery-status
+message/global-disposition-notification
+message/global-headers
+message/http
+message/imdn+xml
+message/news
+message/partial
message/rfc822 eml mime
-message/s-http
-message/sip
-message/sipfrag
-message/tracking-status
-message/vnd.si.simp
-message/vnd.wfa.wsc
-model/example
+message/s-http
+message/sip
+message/sipfrag
+message/tracking-status
+message/vnd.si.simp
+message/vnd.wfa.wsc
+model/example
model/iges igs iges
model/mesh msh mesh silo
model/vnd.collada+xml dae
model/vnd.dwf dwf
-model/vnd.flatland.3dml
+model/vnd.flatland.3dml
model/vnd.gdl gdl
-model/vnd.gs-gdl
+model/vnd.gs-gdl
model/vnd.gtw gtw
-model/vnd.moml+xml
+model/vnd.moml+xml
model/vnd.mts mts
-model/vnd.opengex
+model/vnd.opengex
model/vnd.parasolid.transmit.binary x_b xmt_bin
model/vnd.parasolid.transmit.text x_t xmt_txt
-model/vnd.valve.source.compiled-map
+model/vnd.valve.source.compiled-map
model/vnd.vtu vtu
model/vrml wrl vrml
model/x3d+binary x3db x3dbz
-model/x3d+fastinfoset
+model/x3d+fastinfoset
model/x3d+vrml x3dv x3dvz
model/x3d+xml x3d x3dz
-model/x3d-vrml
-multipart/alternative
-multipart/appledouble
-multipart/byteranges
-multipart/digest
-multipart/encrypted
-multipart/example
-multipart/form-data
-multipart/header-set
-multipart/mixed
-multipart/parallel
-multipart/related
-multipart/report
-multipart/signed
-multipart/voice-message
-multipart/x-gzip
-multipart/x-mixed-replace
-multipart/x-parallel
-multipart/x-tar
-multipart/x-ustar
-multipart/x-www-form-urlencoded
-multipart/x-zip
-text/1d-interleaved-parityfec
+model/x3d-vrml
+multipart/alternative
+multipart/appledouble
+multipart/byteranges
+multipart/digest
+multipart/encrypted
+multipart/example
+multipart/form-data
+multipart/header-set
+multipart/mixed
+multipart/parallel
+multipart/related
+multipart/report
+multipart/signed
+multipart/voice-message
+multipart/x-gzip
+multipart/x-mixed-replace
+multipart/x-parallel
+multipart/x-tar
+multipart/x-ustar
+multipart/x-www-form-urlencoded
+multipart/x-zip
+text/1d-interleaved-parityfec
text/cache-manifest appcache manifest
text/calendar ics ifb
text/comma-separated-values csv
text/css css
text/csv csv
-text/csv-schema
-text/directory
-text/dns
-text/ecmascript
-text/encaprtp
-text/enriched
-text/example
-text/fwdred
-text/grammar-ref-list
+text/csv-schema
+text/directory
+text/dns
+text/ecmascript
+text/encaprtp
+text/enriched
+text/example
+text/fwdred
+text/grammar-ref-list
text/html html htm htmlx shtml htx
text/javascript js
-text/jcr-cnd
-text/markdown
-text/mizar
+text/jcr-cnd
+text/markdown
+text/mizar
text/n3 n3
-text/parameters
-text/parityfec
+text/parameters
+text/parityfec
text/plain txt asc c cc h hh cpp hpp dat hlp conf def doc in list log markdown md rst text textile
-text/provenance-notation
+text/provenance-notation
text/prs.fallenstein.rst rst
text/prs.lines.tag dsc
-text/raptorfec
-text/RED
-text/rfc822-headers
+text/raptorfec
+text/RED
+text/rfc822-headers
text/richtext rtx
text/rtf rtf
-text/rtp-enc-aescm128
-text/rtploopback
-text/rtx
+text/rtp-enc-aescm128
+text/rtploopback
+text/rtx
text/sgml sgml sgm
-text/t140
+text/t140
text/tab-separated-values tsv
text/troff t tr roff troff man me ms
text/turtle ttl
-text/ulpfec
+text/ulpfec
text/uri-list uri uris urls
text/vcard vcard
-text/vnd.a
-text/vnd.abc
+text/vnd.a
+text/vnd.abc
text/vnd.curl curl
text/vnd.curl.dcurl dcurl
text/vnd.curl.mcurl mcurl
text/vnd.curl.scurl scurl
-text/vnd.debian.copyright
-text/vnd.DMClientScript
+text/vnd.debian.copyright
+text/vnd.DMClientScript
text/vnd.dvb.subtitle sub
-text/vnd.esmertec.theme-descriptor
-text/vnd.flatland.3dml
+text/vnd.esmertec.theme-descriptor
+text/vnd.flatland.3dml
text/vnd.fly fly
text/vnd.fmi.flexstor flx
text/vnd.graphviz gv
text/vnd.in3d.3dml 3dml
text/vnd.in3d.spot spot
-text/vnd.IPTC.NewsML
-text/vnd.IPTC.NITF
-text/vnd.latex-z
-text/vnd.motorola.reflex
-text/vnd.ms-mediapackage
+text/vnd.IPTC.NewsML
+text/vnd.IPTC.NITF
+text/vnd.latex-z
+text/vnd.motorola.reflex
+text/vnd.ms-mediapackage
text/vnd.net2phone.commcenter.command ccc
-text/vnd.radisys.msml-basic-layout
-text/vnd.si.uricatalogue
+text/vnd.radisys.msml-basic-layout
+text/vnd.si.uricatalogue
text/vnd.sun.j2me.app-descriptor jad
-text/vnd.trolltech.linguist
+text/vnd.trolltech.linguist
text/vnd.wap.si si
text/vnd.wap.sl sl
text/vnd.wap.wml wml
@@ -1795,83 +1796,83 @@ text/x-sfv sfv
text/x-uuencode uu
text/x-vcalendar vcs
text/x-vcard vcf
-text/x-vnd.flatland.3dml
+text/x-vnd.flatland.3dml
text/x-yaml yaml yml
text/xml xml dtd
-text/xml-external-parsed-entity
-video/1d-interleaved-parityfec
+text/xml-external-parsed-entity
+video/1d-interleaved-parityfec
video/3gpp 3gp 3gpp
-video/3gpp-tt
+video/3gpp-tt
video/3gpp2 3g2 3gpp2
-video/BMPEG
-video/BT656
-video/CelB
+video/BMPEG
+video/BT656
+video/CelB
video/dl dl
video/DV dv
-video/encaprtp
-video/example
+video/encaprtp
+video/example
video/gl gl
video/H261 h261
video/H263 h263
-video/H263-1998
-video/H263-2000
+video/H263-1998
+video/H263-2000
video/H264 h264
-video/H264-RCDO
-video/H264-SVC
-video/iso.segment
+video/H264-RCDO
+video/H264-SVC
+video/iso.segment
video/JPEG jpgv
-video/jpeg2000
+video/jpeg2000
video/jpm jpgm jpm
video/MJ2 mj2 mjp2
-video/MP1S
-video/MP2P
+video/MP1S
+video/MP2P
video/MP2T ts
video/mp4 mp4 mpg4 f4v f4p mp4v
-video/MP4V-ES
+video/MP4V-ES
video/mpeg mp2 mp3g mpe mpeg mpg m1v m2v
-video/mpeg4-generic
-video/MPV
-video/nv
+video/mpeg4-generic
+video/MPV
+video/nv
video/ogg ogg ogv
-video/parityfec
-video/pointer
+video/parityfec
+video/pointer
video/quicktime qt mov
-video/raptorfec
-video/raw
-video/rtp-enc-aescm128
-video/rtploopback
-video/rtx
-video/SMPTE292M
-video/ulpfec
-video/vc1
-video/vnd.CCTV
+video/raptorfec
+video/raw
+video/rtp-enc-aescm128
+video/rtploopback
+video/rtx
+video/SMPTE292M
+video/ulpfec
+video/vc1
+video/vnd.CCTV
video/vnd.dece.hd uvh uvvh
video/vnd.dece.mobile uvm uvvm
-video/vnd.dece.mp4
+video/vnd.dece.mp4
video/vnd.dece.pd uvp uvvp
video/vnd.dece.sd uvs uvvs
video/vnd.dece.video uvv uvvv
-video/vnd.directv.mpeg
-video/vnd.directv.mpeg-tts
-video/vnd.dlna.mpeg-tts
+video/vnd.directv.mpeg
+video/vnd.directv.mpeg-tts
+video/vnd.dlna.mpeg-tts
video/vnd.dvb.file dvb
video/vnd.fvt fvt
-video/vnd.hns.video
-video/vnd.iptvforum.1dparityfec-1010
-video/vnd.iptvforum.1dparityfec-2005
-video/vnd.iptvforum.2dparityfec-1010
-video/vnd.iptvforum.2dparityfec-2005
-video/vnd.iptvforum.ttsavc
-video/vnd.iptvforum.ttsmpeg2
-video/vnd.motorola.video
-video/vnd.motorola.videop
+video/vnd.hns.video
+video/vnd.iptvforum.1dparityfec-1010
+video/vnd.iptvforum.1dparityfec-2005
+video/vnd.iptvforum.2dparityfec-1010
+video/vnd.iptvforum.2dparityfec-2005
+video/vnd.iptvforum.ttsavc
+video/vnd.iptvforum.ttsmpeg2
+video/vnd.motorola.video
+video/vnd.motorola.videop
video/vnd.mpegurl mxu m4u
video/vnd.ms-playready.media.pyv pyv
video/vnd.nokia.interleaved-multimedia nim
-video/vnd.nokia.videovoip
+video/vnd.nokia.videovoip
video/vnd.objectvideo mp4 m4v
-video/vnd.radgamettools.bink
-video/vnd.radgamettools.smacker
+video/vnd.radgamettools.bink
+video/vnd.radgamettools.smacker
video/vnd.sealed.mpeg1 s11
video/vnd.sealed.mpeg4 smpg s14
video/vnd.sealed.swf sswf ssw
diff --git a/data/mime.docs.column b/data/mime.docs.column
index 424dcf7..74e453f 100644
--- a/data/mime.docs.column
+++ b/data/mime.docs.column
@@ -1573,6 +1573,7 @@
-
-
-
+-
Fixes a bug with IE6 and progressive JPEGs
-
-
diff --git a/data/mime.encoding.column b/data/mime.encoding.column
index c3f21de..9c28d63 100644
--- a/data/mime.encoding.column
+++ b/data/mime.encoding.column
@@ -549,6 +549,7 @@ base64
base64
base64
base64
+base64
7bit
base64
base64
diff --git a/data/mime.friendly.column b/data/mime.friendly.column
index 3fceadc..1e7d93b 100644
--- a/data/mime.friendly.column
+++ b/data/mime.friendly.column
@@ -401,6 +401,7 @@ en^Audiograph
-
-
-
+-
en^Blueice Research Multipass
-
-
diff --git a/data/mime.obsolete.column b/data/mime.obsolete.column
index d7f33c6..23e8e50 100644
--- a/data/mime.obsolete.column
+++ b/data/mime.obsolete.column
@@ -566,6 +566,7 @@
0
0
0
+0
1
0
0
diff --git a/data/mime.references.column b/data/mime.references.column
index 4947ea8..752c20c 100644
--- a/data/mime.references.column
+++ b/data/mime.references.column
@@ -136,16 +136,16 @@ IANA|[W3C]|[ITS-IG-W3C]|{application/its+xml=http://www.iana.org/assignments/med
-
-
IANA|RFC4329|{application/javascript=http://www.iana.org/assignments/media-types/application/javascript}
-IANA|DRAFT:draft-ietf-jose-json-web-signature-41|{application/jose=http://www.iana.org/assignments/media-types/application/jose}
-IANA|DRAFT:draft-ietf-jose-json-web-signature-41|{application/jose+json=http://www.iana.org/assignments/media-types/application/jose+json}
+IANA|RFC7515|{application/jose=http://www.iana.org/assignments/media-types/application/jose}
+IANA|RFC7515|{application/jose+json=http://www.iana.org/assignments/media-types/application/jose+json}
IANA|RFC7033|{application/jrd+json=http://www.iana.org/assignments/media-types/application/jrd+json}
IANA|RFC7158|{application/json=http://www.iana.org/assignments/media-types/application/json}
IANA|RFC6902|{application/json-patch+json=http://www.iana.org/assignments/media-types/application/json-patch+json}
IANA|RFC7464|{application/json-seq=http://www.iana.org/assignments/media-types/application/json-seq}
-
-IANA|DRAFT:draft-ietf-jose-json-web-key-41|{application/jwk+json=http://www.iana.org/assignments/media-types/application/jwk+json}
-IANA|DRAFT:draft-ietf-jose-json-web-key-41|{application/jwk-set+json=http://www.iana.org/assignments/media-types/application/jwk-set+json}
-IANA|DRAFT:draft-ietf-oauth-json-web-token-32|{application/jwt=http://www.iana.org/assignments/media-types/application/jwt}
+IANA|RFC7517|{application/jwk+json=http://www.iana.org/assignments/media-types/application/jwk+json}
+IANA|RFC7517|{application/jwk-set+json=http://www.iana.org/assignments/media-types/application/jwk-set+json}
+IANA|RFC7519|{application/jwt=http://www.iana.org/assignments/media-types/application/jwt}
IANA|RFC4730|{application/kpml-request+xml=http://www.iana.org/assignments/media-types/application/kpml-request+xml}
IANA|RFC4730|{application/kpml-response+xml=http://www.iana.org/assignments/media-types/application/kpml-response+xml}
IANA|[W3C]|[Ivan_Herman]|{application/ld+json=http://www.iana.org/assignments/media-types/application/ld+json}
@@ -400,6 +400,7 @@ IANA|[Horia_Cristian_Slusanschi]|{application/vnd.audiograph=http://www.iana.org
IANA|[Mike_Hearn]|{application/vnd.autopackage=http://www.iana.org/assignments/media-types/application/vnd.autopackage}
IANA|[Vladimir_Vysotsky]|{application/vnd.avistar+xml=http://www.iana.org/assignments/media-types/application/vnd.avistar+xml}
IANA|[Giacomo_Guilizzoni]|{application/vnd.balsamiq.bmml+xml=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmml+xml}
+IANA|[Giacomo_Guilizzoni]|{application/vnd.balsamiq.bmpr=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmpr}
IANA|[Jegulsky]|{application/vnd.bekitzur-stech+json=http://www.iana.org/assignments/media-types/application/vnd.bekitzur-stech+json}
IANA|[Thomas_Holmstrom]|{application/vnd.blueice.multipass=http://www.iana.org/assignments/media-types/application/vnd.blueice.multipass}
IANA|[Mike_Foley]|{application/vnd.bluetooth.ep.oob=http://www.iana.org/assignments/media-types/application/vnd.bluetooth.ep.oob}
diff --git a/data/mime.registered.column b/data/mime.registered.column
index d62cb4b..c807626 100644
--- a/data/mime.registered.column
+++ b/data/mime.registered.column
@@ -443,6 +443,7 @@
1
1
1
+1
0
0
1
diff --git a/data/mime.signature.column b/data/mime.signature.column
index d3d4f61..6564ad1 100644
--- a/data/mime.signature.column
+++ b/data/mime.signature.column
@@ -1305,6 +1305,7 @@
0
0
0
+0
1
0
0
diff --git a/data/mime.system.column b/data/mime.system.column
index d740a72..97b9bfa 100644
--- a/data/mime.system.column
+++ b/data/mime.system.column
@@ -1192,6 +1192,7 @@
-
-
-
+-
(?-mix:mac)
-
-
diff --git a/data/mime.use_instead.column b/data/mime.use_instead.column
index 2c00ed9..021a2c5 100644
--- a/data/mime.use_instead.column
+++ b/data/mime.use_instead.column
@@ -628,6 +628,7 @@ application/vnd.aristanetworks.swi
-
-
-
+-
application/vnd.visionary
-
-
diff --git a/data/mime.xrefs.column b/data/mime.xrefs.column
index 11615de..b486eaa 100644
--- a/data/mime.xrefs.column
+++ b/data/mime.xrefs.column
@@ -85,7 +85,7 @@ rfc^rfc4329|template^application/ecmascript
rfc^rfc1767|template^application/EDI-consent
rfc^rfc1767|template^application/EDI-X12
rfc^rfc1767|template^application/EDIFACT
-person^W3C|text^|uri^http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration
+person^W3C|uri^http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration
person^Kazuyuki_Ashimura^W3C|template^application/emotionml+xml
rfc^rfc6849|template^application/encaprtp
rfc^rfc5730|template^application/epp+xml
@@ -98,7 +98,7 @@ person^ITU-T_ASN.1_Rapporteur|template^application/fastinfoset
person^ITU-T_ASN.1_Rapporteur|template^application/fastsoap
rfc^rfc6726|template^application/fdt+xml
rfc^rfc4047|template^application/fits
-person^Levantovsky|template^application/font-sfnt|text^
+person^Levantovsky|template^application/font-sfnt
rfc^rfc3073|template^application/font-tdpfr
person^W3C|template^application/font-woff
-
@@ -136,16 +136,16 @@ person^ITS-IG-W3C^W3C|template^application/its+xml
-
-
rfc^rfc4329|template^application/javascript
-draft^RFC-ietf-jose-json-web-signature-41|template^application/jose
-draft^RFC-ietf-jose-json-web-signature-41|template^application/jose+json
+rfc^rfc7515|template^application/jose
+rfc^rfc7515|template^application/jose+json
rfc^rfc7033|template^application/jrd+json
rfc^rfc7158|template^application/json
rfc^rfc6902|template^application/json-patch+json
rfc^rfc7464|template^application/json-seq
-
-draft^RFC-ietf-jose-json-web-key-41|template^application/jwk+json
-draft^RFC-ietf-jose-json-web-key-41|template^application/jwk-set+json
-draft^RFC-ietf-oauth-json-web-token-32|template^application/jwt
+rfc^rfc7517|template^application/jwk+json
+rfc^rfc7517|template^application/jwk-set+json
+rfc^rfc7519|template^application/jwt
rfc^rfc4730|template^application/kpml-request+xml
rfc^rfc4730|template^application/kpml-response+xml
person^Ivan_Herman^W3C|template^application/ld+json
@@ -343,9 +343,9 @@ rfc^rfc5955|template^application/timestamped-data
person^W3C^W3C_Timed_Text_Working_Group|template^application/ttml+xml
person^Linda_Welsh|template^application/tve-trigger
rfc^rfc5109|template^application/ulpfec
-person^Gottfried_Zimmermann|template^application/urc-grpsheet+xml|text^
-person^Gottfried_Zimmermann|template^application/urc-ressheet+xml|text^
-person^Gottfried_Zimmermann|template^application/urc-targetdesc+xml|text^
+person^Gottfried_Zimmermann|template^application/urc-grpsheet+xml
+person^Gottfried_Zimmermann|template^application/urc-ressheet+xml
+person^Gottfried_Zimmermann|template^application/urc-targetdesc+xml
person^Gottfried_Zimmermann|template^application/urc-uisocketdesc+xml
rfc^rfc7095|template^application/vcard+json
rfc^rfc6351|template^application/vcard+xml
@@ -400,6 +400,7 @@ person^Horia_Cristian_Slusanschi|template^application/vnd.audiograph
person^Mike_Hearn|template^application/vnd.autopackage
person^Vladimir_Vysotsky|template^application/vnd.avistar+xml
person^Giacomo_Guilizzoni|template^application/vnd.balsamiq.bmml+xml
+person^Giacomo_Guilizzoni|template^application/vnd.balsamiq.bmpr
person^Jegulsky|template^application/vnd.bekitzur-stech+json
person^Thomas_Holmstrom|template^application/vnd.blueice.multipass
person^Mike_Foley|template^application/vnd.bluetooth.ep.oob
diff --git a/lib/mime/type.rb b/lib/mime/type.rb
index c49ffb9..29066a2 100644
--- a/lib/mime/type.rb
+++ b/lib/mime/type.rb
@@ -1,8 +1,5 @@
# -*- ruby encoding: utf-8 -*-
-require 'mime/types/deprecations'
-require 'json'
-
# The definition of one MIME content-type.
#
# == Usage
@@ -50,16 +47,17 @@ class MIME::Type
end
def to_s
- "Invalid Encoding #{@encoding.inspect} (valid values: #{VALID_ENCODINGS.inspect})."
+ "Invalid Encoding #{@encoding.inspect}"
end
# :startdoc:
end
# The released version of the mime-types library.
- VERSION = '2.5'
+ VERSION = '2.6'
include Comparable
+ # :stopdoc:
MEDIA_TYPE_RE = %r{([-\w.+]+)/([-\w.+]*)}o
UNREGISTERED_RE = %r{[Xx]-}o
I18N_RE = %r{[^[:alnum:]]}o
@@ -70,20 +68,22 @@ class MIME::Type
TEXT_ENCODINGS = %w(7bit quoted-printable)
VALID_ENCODINGS = DEFAULT_ENCODINGS + BINARY_ENCODINGS + TEXT_ENCODINGS
- IANA_URL = "http://www.iana.org/assignments/media-types/%s/%s"
- RFC_URL = "http://rfc-editor.org/rfc/rfc%s.txt"
- DRAFT_URL = "http://datatracker.ietf.org/public/idindex.cgi?command=id_details&filename=%s"
- CONTACT_URL = "http://www.iana.org/assignments/contact-people.htm#%s"
+ IANA_URL = 'http://www.iana.org/assignments/media-types/%s/%s'
+ RFC_URL = 'http://rfc-editor.org/rfc/rfc%s.txt'
+ DRAFT_URL = 'http://datatracker.ietf.org/public/idindex.cgi?command=id_details&filename=%s' # rubocop:disable Metrics/LineLength
+ CONTACT_URL = 'http://www.iana.org/assignments/contact-people.htm#%s'
+ # :startdoc:
if respond_to? :private_constant
private_constant :MEDIA_TYPE_RE, :UNREGISTERED_RE, :I18N_RE, :PLATFORM_RE,
- :DEFAULT_ENCODINGS, :BINARY_ENCODINGS, :TEXT_ENCODINGS, :VALID_ENCODINGS,
- :IANA_URL, :RFC_URL, :DRAFT_URL, :CONTACT_URL
+ :DEFAULT_ENCODINGS, :BINARY_ENCODINGS, :TEXT_ENCODINGS,
+ :VALID_ENCODINGS, :IANA_URL, :RFC_URL, :DRAFT_URL,
+ :CONTACT_URL
end
- # Builds a MIME::Type object from the provided MIME Content Type value
- # (e.g., 'text/plain' or 'applicaton/x-eruby'). The constructed object is
- # yielded to an optional block for additional configuration, such as
+ # Builds a MIME::Type object from the +content_type+, a MIME Content Type
+ # value (e.g., 'text/plain' or 'applicaton/x-eruby'). The constructed object
+ # is yielded to an optional block for additional configuration, such as
# associating extensions and encoding information.
#
# * When provided a Hash or a MIME::Type, the MIME::Type will be
@@ -92,39 +92,41 @@ class MIME::Type
# the first two elements of the array as the content type and
# extensions.
# * Otherwise, the content_type will be used as a string.
+ #
+ # Yields the newly constructed +self+ object.
def initialize(content_type) # :yields self:
- @friendly = {}
- self.system = nil
- self.obsolete = false
- self.registered = nil
+ @friendly = {}
+ self.system = nil
+ self.obsolete = false
+ self.registered = nil
self.use_instead = nil
- self.signature = nil
+ self.signature = nil
case content_type
when Hash
init_with(content_type)
when Array
self.content_type = content_type[0]
- self.extensions = content_type[1] || []
+ self.extensions = content_type[1] || []
when MIME::Type
init_with(content_type.to_h)
else
self.content_type = content_type
end
- self.extensions ||= []
- self.docs ||= nil
- self.encoding ||= :default
+ self.extensions ||= []
+ self.docs ||= []
+ self.encoding ||= :default
# This value will be deprecated in the future, as it will be an
# alternative view on #xrefs. Silence an unnecessary warning for now by
# assigning directly to the instance variable.
- @references ||= []
- self.xrefs ||= {}
+ @references ||= []
+ self.xrefs ||= {}
yield self if block_given?
end
- # Returns +true+ if the simplified type matches the current
+ # Returns +true+ if the +other+ simplified type matches the current type.
def like?(other)
if other.respond_to?(:simplified)
@simplified == other.simplified
@@ -133,10 +135,10 @@ class MIME::Type
end
end
- # Compares the MIME::Type against the exact content type or the simplified
- # type (the simplified type will be used if comparing against something
- # that can be treated as a String with #to_s). In comparisons, this is
- # done against the lowercase version of the MIME::Type.
+ # Compares the +other+ MIME::Type against the exact content type or the
+ # simplified type (the simplified type will be used if comparing against
+ # something that can be treated as a String with #to_s). In comparisons, this
+ # is done against the lowercase version of the MIME::Type.
def <=>(other)
if other.respond_to?(:content_type)
@content_type.downcase <=> other.content_type.downcase
@@ -145,7 +147,7 @@ class MIME::Type
end
end
- # Compares the MIME::Type based on how reliable it is before doing a
+ # Compares the +other+ MIME::Type based on how reliable it is before doing a
# normal <=> comparison. Used by MIME::Types#[] to sort types. The
# comparisons involved are:
#
@@ -157,6 +159,11 @@ class MIME::Type
# 4. Current definitions < obsolete definitions.
# 5. Obselete with use-instead references < obsolete without.
# 6. Obsolete use-instead definitions are compared.
+ #
+ # While this method is public, its use is strongly discouraged by consumers
+ # of mime-types. In mime-types 3, this method is likely to see substantial
+ # revision and simplification to ensure current registered content types sort
+ # before unregistered or obsolete content types.
def priority_compare(other)
pc = simplified <=> other.simplified
if pc.zero?
@@ -184,7 +191,7 @@ class MIME::Type
pc
end
- # Returns +true+ if the other object is a MIME::Type and the content types
+ # Returns +true+ if the +other+ object is a MIME::Type and the content types
# match.
def eql?(other)
other.kind_of?(MIME::Type) and self == other
@@ -235,12 +242,14 @@ class MIME::Type
attr_reader :extensions
def extensions=(ext) # :nodoc:
@extensions = Array(ext).flatten.compact.uniq
+ # TODO: In mime-types 3.x, we probably want to have a clue about the
+ # container(s) we belong to so we can trigger reindexing when this is done.
end
- # Merge the extensions provided into this MIME::Type. The extensions added
+ # Merge the +extensions+ provided into this MIME::Type. The extensions added
# will be merged uniquely.
- def add_extensions(*ext)
- self.extensions = self.extensions + ext
+ def add_extensions(*extensions)
+ self.extensions = self.extensions + extensions
end
##
@@ -253,33 +262,39 @@ class MIME::Type
extensions.first
end
- # The encoding (7bit, 8bit, quoted-printable, or base64) required to
- # transport the data of this content type safely across a network, which
- # roughly corresponds to Content-Transfer-Encoding. A value of +nil+ or
- # <tt>:default</tt> will reset the #encoding to the #default_encoding for
- # the MIME::Type. Raises ArgumentError if the encoding provided is
- # invalid.
+ ##
+ # The encoding (+7bit+, +8bit+, <tt>quoted-printable</tt>, or +base64+)
+ # required to transport the data of this content type safely across a
+ # network, which roughly corresponds to Content-Transfer-Encoding. A value of
+ # +nil+ or <tt>:default</tt> will reset the #encoding to the
+ # #default_encoding for the MIME::Type. Raises ArgumentError if the encoding
+ # provided is invalid.
#
# If the encoding is not provided on construction, this will be either
# 'quoted-printable' (for text/* media types) and 'base64' for eveything
# else.
+ #
+ # :attr_accessor: encoding
+
+ ##
attr_reader :encoding
def encoding=(enc) # :nodoc:
if DEFAULT_ENCODINGS.include?(enc)
- @encoding = self.default_encoding
+ @encoding = default_encoding
elsif BINARY_ENCODINGS.include?(enc) or TEXT_ENCODINGS.include?(enc)
@encoding = enc
else
- raise InvalidEncoding, enc
+ fail InvalidEncoding, enc
end
end
# If the MIME::Type is a system-specific MIME::Type, returns the regular
# expression for the operating system indicated.
#
- # This information about MIME content types is deprecated.
+ # This information about MIME content types is deprecated and will be removed
+ # in mime-types 3.
def system
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
@system
end
@@ -287,7 +302,7 @@ class MIME::Type
if os.nil? or os.kind_of?(Regexp)
@system = os
else
- @system = %r|#{os}|
+ @system = %r{#{os}}
end
end
@@ -300,11 +315,17 @@ class MIME::Type
# Returns the media type or types that should be used instead of this
# media type, if it is obsolete. If there is no replacement media type, or
# it is not obsolete, +nil+ will be returned.
+ #
+ # :attr_accessor: use_instead
+
+ ##
def use_instead
return nil unless obsolete?
@use_instead
end
- attr_writer :use_instead # :nodoc:
+
+ ##
+ attr_writer :use_instead
# Returns +true+ if the media type is obsolete.
def obsolete?
@@ -323,7 +344,7 @@ class MIME::Type
# call-seq:
# text_plain.friendly # => "Text File"
# text_plain.friendly('en') # => "Text File"
- def friendly(lang = 'en')
+ def friendly(lang = 'en'.freeze)
@friendly ||= {}
case lang
@@ -334,7 +355,7 @@ class MIME::Type
when Hash
@friendly.merge!(lang)
else
- raise ArgumentError
+ fail ArgumentError
end
end
@@ -349,28 +370,59 @@ class MIME::Type
# # from application/x-msword
attr_reader :i18n_key
+ ##
# The encoded references URL list for this MIME::Type. See #urls for more
# information.
#
# This was previously called #url.
- attr_reader :references
+ #
+ # #references has been deprecated and both versions (#references and #url)
+ # will be removed in mime-types 3.
+ #
+ # :attr_accessor: references
+
+ ##
+ def references(__internal__ = false)
+ MIME::Types.deprecated(self, __method__) unless __internal__
+ @references
+ end
+
+ ##
def references=(r) # :nodoc:
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
@references = Array(r).flatten.compact.uniq
end
- def url # :nodoc:
- MIME.deprecated(self, __method__, "and has been renamed to #references")
- references
+ ##
+ # The encoded references URL list for this MIME::Type. See #urls for more
+ # information.
+ #
+ # #urls has been deprecated and both versions (#references and #url) will be
+ # removed in mime-types 3.
+ #
+ # :attr_accessor: url
+
+ ##
+ def url
+ MIME::Types.deprecated(self, __method__)
+ references(true)
end
+ ##
def url=(r) # :nodoc:
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
self.references = r
end
+ ##
# The cross-references list for this MIME::Type.
+ #
+ # :attr_accessor: xrefs
+
+ ##
attr_reader :xrefs
+
+ ##
def xrefs=(x) # :nodoc:
@xrefs = MIME::Types::Container.new.merge(x)
@xrefs.each_value(&:sort!)
@@ -394,8 +446,11 @@ class MIME::Type
#
# These values will be accessible through #urls, which always returns an
# array.
+ #
+ # This method is deprecated and will be removed in mime-types 3.
def urls
- references.map do |el|
+ MIME::Types.deprecated(self, __method__)
+ references(true).map do |el|
case el
when %r{^IANA$}
IANA_URL % [ @media_type, @sub_type ]
@@ -417,32 +472,33 @@ class MIME::Type
# The decoded cross-reference URL list for this MIME::Type.
def xref_urls
- xrefs.map { |(type, values)|
+ xrefs.flat_map { |(type, values)|
case type
- when 'rfc'
- values.map { |data| "http://www.iana.org/go/#{data}" }
- when 'draft'
+ when 'rfc'.freeze
+ values.map { |data| 'http://www.iana.org/go/%s'.freeze % data }
+ when 'draft'.freeze
values.map { |data|
- "http://www.iana.org/go/#{data.sub(/\ARFC/, 'draft')}"
+ 'http://www.iana.org/go/%s'.freeze % data.sub(/\ARFC/, 'draft')
}
- when 'rfc-errata'
+ when 'rfc-errata'.freeze
values.map { |data|
- "http://www.rfc-editor.org/errata_search.php?eid=#{data}"
+ 'http://www.rfc-editor.org/errata_search.php?eid=%s'.freeze % data
}
- when 'person'
+ when 'person'.freeze
values.map { |data|
- "http://www.iana.org/assignments/media-types/media-types.xhtml##{data}"
+ 'http://www.iana.org/assignments/media-types/media-types.xhtml#%s'.freeze % data # rubocop:disable Metrics/LineLength
}
- when 'template'
+ when 'template'.freeze
values.map { |data|
- "http://www.iana.org/assignments/media-types/#{data}"
+ 'http://www.iana.org/assignments/media-types/%s'.freeze % data
}
else # 'uri', 'text', etc.
values
end
- }.flatten
+ }
end
+ ##
# Prior to BCP 178 (RFC 6648), it could be assumed that MIME content types
# that start with <tt>x-</tt> were unregistered MIME. Per this BCP, this
# assumption is no longer being made by default in this library.
@@ -453,6 +509,10 @@ class MIME::Type
# - Unspecified, in which case the media-type and the content-type will be
# scanned to see if they start with <tt>x-</tt>, indicating that they
# are assumed unregistered.
+ #
+ # In mime-types 3, only a MIME content type that is explicitly registered
+ # will be used; there will be assumption that <tt>x-</tt> types are
+ # unregistered.
def registered?
if @registered.nil?
(@raw_media_type !~ UNREGISTERED_RE) and
@@ -477,11 +537,11 @@ class MIME::Type
# formats. This method returns +false+ when the MIME::Type encoding is
# set to <tt>base64</tt>.
def ascii?
- not binary?
+ !binary?
end
- # Returns +true+ when the simplified MIME::Type is in the list of known
- # digital signatures.
+ # Returns +true+ when the simplified MIME::Type is one of the known digital
+ # signature types.
def signature?
!!@signature
end
@@ -492,25 +552,25 @@ class MIME::Type
# Returns +true+ if the MIME::Type is specific to an operating system.
#
- # This method is deprecated.
+ # This method is deprecated and will be removed in mime-types 3.
def system?(__internal__ = false)
- MIME.deprecated(self, __method__) unless __internal__
- not @system.nil?
+ MIME::Types.deprecated(self, __method__) unless __internal__
+ !@system.nil?
end
# Returns +true+ if the MIME::Type is specific to the current operating
# system as represented by RUBY_PLATFORM.
#
- # This method is deprecated.
+ # This method is deprecated and will be removed in mime-types 3.
def platform?(__internal__ = false)
- MIME.deprecated(self, __method__) unless __internal__
+ MIME::Types.deprecated(self, __method__) unless __internal__
system?(__internal__) and (RUBY_PLATFORM =~ @system)
end
# Returns +true+ if the MIME::Type specifies an extension list,
# indicating that it is a complete MIME::Type.
def complete?
- not @extensions.empty?
+ !@extensions.empty?
end
# Returns the MIME::Type as a string.
@@ -529,9 +589,9 @@ class MIME::Type
# Returns the MIME::Type as an array suitable for use with
# MIME::Type.from_array.
#
- # This method is deprecated.
+ # This method is deprecated and will be removed in mime-types 3.
def to_a
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
[ @content_type, @extensions, @encoding, @system, obsolete?, @docs,
@references, registered? ]
end
@@ -539,9 +599,9 @@ class MIME::Type
# Returns the MIME::Type as an array suitable for use with
# MIME::Type.from_hash.
#
- # This method is deprecated.
+ # This method is deprecated and will be removed in mime-types 3.
def to_hash
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
{ 'Content-Type' => @content_type,
'Content-Transfer-Encoding' => @encoding,
'Extensions' => @extensions,
@@ -555,6 +615,7 @@ class MIME::Type
# Converts the MIME::Type to a JSON string.
def to_json(*args)
+ require 'json'
to_h.to_json(*args)
end
@@ -567,6 +628,8 @@ class MIME::Type
# Populates the +coder+ with attributes about this record for
# serialization. The structure of +coder+ should match the structure used
# with #init_with.
+ #
+ # This method should be considered a private implementation detail.
def encode_with(coder)
coder['content-type'] = @content_type
coder['docs'] = @docs unless @docs.nil? or @docs.empty?
@@ -577,7 +640,7 @@ class MIME::Type
coder['obsolete'] = obsolete?
coder['use-instead'] = use_instead if use_instead
end
- coder['references'] = references unless references.empty?
+ coder['references'] = references(true) unless references(true).empty?
coder['xrefs'] = xrefs unless xrefs.empty?
coder['registered'] = registered?
coder['signature'] = signature? if signature?
@@ -587,10 +650,12 @@ class MIME::Type
# Initialize an empty object from +coder+, which must contain the
# attributes necessary for initializing an empty object.
+ #
+ # This method should be considered a private implementation detail.
def init_with(coder)
self.content_type = coder['content-type']
self.docs = coder['docs'] || []
- self.friendly(coder['friendly'] || {})
+ friendly(coder['friendly'] || {})
self.encoding = coder['encoding']
self.extensions = coder['extensions'] || []
self.obsolete = coder['obsolete']
@@ -604,14 +669,13 @@ class MIME::Type
self.xrefs = coder['xrefs'] || {}
self.use_instead = coder['use-instead']
end
- # :startdoc:
class << self
# The MIME types main- and sub-label can both start with <tt>x-</tt>,
# which indicates that it is a non-registered name. Of course, after
- # registration this flag can disappear, adds to the confusing
- # proliferation of MIME types. The simplified string has the <tt>x-</tt>
- # removed and are translated to lowercase.
+ # registration this flag may disappear, adds to the confusing
+ # proliferation of MIME types. The simplified +content_type+ string has the
+ # <tt>x-</tt> removed and is translated to lowercase.
def simplified(content_type)
matchdata = case content_type
when MatchData
@@ -620,16 +684,16 @@ class MIME::Type
MEDIA_TYPE_RE.match(content_type)
end
- if matchdata
- matchdata.captures.map { |e|
- e.downcase!
- e.gsub!(UNREGISTERED_RE, ''.freeze)
- e
- }.join('/'.freeze)
- end
+ return unless matchdata
+
+ matchdata.captures.map { |e|
+ e.downcase!
+ e.gsub!(UNREGISTERED_RE, ''.freeze)
+ e
+ }.join('/'.freeze)
end
- # Converts a provided content type into a translation key suitable for
+ # Converts a provided +content_type+ into a translation key suitable for
# use with the I18n library.
def i18n_key(content_type)
matchdata = case content_type
@@ -639,23 +703,23 @@ class MIME::Type
MEDIA_TYPE_RE.match(content_type)
end
- if matchdata
- matchdata.captures.map { |e|
- e.downcase!
- e.gsub!(UNREGISTERED_RE, ''.freeze)
- e.gsub!(I18N_RE, '-'.freeze)
- e
- }.join('.'.freeze)
- end
+ return unless matchdata
+
+ matchdata.captures.map { |e|
+ e.downcase!
+ e.gsub!(UNREGISTERED_RE, ''.freeze)
+ e.gsub!(I18N_RE, '-'.freeze)
+ e
+ }.join('.'.freeze)
end
- # Creates a MIME::Type from an array in the form of:
- # [type-name, [extensions], encoding, system]
+ # Creates a MIME::Type from an +args+ array in the form of:
+ # [ type-name, [ extensions ], encoding, system ]
#
# +extensions+, +encoding+, and +system+ are optional.
#
- # MIME::Type.from_array("application/x-ruby", ['rb'], '8bit')
- # MIME::Type.from_array(["application/x-ruby", ['rb'], '8bit'])
+ # MIME::Type.from_array('application/x-ruby', %w(rb), '8bit')
+ # MIME::Type.from_array([ 'application/x-ruby', [ 'rb' ], '8bit' ])
#
# These are equivalent to:
#
@@ -664,15 +728,18 @@ class MIME::Type
# t.encoding = '8bit'
# end
#
- # This method is deprecated.
- def from_array(*args) # :yields MIME::Type.new:
- MIME.deprecated(self, __method__)
+ # It will yield the type (+t+) if a block is given.
+ #
+ # This method is deprecated and will be removed in mime-types 3.
+ def from_array(*args) # :yields t:
+ MIME::Types.deprecated(self, __method__)
# Dereferences the array one level, if necessary.
args = args.first if args.first.kind_of? Array
unless args.size.between?(1, 8)
- raise ArgumentError, "Array provided must contain between one and eight elements."
+ fail ArgumentError,
+ 'Array provided must contain between one and eight elements.'
end
MIME::Type.new(args.shift) do |t|
@@ -682,7 +749,7 @@ class MIME::Type
end
end
- # Creates a MIME::Type from a hash. Keys are case-insensitive, dashes
+ # Creates a MIME::Type from a +hash+. Keys are case-insensitive, dashes
# may be replaced with underscores, and the internal Symbol of the
# lowercase-underscore version can be used as well. That is,
# Content-Type can be provided as content-type, Content_Type,
@@ -705,9 +772,12 @@ class MIME::Type
# t.extensions = ['yaml', 'yml']
# end
#
- # This method has been deprecated.
- def from_hash(hash) # :yields MIME::Type.new:
- MIME.deprecated(self, __method__)
+ # It will yield the constructed type +t+ if a block has been provided.
+ #
+ #
+ # This method is deprecated and will be removed in mime-types 3.
+ def from_hash(hash) # :yields t:
+ MIME::Types.deprecated(self, __method__)
type = {}
hash.each_pair do |k, v|
type[k.to_s.tr('A-Z', 'a-z').gsub(/-/, '_').to_sym] = v
@@ -726,7 +796,7 @@ class MIME::Type
end
end
- # Essentially a copy constructor.
+ # Essentially a copy constructor for +mime_type+.
#
# MIME::Type.from_mime_type(plaintext)
#
@@ -738,17 +808,20 @@ class MIME::Type
# t.encoding = plaintext.encoding.dup
# end
#
- # This method has been deprecated.
+ # It will yield the type (+t+) if a block is given.
+ #
+ # This method is deprecated and will be removed in mime-types 3.
def from_mime_type(mime_type) # :yields the new MIME::Type:
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
new(mime_type)
end
end
private
+
def content_type=(type_string)
match = MEDIA_TYPE_RE.match(type_string)
- raise InvalidContentType, type_string if match.nil?
+ fail InvalidContentType, type_string if match.nil?
@content_type = type_string
@raw_media_type, @raw_sub_type = match.captures
diff --git a/lib/mime/types.rb b/lib/mime/types.rb
index e12d8cc..2f0f66b 100644
--- a/lib/mime/types.rb
+++ b/lib/mime/types.rb
@@ -1,5 +1,6 @@
# -*- ruby encoding: utf-8 -*-
+require 'mime/types/deprecations'
require 'mime/type'
require 'mime/types/cache'
require 'mime/types/loader'
@@ -77,19 +78,19 @@ class MIME::Types
# This method is deprecated and will be removed in mime-types 3.0.
def add_type_variant(mime_type) # :nodoc:
- MIME.deprecated(self, __method__, :private)
+ MIME::Types.deprecated(self, __method__, :private)
add_type_variant!(mime_type)
end
# This method is deprecated and will be removed in mime-types 3.0.
def index_extensions(mime_type) # :nodoc:
- MIME.deprecated(self, __method__, :private)
+ MIME::Types.deprecated(self, __method__, :private)
index_extensions!(mime_type)
end
# This method is deprecated and will be removed in mime-types 3.0.
def defined_types # :nodoc:
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
@type_variants.values.flatten
end
@@ -140,7 +141,7 @@ class MIME::Types
# platform) is currently supported but deprecated.
def [](type_id, flags = {})
if flags[:platform]
- MIME.deprecated(self, __method__, "using the :platform flag")
+ MIME::Types.deprecated(self, __method__, 'using the :platform flag')
end
matches = case type_id
@@ -176,8 +177,7 @@ class MIME::Types
}.compact.sort { |a, b| a.priority_compare(b) }.uniq
if platform
- MIME.deprecated(self, __method__,
- "using the platform parameter")
+ MIME::Types.deprecated(self, __method__, 'using the platform parameter')
types.select(&:platform?)
else
types
@@ -208,17 +208,18 @@ class MIME::Types
end
end
- # Add a single MIME::Type object to the set of known types. If the type is
- # already known, a warning will be displayed. The +quiet+ parameter may be
- # a truthy value to suppress that warning.
- def add_type(mime_type, quiet = false)
- if !quiet and @type_variants[mime_type.simplified].include?(mime_type)
- warn('Type %s is already registered as a variant of %s.' %
- [ mime_type, mime_type.simplified ])
+ # Add a single MIME::Type object to the set of known types. If the +type+ is
+ # already known, a warning will be displayed. The +quiet+ parameter may be a
+ # truthy value to suppress that warning.
+ def add_type(type, quiet = false)
+ if !quiet and @type_variants[type.simplified].include?(type)
+ MIME::Types.logger.warn <<-warning
+Type #{type} is already registered as a variant of #{type.simplified}.
+ warning
end
- add_type_variant!(mime_type)
- index_extensions!(mime_type)
+ add_type_variant!(type)
+ index_extensions!(type)
end
class << self
@@ -228,7 +229,7 @@ class MIME::Types
#
# This method has been deprecated and will be removed in mime-types 3.0.
def load_from_file(filename)
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
MIME::Types::Loader.load_from_v1(filename)
end
@@ -266,7 +267,7 @@ class MIME::Types
#
# This method has been deprecated and will be removed in mime-types 3.0.
def cache_file
- MIME.deprecated(self, __method__)
+ MIME::Types.deprecated(self, __method__)
ENV['RUBY_MIME_TYPES_CACHE']
end
@@ -279,6 +280,7 @@ class MIME::Types
end
private
+
def lazy_load?
(lazy = ENV['RUBY_MIME_TYPES_LAZY_LOAD']) && (lazy != 'false')
end
@@ -304,6 +306,7 @@ class MIME::Types
end
private
+
def add_type_variant!(mime_type)
@type_variants[mime_type.simplified] << mime_type
end
@@ -313,14 +316,14 @@ class MIME::Types
end
def prune_matches(matches, flags)
- matches.delete_if { |e| not e.complete? } if flags[:complete]
- matches.delete_if { |e| not e.platform? } if flags[:platform]
- matches.delete_if { |e| not e.registered? } if flags[:registered]
+ matches.delete_if { |e| !e.complete? } if flags[:complete]
+ matches.delete_if { |e| !e.platform? } if flags[:platform]
+ matches.delete_if { |e| !e.registered? } if flags[:registered]
matches
end
def match(pattern)
- @type_variants.select { |k, v| k =~ pattern }.values.flatten
+ @type_variants.select { |k, _| k =~ pattern }.values.flatten
end
load_default_mime_types(load_mode) unless lazy_load?
diff --git a/lib/mime/types/cache.rb b/lib/mime/types/cache.rb
index c2e8dce..027c71d 100644
--- a/lib/mime/types/cache.rb
+++ b/lib/mime/types/cache.rb
@@ -1,6 +1,8 @@
# -*- ruby encoding: utf-8 -*-
class MIME::Types
+ Cache = Struct.new(:version, :data) # :nodoc:
+
# Caching of MIME::Types registries is advisable if you will be loading
# the default registry relatively frequently. With the class methods on
# MIME::Types::Cache, any MIME::Types registry can be marshaled quickly
@@ -8,46 +10,50 @@ class MIME::Types
#
# The cache is invalidated on a per-version basis; a cache file for
# version 2.0 will not be reused with version 2.0.1.
- Cache = Struct.new(:version, :data)
-
- class << Cache
- # Attempts to load the cache from the file provided as a parameter or in
- # the environment variable +RUBY_MIME_TYPES_CACHE+. Returns +nil+ if the
- # file does not exist, if the file cannot be loaded, or if the data in
- # the cache version is different than this version.
- def load(cache_file = nil)
- cache_file = cache_file || ENV['RUBY_MIME_TYPES_CACHE']
- return nil unless cache_file and File.exist?(cache_file)
+ class Cache
+ class << self
+ # Attempts to load the cache from the file provided as a parameter or in
+ # the environment variable +RUBY_MIME_TYPES_CACHE+. Returns +nil+ if the
+ # file does not exist, if the file cannot be loaded, or if the data in
+ # the cache version is different than this version.
+ def load(cache_file = nil)
+ cache_file ||= ENV['RUBY_MIME_TYPES_CACHE']
+ return nil unless cache_file and File.exist?(cache_file)
- cache = Marshal.load(File.binread(cache_file))
- if cache.version == MIME::Types::VERSION
- Marshal.load(cache.data)
- else
- warn "Could not load MIME::Types cache: invalid version"
- nil
+ cache = Marshal.load(File.binread(cache_file))
+ if cache.version == MIME::Types::VERSION
+ Marshal.load(cache.data)
+ else
+ MIME::Types.logger.warn <<-warning.chomp
+Could not load MIME::Types cache: invalid version
+ warning
+ nil
+ end
+ rescue => e
+ MIME::Types.logger.warn <<-warning.chomp
+Could not load MIME::Types cache: #{e}
+ warning
+ return nil
end
- rescue => e
- warn "Could not load MIME::Types cache: #{e}"
- return nil
- end
- # Attempts to save the types provided to the cache file provided.
- #
- # If +types+ is not provided or is +nil+, the cache will contain the
- # current MIME::Types default registry.
- #
- # If +cache_file+ is not provided or is +nil+, the cache will be written
- # to the file specified in the environment variable
- # +RUBY_MIME_TYPES_CACHE+. If there is no cache file specified either
- # directly or through the environment, this method will return +nil+
- def save(types = nil, cache_file = nil)
- cache_file = cache_file || ENV['RUBY_MIME_TYPES_CACHE']
- return nil unless cache_file
+ # Attempts to save the types provided to the cache file provided.
+ #
+ # If +types+ is not provided or is +nil+, the cache will contain the
+ # current MIME::Types default registry.
+ #
+ # If +cache_file+ is not provided or is +nil+, the cache will be written
+ # to the file specified in the environment variable
+ # +RUBY_MIME_TYPES_CACHE+. If there is no cache file specified either
+ # directly or through the environment, this method will return +nil+
+ def save(types = nil, cache_file = nil)
+ cache_file ||= ENV['RUBY_MIME_TYPES_CACHE']
+ return nil unless cache_file
- types = types || MIME::Types.send(:__types__)
+ types ||= MIME::Types.send(:__types__)
- File.open(cache_file, 'wb') do |f|
- f.write(Marshal.dump(new(types.data_version, Marshal.dump(types))))
+ File.open(cache_file, 'wb') do |f|
+ f.write(Marshal.dump(new(types.data_version, Marshal.dump(types))))
+ end
end
end
end
diff --git a/lib/mime/types/columnar.rb b/lib/mime/types/columnar.rb
index 7b63651..594a727 100644
--- a/lib/mime/types/columnar.rb
+++ b/lib/mime/types/columnar.rb
@@ -13,9 +13,9 @@ require 'mime/type/columnar'
# to an instance of MIME::Types when it is loaded with
# MIME::Types::Loader#load_columnar.
module MIME::Types::Columnar
- LOAD_MUTEX = Mutex.new
+ LOAD_MUTEX = Mutex.new # :nodoc:
- def self.extended(obj)
+ def self.extended(obj) # :nodoc:
super
obj.instance_variable_set(:@__mime_data__, [])
obj.instance_variable_set(:@__attributes__, [])
@@ -49,7 +49,7 @@ module MIME::Types::Columnar
line.chomp!
if lookup
- next unless type = @__mime_data__[i += 1]
+ type = @__mime_data__[i += 1] or next
yield type, line
else
yield line
@@ -117,26 +117,19 @@ module MIME::Types::Columnar
end
def load_use_instead
- empty = '-'
- pipe = '|'
each_file_line('use_instead') do |type, line|
type.use_instad = (line unless line == '-'.freeze)
end
end
def dict(line)
- empty = '-'.freeze
- pipe = '|'.freeze
- caret = '^'.freeze
-
- if line == empty
+ if line == '-'.freeze
{}
else
- line.split(pipe).inject({}) { |h, l|
- k, v = line.split(caret)
+ line.split('|'.freeze).each_with_object({}) { |h, l|
+ k, v = l.split('^'.freeze)
v = [ nil ] if v.empty?
h[k] = v
- h
}
end
end
diff --git a/lib/mime/types/deprecations.rb b/lib/mime/types/deprecations.rb
index 8696894..2535d34 100644
--- a/lib/mime/types/deprecations.rb
+++ b/lib/mime/types/deprecations.rb
@@ -1,45 +1,53 @@
# -*- ruby encoding: utf-8 -*-
-# The namespace for MIME applications, tools, and libraries.
-module MIME # :nodoc:
-end
+require 'mime/types/logger'
-class << MIME
- # Used to mark a method as deprecated in the mime-types interface.
- def deprecated(klass, sym, message = nil, &block) # :nodoc:
- level = case klass
- when Class, Module
- '.'
- else
- klass = klass.class
- '#'
- end
- message = case message
- when :private, :protected
- "and will be #{message}"
- when nil
- "and will be removed"
+# The namespace for MIME applications, tools, and libraries.
+module MIME
+ class Types
+ # Used to mark a method as deprecated in the mime-types interface.
+ def self.deprecated(klass, sym, message = nil, &block) # :nodoc:
+ level = case klass
+ when Class, Module
+ '.'
else
- message
+ klass = klass.class
+ '#'
end
- warn "#{caller[1]}: #{klass}#{level}#{sym} is deprecated #{message}."
- block.call if block
+ message = case message
+ when :private, :protected
+ "and will be #{message}"
+ when nil
+ 'and will be removed'
+ else
+ message
+ end
+ MIME::Types.logger.warn <<-warning.chomp
+#{caller[1]}: #{klass}#{level}#{sym} is deprecated #{message}.
+ warning
+ block.call if block
+ end
end
- # MIME::InvalidContentType was moved to MIME::Type::InvalidContentType.
- # Provide a single warning about this fact in the interim.
- def const_missing(name) # :nodoc:
- case name.to_s
- when "InvalidContentType"
- warn_about_moved_constants(name)
- MIME::Type.const_get(name.to_sym)
- else
- super
+ class << self
+ # MIME::InvalidContentType was moved to MIME::Type::InvalidContentType.
+ # Provide a single warning about this fact in the interim.
+ def const_missing(name) # :nodoc:
+ case name.to_s
+ when 'InvalidContentType'
+ warn_about_moved_constants(name)
+ MIME::Type.const_get(name.to_sym)
+ else
+ super
+ end
end
- end
- private
- def warn_about_moved_constants(name) # :nodoc:
- warn "#{caller[1]}: MIME::#{name} is deprecated. Use MIME::Type::#{name} instead."
+ private
+
+ def warn_about_moved_constants(name)
+ MIME::Types.logger.warn <<-warning.chomp
+#{caller[1]}: MIME::#{name} is deprecated. Use MIME::Type::#{name} instead.
+ warning
+ end
end
end
diff --git a/lib/mime/types/loader.rb b/lib/mime/types/loader.rb
index 7833a2a..87433d0 100644
--- a/lib/mime/types/loader.rb
+++ b/lib/mime/types/loader.rb
@@ -95,9 +95,9 @@ class MIME::Types::Loader
#
# This method has been deprecated and will be removed from mime-types 3.0.
def load_v1
- MIME.deprecated(self.class, __method__)
+ MIME::Types.deprecated(self.class, __method__)
Dir[v1_path].sort.each do |f|
- next if f =~ /\.ya?ml$|\.json$/
+ next if f =~ /\.(?:ya?ml|json|column)$/
container.add(self.class.load_from_v1(f, true), true)
end
container
@@ -152,7 +152,7 @@ class MIME::Types::Loader
#
# This method has been deprecated and will be removed in mime-types 3.0.
def load_from_v1(filename, __internal__ = false)
- MIME.deprecated(self.class, __method__) unless __internal__
+ MIME::Types.deprecated(self.class, __method__) unless __internal__
data = read_file(filename).split($/)
mime = MIME::Types.new
data.each_with_index { |line, index|
@@ -162,11 +162,11 @@ class MIME::Types::Loader
m = V1_FORMAT.match(item)
unless m
- warn <<-EOS
+ MIME::Types.logger.warn <<-EOS
#{filename}:#{index + 1}: Parsing error in v1 MIME type definition.
=> #{line}
EOS
- raise BadV1Format, line
+ fail BadV1Format, line
end
unregistered, obsolete, platform, mediatype, subtype, extensions,
@@ -181,7 +181,7 @@ class MIME::Types::Loader
use_instead = nil
else
use_instead = docs.scan(%r{use-instead:(\S+)}).flatten.first
- docs = docs.gsub(%r{use-instead:\S+}, "").squeeze(" \t")
+ docs = docs.gsub(%r{use-instead:\S+}, '').squeeze(' \t')
end
mime_type = MIME::Type.new("#{mediatype}/#{subtype}") do |t|
@@ -195,7 +195,7 @@ class MIME::Types::Loader
# This is being removed. Cheat to silence it for now.
t.instance_variable_set :@references,
- Array(urls).flatten.compact.uniq
+ Array(urls).flatten.compact.uniq
end
mime.add_type(mime_type, true)
@@ -233,12 +233,14 @@ class MIME::Types::Loader
end
private
+
def read_file(filename)
File.open(filename, 'r:UTF-8:-') { |f| f.read }
end
end
private
+
def yaml_path
File.join(path, '*.y{,a}ml')
end
diff --git a/lib/mime/types/logger.rb b/lib/mime/types/logger.rb
new file mode 100644
index 0000000..2f0b858
--- /dev/null
+++ b/lib/mime/types/logger.rb
@@ -0,0 +1,35 @@
+# -*- ruby encoding: utf-8 -*-
+
+require 'logger'
+
+module MIME
+ class Types
+ class << self
+ # Configure the MIME::Types logger. This defaults to an instance of a
+ # logger that passes messages (unformatted) through to Kernel#warn.
+ attr_accessor :logger
+ end
+
+ class WarnLogger < ::Logger #:nodoc:
+ class WarnLogDevice < ::Logger::LogDevice #:nodoc:
+ def initialize(*)
+ end
+
+ def write(m)
+ Kernel.warn(m)
+ end
+
+ def close
+ end
+ end
+
+ def initialize(_1, _2 = nil, _3 = nil)
+ super nil
+ @logdev = WarnLogDevice.new
+ @formatter = ->(_s, _d, _p, m) { m }
+ end
+ end
+
+ self.logger = WarnLogger.new(nil)
+ end
+end
diff --git a/mime-types.gemspec b/mime-types.gemspec
index 5de0969..147bc31 100644
--- a/mime-types.gemspec
+++ b/mime-types.gemspec
@@ -1,18 +1,18 @@
# -*- encoding: utf-8 -*-
-# stub: mime-types 2.5 ruby lib
+# stub: mime-types 2.6 ruby lib
Gem::Specification.new do |s|
s.name = "mime-types"
- s.version = "2.5"
+ s.version = "2.6"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Austin Ziegler"]
- s.date = "2015-04-25"
- s.description = "The mime-types library provides a library and registry for information about\nMIME content type definitions. It can be used to determine defined filename\nextensions for MIME types, or to use filename extensions to look up the likely\nMIME type definitions.\n\nMIME content types are used in MIME-compliant communications, as in e-mail or\nHTTP traffic, to indicate the type of content which is transmitted. The\nmime-types library provides the ability for detailed information about MIME\nentities (provided as an enumerable collection of MIME::Type objects) to be\ndetermined and used programmatically. There are many types defined by RFCs and\nvendors, so the list is long but by definition incomplete; don't hesitate to\nadd additional type definitions (see Contributing.rdoc). The primary sources\nfor MIME type definitions found in mime-types is the\n{IANA Media Types registry}[https://www.iana.org/assignments/media-types/media-types.xhtml],\nRFCs, and W3C recommendations. It conforms to RFCs 2045 and 2231.\n\nThis is release 2.5 with a couple of bug fixes, updating to the latest IANA\ntype registry, and adding a user-contributed type. mime-types 2.x supports Ruby\n1.9.2 or later."
+ s.date = "2015-05-25"
+ s.description = "The mime-types library provides a library and registry for information about\nMIME content type definitions. It can be used to determine defined filename\nextensions for MIME types, or to use filename extensions to look up the likely\nMIME type definitions.\n\nMIME content types are used in MIME-compliant communications, as in e-mail or\nHTTP traffic, to indicate the type of content which is transmitted. The\nmime-types library provides the ability for detailed information about MIME\nentities (provided as an enumerable collection of MIME::Type objects) to be\ndetermined and used. There are many types defined by RFCs and vendors, so the\nlist is long but by definition incomplete; don't hesitate to add additional\ntype definitions. MIME type definitions found in mime-types are from RFCs, W3C\nrecommendations, the {IANA Media Types\nregistry}[https://www.iana.org/assignments/media-types/media-types.xhtml], and\nuser contributions. It conforms to RFCs 2045 and 2231.\n\nThis is release 2.6 with two new experimental features. The first new feature\nis a new default registry storage format that greatly reduces the initial\nmemory use of the mime-types library. This feature is enabled by requiring\n+mime/types/columnar+ instead of +mime/types+ with a small performance cost and\nno change in *total* memory use if certain methods are called (see {Columnar\nStore}[#columnar-store] for more details). The second new feature is a logger\ninterface that conforms to the expectations of an ActiveSupport::Logger so that\nwarnings can be written to an application's log rather than the default\nlocation for +warn+. This interface may be used for other logging purposes in\nthe future.\n\nmime-types 2.6 is the last planned version of mime-types 2.x, so deprecation\nwarnings are no longer cached but provided every time the method is called.\nmime-types 2.6 supports Ruby 1.9.2 or later."
s.email = ["halostatue@gmail.com"]
s.extra_rdoc_files = ["Contributing.rdoc", "History-Types.rdoc", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "docs/COPYING.txt", "docs/artistic.txt", "Contributing.rdoc", "History-Types.rdoc", "History.rdoc", "Licence.rdoc", "README.rdoc"]
- s.files = [".autotest", ".gemtest", ".gitignore", ".hoerc", "Contributing.rdoc", "History-Types.rdoc", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "data/mime-types.json", "docs/COPYING.txt", "docs/artistic.txt", "lib/mime-types.rb", "lib/mime.rb", "lib/mime/type.rb", "lib/mime/types.rb", "lib/mime/types/cache.rb", "lib/mime/types/loader.rb", "lib/mime/types/loader_path.rb", "support/apache_mime_types.rb", "support/benchmarks/load.rb", "support/convert.rb", "support/iana_registry.rb", "test/bad-fixtures/malformed", "test/fixture/json.json", "test/fixture/old-data", "test/fixture/yaml.yaml", "test/minitest_helper.rb", "test/test_mime_type.rb", "test/test_mime_types.rb", "test/test_mime_types_cache.rb", "test/test_mime_types_class.rb", "test/test_mime_types_lazy.rb", "test/test_mime_types_loader.rb"]
+ s.files = [".autotest", ".gemtest", ".gitignore", ".hoerc", "Contributing.rdoc", "History-Types.rdoc", "History.rdoc", "Licence.rdoc", "Manifest.txt", "README.rdoc", "Rakefile", "data/mime-types.json", "data/mime.content_type.column", "data/mime.docs.column", "data/mime.encoding.column", "data/mime.friendly.column", "data/mime.obsolete.column", "data/mime.references.column", "data/mime.registered.column", "data/mime.signature.column", "data/mime.system.column", "data/mime.use_instead.column", "data/mime.xrefs.column", "docs/COPYING.txt", "docs/artistic.txt", "lib/mime-types.rb", "lib/mime/type.rb", "lib/mime/type/columnar.rb", "lib/mime/types.rb", "lib/mime/types/cache.rb", "lib/mime/types/columnar.rb", "lib/mime/types/deprecations.rb", "lib/mime/types/loader.rb", "lib/mime/types/loader_path.rb", "lib/mime/types/logger.rb", "support/apache_mime_types.rb", "support/benchmarks/load.rb", "support/benchmarks/load_allocations.rb", "support/benchmarks/object_counts.rb", "support/convert.rb", "support/convert/columnar.rb", "support/iana_registry.rb", "test/bad-fixtures/malformed", "test/fixture/json.json", "test/fixture/old-data", "test/fixture/yaml.yaml", "test/minitest_helper.rb", "test/test_mime_type.rb", "test/test_mime_types.rb", "test/test_mime_types_cache.rb", "test/test_mime_types_class.rb", "test/test_mime_types_lazy.rb", "test/test_mime_types_loader.rb"]
s.homepage = "https://github.com/mime-types/ruby-mime-types/"
s.licenses = ["MIT", "Artistic 2.0", "GPL-2"]
s.rdoc_options = ["--main", "README.rdoc"]
@@ -32,6 +32,7 @@ Gem::Specification.new do |s|
s.add_development_dependency(%q<hoe-rubygems>, ["~> 1.0"])
s.add_development_dependency(%q<hoe-travis>, ["~> 1.2"])
s.add_development_dependency(%q<minitest-autotest>, ["~> 1.0"])
+ s.add_development_dependency(%q<minitest-focus>, ["~> 1.0"])
s.add_development_dependency(%q<rake>, ["~> 10.0"])
s.add_development_dependency(%q<simplecov>, ["~> 0.7"])
s.add_development_dependency(%q<coveralls>, ["~> 0.8"])
@@ -45,6 +46,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<hoe-rubygems>, ["~> 1.0"])
s.add_dependency(%q<hoe-travis>, ["~> 1.2"])
s.add_dependency(%q<minitest-autotest>, ["~> 1.0"])
+ s.add_dependency(%q<minitest-focus>, ["~> 1.0"])
s.add_dependency(%q<rake>, ["~> 10.0"])
s.add_dependency(%q<simplecov>, ["~> 0.7"])
s.add_dependency(%q<coveralls>, ["~> 0.8"])
@@ -59,6 +61,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<hoe-rubygems>, ["~> 1.0"])
s.add_dependency(%q<hoe-travis>, ["~> 1.2"])
s.add_dependency(%q<minitest-autotest>, ["~> 1.0"])
+ s.add_dependency(%q<minitest-focus>, ["~> 1.0"])
s.add_dependency(%q<rake>, ["~> 10.0"])
s.add_dependency(%q<simplecov>, ["~> 0.7"])
s.add_dependency(%q<coveralls>, ["~> 0.8"])
diff --git a/support/apache_mime_types.rb b/support/apache_mime_types.rb
index 1786fa4..faaf098 100644
--- a/support/apache_mime_types.rb
+++ b/support/apache_mime_types.rb
@@ -15,6 +15,12 @@ class MIME::Type
public_constant :UNREGISTERED_RE
end
+class MIME::Types
+ def self.deprecated(*_args, &_block)
+ # We are an internal tool. Silence deprecation warnings.
+ end
+end
+
class ApacheMIMETypes
DEFAULTS = {
url: %q(http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types),
@@ -25,7 +31,7 @@ class ApacheMIMETypes
dest = Pathname(options[:to] || DEFAULTS[:to]).expand_path
url = options.fetch(:url, DEFAULTS[:url])
- puts "Downloading Apache MIME type list."
+ puts 'Downloading Apache MIME type list.'
puts "\t#{url}"
data = open(url) { |f| f.read }.split($/)
data.delete_if { |line| line =~ /\A#/ }
@@ -91,6 +97,7 @@ class ApacheMIMETypes
end
private
+
def mime_types_for(file)
if file.exist?
MIME::Types::Loader.load_from_yaml(file)
diff --git a/support/benchmarks/load.rb b/support/benchmarks/load.rb
index 91c9ae3..3dd23c8 100644
--- a/support/benchmarks/load.rb
+++ b/support/benchmarks/load.rb
@@ -15,7 +15,7 @@ module Benchmarks
@load_path = load_path
end
- def reload_mime_types(repeats = 1, options = { force_load: false, columnar: false })
+ def reload_mime_types(repeats = 1, options = {})
force_load = options.fetch(:force_load, false)
columnar = options.fetch(:columnar, false)
@@ -36,22 +36,22 @@ module Benchmarks
remove_cache
Benchmark.bm(17) do |mark|
- mark.report("Normal:") { reload_mime_types(@repeats) }
- mark.report("Columnar:") { reload_mime_types(@repeats, columnar: true) }
+ mark.report('Normal:') { reload_mime_types(@repeats) }
+ mark.report('Columnar:') { reload_mime_types(@repeats, columnar: true) }
ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'yes'
- mark.report("Lazy:") { reload_mime_types(@repeats) }
- mark.report("Lazy+Load:") { reload_mime_types(@repeats, force_load: true) }
+ mark.report('Lazy:') { reload_mime_types(@repeats) }
+ mark.report('Lazy+Load:') { reload_mime_types(@repeats, force_load: true) }
ENV.delete('RUBY_MIME_TYPES_LAZY_LOAD')
ENV['RUBY_MIME_TYPES_CACHE'] = @cache_file
reload_mime_types
- mark.report("Cached:") { reload_mime_types(@repeats) }
+ mark.report('Cached:') { reload_mime_types(@repeats) }
ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'yes'
- mark.report("Lazy Cached:") { reload_mime_types(@repeats) }
- mark.report("Lazy Cached Load:") { reload_mime_types(@repeats, force_load: true) }
+ mark.report('Lazy Cached:') { reload_mime_types(@repeats) }
+ mark.report('Lazy Cached Load:') { reload_mime_types(@repeats, force_load: true) }
end
ensure
remove_cache
diff --git a/support/benchmarks/load_allocations.rb b/support/benchmarks/load_allocations.rb
index b0f9768..39e1f3a 100644
--- a/support/benchmarks/load_allocations.rb
+++ b/support/benchmarks/load_allocations.rb
@@ -24,11 +24,10 @@ module Benchmarks
@mime_types_only = !!mime_types_only
@top_x = top_x
- if @top_x
- @top_x = top_x.to_i
- @top_x = 10 if @top_x <= 0
- end
+ return unless @top_x
+ @top_x = top_x.to_i
+ @top_x = 10 if @top_x <= 0
end
def report
@@ -38,6 +37,7 @@ module Benchmarks
end
private
+
def report_top_x
table = @allocations.sort_by { |_, v| v.first }.reverse.first(@top_x)
table.map! { |(location, allocs)|
@@ -58,8 +58,8 @@ module Benchmarks
end
end
- pattern = [ "%%-%ds" ]
- pattern << ([ "%% %ds" ] * (max_widths.length - 1))
+ pattern = [ '%%-%ds' ]
+ pattern << ([ '%% %ds' ] * (max_widths.length - 1))
pattern = pattern.join("\t") % max_widths
table.each { |row| puts pattern % row }
puts
diff --git a/support/benchmarks/object_counts.rb b/support/benchmarks/object_counts.rb
index 4ed9c37..0d13f8d 100644
--- a/support/benchmarks/object_counts.rb
+++ b/support/benchmarks/object_counts.rb
@@ -14,8 +14,8 @@ module Benchmarks
collect
@before.keys.grep(/T_/).map { |key|
[ key, @after[key] - @before[key] ]
- }.sort_by { |key, delta| -delta }.each { |key, delta|
- puts "%10s +%6d" % [ key, delta ]
+ }.sort_by { |_, delta| -delta }.each { |key, delta|
+ puts '%10s +%6d' % [ key, delta ]
}
end
diff --git a/support/convert.rb b/support/convert.rb
index 02e37d0..581a997 100644
--- a/support/convert.rb
+++ b/support/convert.rb
@@ -4,6 +4,13 @@ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'true'
require 'mime/types'
require 'fileutils'
+require 'json'
+
+class MIME::Types
+ def self.deprecated(*_args, &_block)
+ # We are an internal tool. Silence deprecation warnings.
+ end
+end
class Convert
class << self
@@ -29,7 +36,7 @@ class Convert
to_json(
destination: json_path(args.destination),
multiple_files: multiple_files(args.multiple_files || 'single')
- )
+ )
end
# Converts from JSON to YAML. Defaults to converting to multiple files.
@@ -38,12 +45,13 @@ class Convert
to_yaml(
destination: yaml_path(args.destination),
multiple_files: multiple_files(args.multiple_files || 'multiple')
- )
+ )
end
private :new
private
+
def yaml_path(path)
path_or_default(path, 'type-lists'.freeze)
end
@@ -72,10 +80,9 @@ class Convert
def initialize(options = {})
if options[:path].nil? or options[:path].empty?
- raise ArgumentError, ':path is required'
- end
- if options[:from].nil? or options[:from].empty?
- raise ArgumentError, ':from is required'
+ fail ArgumentError, ':path is required'
+ elsif options[:from].nil? or options[:from].empty?
+ fail ArgumentError, ':from is required'
end
@loader = MIME::Types::Loader.new(options[:path])
@@ -95,6 +102,7 @@ class Convert
end
private
+
def load_from(source_type)
method = :"load_#{source_type}"
@loader.send(method)
@@ -140,8 +148,8 @@ class Convert
end
def must_be_directory!(path)
- if File.exist?(path) and not File.directory?(path)
- raise ArgumentError, 'Cannot write multiple files to a file.'
+ if File.exist?(path) and !File.directory?(path)
+ fail ArgumentError, 'Cannot write multiple files to a file.'
end
FileUtils.mkdir_p(path) unless File.exist?(path)
diff --git a/support/convert/columnar.rb b/support/convert/columnar.rb
index 4eb39fc..8aee2dc 100644
--- a/support/convert/columnar.rb
+++ b/support/convert/columnar.rb
@@ -24,7 +24,7 @@ class Convert::Columnar < Convert
column_file('content_type') do |type|
[ type['content-type'], Array(type['extensions']).join(' ') ].
- flatten.join(' ')
+ flatten.join(' ').strip
end
required_file('encoding')
diff --git a/support/iana_registry.rb b/support/iana_registry.rb
index 9aaab3a..25c353e 100644
--- a/support/iana_registry.rb
+++ b/support/iana_registry.rb
@@ -11,6 +11,12 @@ require 'yaml'
ENV['RUBY_MIME_TYPES_LAZY_LOAD'] = 'yes'
require 'mime/types'
+class MIME::Types
+ def self.deprecated(*_args, &_block)
+ # We are an internal tool. Silence deprecation warnings.
+ end
+end
+
class IANARegistry
DEFAULTS = {
url: %q(https://www.iana.org/assignments/media-types/media-types.xml),
@@ -21,7 +27,7 @@ class IANARegistry
dest = Pathname(options[:to] || DEFAULTS[:to]).expand_path
url = options.fetch(:url, DEFAULTS[:url])
- puts "Downloading IANA MIME type assignments."
+ puts 'Downloading IANA MIME type assignments.'
puts "\t#{url}"
xml = Nokogiri::XML(open(url) { |f| f.read })
@@ -48,7 +54,7 @@ class IANARegistry
yield self if block_given?
end
- ASSIGNMENT_FILE_REF = "{%s=http://www.iana.org/assignments/media-types/%s}"
+ ASSIGNMENT_FILE_REF = '{%s=http://www.iana.org/assignments/media-types/%s}'
def parse
@registry.css('record').each do |record|
@@ -63,9 +69,11 @@ class IANARegistry
subtype, notes = subtype.split(/ /, 2)
- refs, xrefs = parse_refs_and_files(record.css('xref'),
- record.css('file'),
- subtype)
+ refs, xrefs = parse_refs_and_files(
+ record.css('xref'),
+ record.css('file'),
+ subtype
+ )
xrefs['notes'] << notes if notes
@@ -102,6 +110,7 @@ class IANARegistry
end
private
+
def mime_types_for(file)
if file.exist?
MIME::Types::Loader.load_from_yaml(file)
@@ -115,7 +124,8 @@ class IANARegistry
r = []
refs.each do |xref|
- type, data = xref["type"], xref["data"]
+ type = xref['type']
+ data = xref['data']
r << ref_from_type(type, data)
@@ -129,11 +139,11 @@ class IANARegistry
file.text
end
- if file["type"] == "template"
+ if file['type'] == 'template'
r << (ASSIGNMENT_FILE_REF % [ file_name, file_name ])
end
- xr[file["type"]] << file_name
+ xr[file['type']] << file_name
end
[ r, xr ]
diff --git a/test/minitest_helper.rb b/test/minitest_helper.rb
index 63ee66a..d0f5d2d 100644
--- a/test/minitest_helper.rb
+++ b/test/minitest_helper.rb
@@ -8,12 +8,13 @@ require 'minitest/autorun'
require 'minitest/focus'
module Minitest::MIMEDeprecated
- def assert_deprecated(name, message = "and will be removed")
- assert_output nil,
- /#{Regexp.escape(name)} is deprecated #{Regexp.escape(message)}./ do
+ def assert_deprecated name, message = 'and will be removed'
+ name = Regexp.escape(name)
+ message = Regexp.escape(message)
+
+ assert_output nil, /#{name} is deprecated #{message}./ do
yield
end
- ensure
end
Minitest::Test.send(:include, self)
diff --git a/test/test_mime_type.rb b/test/test_mime_type.rb
index 906ad2b..e6f23b2 100644
--- a/test/test_mime_type.rb
+++ b/test/test_mime_type.rb
@@ -46,15 +46,19 @@ class TestMIMEType < Minitest::Test
def setup
@applzip = MIME::Type.new('x-appl/x-zip') { |t|
- t.extensions = ['zip', 'zp']
+ t.extensions = %w(zip zp)
}
end
def test_class_from_array
yaml = nil
assert_deprecated('MIME::Type.from_array') do
- yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
- 'd9d172f608')
+ yaml = MIME::Type.from_array(
+ 'text/x-yaml',
+ %w(yaml yml),
+ '8bit',
+ 'd9d172f608'
+ )
end
assert_instance_of(MIME::Type, yaml)
assert_equal('text/yaml', yaml.simplified)
@@ -106,7 +110,7 @@ class TestMIMEType < Minitest::Test
end
def test_spaceship_compare # '<=>'
- assert(MIME::Type.new('text/plain') == MIME::Type.new('text/plain'))
+ assert(MIME::Type.new('text/plain') == MIME::Type.new('text/plain')) # rubocop:disable Lint/UselessComparison
assert(MIME::Type.new('text/plain') != MIME::Type.new('image/jpeg'))
assert(MIME::Type.new('text/plain') == 'text/plain')
assert(MIME::Type.new('text/plain') != 'image/jpeg')
@@ -152,7 +156,7 @@ class TestMIMEType < Minitest::Test
assert_equal('text/vCard', MIME::Type.new('text/vCard').content_type)
assert_equal('application/pkcs7-mime',
MIME::Type.new('application/pkcs7-mime').content_type)
- assert_equal('x-appl/x-zip', @applzip.content_type);
+ assert_equal('x-appl/x-zip', @applzip.content_type)
assert_equal('base64', @applzip.encoding)
end
@@ -446,7 +450,7 @@ class TestMIMEType < Minitest::Test
def assert_type_has_keys(type, *keys)
hash = type.to_h
- keys.flatten.each { |key| assert(hash.has_key?(key)) }
+ keys.flatten.each { |key| assert(hash.key?(key)) }
end
def test_to_h
@@ -455,8 +459,10 @@ class TestMIMEType < Minitest::Test
assert_type_has_keys(make(t) { |v| v.docs = 'Something' }, 'docs')
assert_type_has_keys(make(t) { |v| v.extensions = %w(b) }, 'extensions')
assert_type_has_keys(make(t) { |v| v.obsolete = true }, 'obsolete')
- assert_type_has_keys(make(t) { |v| v.obsolete = true; v.use_instead = 'c/d' },
- 'obsolete', 'use-instead')
+ assert_type_has_keys(make(t) { |v|
+ v.obsolete = true
+ v.use_instead = 'c/d'
+ }, 'obsolete', 'use-instead')
assert_type_has_keys(make(t) { |v|
assert_deprecated('MIME::Type#references=') { v.references = 'IANA' }
}, 'references')
@@ -484,7 +490,7 @@ class TestMIMEType < Minitest::Test
begin
MIME::Type.new(nil)
rescue MIME::Type::InvalidContentType => ex
- assert_equal("Invalid Content-Type nil", ex.message)
+ assert_equal('Invalid Content-Type nil', ex.message)
end
end
@@ -501,17 +507,17 @@ class TestMIMEType < Minitest::Test
def test_references_equals
yaml = make_yaml_mime_type
assert_deprecated('MIME::Type#references=') do
- yaml.references = "IANA"
+ yaml.references = 'IANA'
end
assert_deprecated('MIME::Type#references') do
- assert_equal(%W(IANA), yaml.references)
+ assert_equal(%w(IANA), yaml.references)
end
assert_deprecated('MIME::Type#references=') do
yaml.references = %w(IANA IANA)
end
assert_deprecated('MIME::Type#references') do
- assert_equal(%W(IANA), yaml.references)
+ assert_equal(%w(IANA), yaml.references)
end
end
@@ -527,23 +533,23 @@ class TestMIMEType < Minitest::Test
def test_xref_urls
js = make_javascript do |j|
- j.xrefs = j.xrefs.merge({
+ j.xrefs = j.xrefs.merge(
'draft' => [ 'RFC-ietf-appsawg-json-merge-patch-07' ],
'person' => [ 'David_Singer' ],
'rfc-errata' => [ '3245' ],
'uri' => [ 'http://exmple.org' ],
'text' => [ 'text' ]
- })
+ )
end
assert_equal(
[
- "http://www.iana.org/go/rfc4239",
- "http://www.iana.org/assignments/media-types/application/javascript",
- "http://www.iana.org/go/draft-ietf-appsawg-json-merge-patch-07",
- "http://www.iana.org/assignments/media-types/media-types.xhtml#David_Singer",
- "http://www.rfc-editor.org/errata_search.php?eid=3245",
- "http://exmple.org",
- "text"
+ 'http://www.iana.org/go/rfc4239',
+ 'http://www.iana.org/assignments/media-types/application/javascript',
+ 'http://www.iana.org/go/draft-ietf-appsawg-json-merge-patch-07',
+ 'http://www.iana.org/assignments/media-types/media-types.xhtml#David_Singer',
+ 'http://www.rfc-editor.org/errata_search.php?eid=3245',
+ 'http://exmple.org',
+ 'text'
],
js.xref_urls
)
@@ -558,10 +564,10 @@ class TestMIMEType < Minitest::Test
def test_url_equals
yaml = make_yaml_mime_type
assert_deprecated('MIME::Type#url=') do
- yaml.url = "IANA"
+ yaml.url = 'IANA'
end
assert_deprecated('MIME::Type#url') do
- assert_equal(%W(IANA), yaml.url)
+ assert_equal(%w(IANA), yaml.url)
end
end
@@ -578,10 +584,10 @@ class TestMIMEType < Minitest::Test
assert_deprecated('MIME::Type#urls') do
assert_equal(
%w(
- http://www.iana.org/assignments/media-types/text/yaml
- http://rfc-editor.org/rfc/rfc123.txt
- http://datatracker.ietf.org/public/idindex.cgi?command=id_details&filename=xyz
- http://www.iana.org/assignments/contact-people.htm#abc
+ http://www.iana.org/assignments/media-types/text/yaml
+ http://rfc-editor.org/rfc/rfc123.txt
+ http://datatracker.ietf.org/public/idindex.cgi?command=id_details&filename=xyz
+ http://www.iana.org/assignments/contact-people.htm#abc
),
yaml.urls
)
@@ -639,7 +645,7 @@ class TestMIMEType < Minitest::Test
end
def test_friendly_set
- assert_equal({ 'en' => 'Zip' }, @applzip.friendly([ 'en', 'Zip' ]))
+ assert_equal({ 'en' => 'Zip' }, @applzip.friendly(%w(en Zip)))
assert_equal({ 'en' => 'Zip Archive' }, @applzip.friendly('en' => 'Zip Archive'))
end
diff --git a/test/test_mime_types.rb b/test/test_mime_types.rb
index 1c7e31a..db3776d 100644
--- a/test/test_mime_types.rb
+++ b/test/test_mime_types.rb
@@ -11,7 +11,7 @@ class TestMIMETypes < Minitest::Test
MIME::Type.new('application/x-wordperfect6.1'),
MIME::Type.new('content-type' => 'application/x-www-form-urlencoded', 'registered' => true),
MIME::Type.new(['application/x-gzip', %w(gz)]),
- MIME::Type.new(['application/gzip', %W(gz)]))
+ MIME::Type.new(['application/gzip', %w(gz)]))
end
def test_enumerable
@@ -52,15 +52,15 @@ class TestMIMETypes < Minitest::Test
end
def test_index_with_platform_flag
- assert_deprecated("MIME::Types#[]", "using the :platform flag") do
+ assert_deprecated('MIME::Types#[]', 'using the :platform flag') do
assert_empty(MIME::Types['text/plain', platform: true])
end
end
def test_add
- eruby = MIME::Type.new("application/x-eruby") do |t|
- t.extensions = "rhtml"
- t.encoding = "8bit"
+ eruby = MIME::Type.new('application/x-eruby') do |t|
+ t.extensions = 'rhtml'
+ t.encoding = '8bit'
end
@mime_types.add(eruby)
@@ -74,11 +74,11 @@ class TestMIMETypes < Minitest::Test
assert_equal(%w(image/jpeg), MIME::Types.of('foo.jpeg'))
assert_equal(%w(image/jpeg text/plain),
MIME::Types.type_for(%w(foo.txt foo.jpeg)))
- assert_deprecated("MIME::Types#type_for", "using the platform parameter") do
+ assert_deprecated('MIME::Types#type_for', 'using the platform parameter') do
assert_equal(@mime_types.of('gif', true), @mime_types['image/gif'])
end
assert_empty(MIME::Types.type_for('coverallsjson'))
- assert_deprecated("MIME::Types#type_for", "using the platform parameter") do
+ assert_deprecated('MIME::Types#type_for', 'using the platform parameter') do
assert_empty(MIME::Types.type_for('jpeg', true))
end
assert_empty(@mime_types.type_for('zzz'))
@@ -91,7 +91,7 @@ class TestMIMETypes < Minitest::Test
# This tests the instance implementation through the class implementation.
def test_add_type_variant
xtxp = MIME::Type.new('x-text/x-plain')
- assert_deprecated("MIME::Types#add_type_variant", "and will be private") do
+ assert_deprecated('MIME::Types#add_type_variant', 'and will be private') do
@mime_types.add_type_variant(xtxp)
end
assert_includes(@mime_types['text/plain'], xtxp)
@@ -104,17 +104,17 @@ class TestMIMETypes < Minitest::Test
# This tests the instance implementation through the class implementation.
def test_index_extensions
xtxp = MIME::Type.new(['x-text/x-plain', %w(tzt)])
- assert_deprecated("MIME::Types#index_extensions", "and will be private") do
+ assert_deprecated('MIME::Types#index_extensions', 'and will be private') do
@mime_types.index_extensions(xtxp)
end
assert_includes(@mime_types.of('tzt'), xtxp)
end
def test_defined_types
- assert_deprecated("MIME::Types#defined_types") do
+ assert_deprecated('MIME::Types#defined_types') do
assert_empty(MIME::Types.new.defined_types)
end
- assert_deprecated("MIME::Types#defined_types") do
+ assert_deprecated('MIME::Types#defined_types') do
refute_empty(@mime_types.defined_types)
end
end
diff --git a/test/test_mime_types_class.rb b/test/test_mime_types_class.rb
index 359636c..5772c26 100644
--- a/test/test_mime_types_class.rb
+++ b/test/test_mime_types_class.rb
@@ -16,7 +16,7 @@ class TestMIMETypesQueryClassMethods < Minitest::Test
def test_load_from_file
fn = File.expand_path('../fixture/old-data', __FILE__)
- assert_deprecated("MIME::Types.load_from_file") do
+ assert_deprecated('MIME::Types.load_from_file') do
MIME::Types.load_from_file(fn)
end
end
@@ -53,7 +53,7 @@ class TestMIMETypesQueryClassMethods < Minitest::Test
end
def test_index_with_platform_flag
- assert_deprecated("MIME::Types#[]", "using the :platform flag") do
+ assert_deprecated('MIME::Types#[]', 'using the :platform flag') do
assert_empty(MIME::Types['text/plain', platform: true])
end
end
@@ -63,7 +63,7 @@ class TestMIMETypesQueryClassMethods < Minitest::Test
assert_equal(%w(image/gif), MIME::Types.of('foo.gif'))
assert_equal(%w(application/xml image/gif text/xml),
MIME::Types.type_for(%w(xml gif)))
- assert_deprecated("MIME::Types#type_for", "using the platform parameter") do
+ assert_deprecated('MIME::Types#type_for', 'using the platform parameter') do
assert_empty(MIME::Types.type_for('gif', true))
end
assert_empty(MIME::Types.type_for('zzz'))
@@ -71,16 +71,16 @@ class TestMIMETypesQueryClassMethods < Minitest::Test
def test_count
assert(MIME::Types.count.nonzero?,
- "A lot of types are expected to be known.")
+ 'A lot of types are expected to be known.')
end
def test_cache_file
ENV['RUBY_MIME_TYPES_CACHE'] = 'foo'
- assert_deprecated("MIME::Types.cache_file") do
+ assert_deprecated('MIME::Types.cache_file') do
assert_equal('foo', MIME::Types.cache_file)
end
ENV.delete('RUBY_MIME_TYPES_CACHE')
- assert_deprecated("MIME::Types.cache_file") do
+ assert_deprecated('MIME::Types.cache_file') do
assert_nil(MIME::Types.cache_file)
end
end
@@ -93,37 +93,37 @@ class TestMIMETypesClassMethods < Minitest::Test
end
def test_add_with_type
- MIME::Types.add(MIME::Type.new("application/x-eruby"))
+ MIME::Types.add(MIME::Type.new('application/x-eruby'))
refute_empty(MIME::Types['application/x-eruby'])
end
def test_add_with_types
mt = MIME::Types.new
- mt.add MIME::Type.new("application/x-eruby")
+ mt.add MIME::Type.new('application/x-eruby')
MIME::Types.add(mt)
refute_empty(MIME::Types['application/x-eruby'])
end
def test_add_with_array
- MIME::Types.add([MIME::Type.new("application/x-eruby")])
+ MIME::Types.add([MIME::Type.new('application/x-eruby')])
refute_empty(MIME::Types['application/x-eruby'])
end
def test_add_with_noise_suppression
assert_silent do
- MIME::Types.add(MIME::Type.new("application/x-eruby"))
+ MIME::Types.add(MIME::Type.new('application/x-eruby'))
end
assert_output(nil, %r{application/x-eruby is already registered}) do
- MIME::Types.add(MIME::Type.new("application/x-eruby"))
+ MIME::Types.add(MIME::Type.new('application/x-eruby'))
end
assert_silent do
- MIME::Types.add(MIME::Type.new("application/x-eruby"), :silent)
+ MIME::Types.add(MIME::Type.new('application/x-eruby'), :silent)
end
end
def test_add_type_variant
xtxp = MIME::Type.new('x-text/x-plain')
- assert_deprecated("MIME::Types#add_type_variant", "and will be private") do
+ assert_deprecated('MIME::Types#add_type_variant', 'and will be private') do
MIME::Types.add_type_variant(xtxp)
end
assert_includes(MIME::Types['text/plain'], xtxp)
@@ -131,7 +131,7 @@ class TestMIMETypesClassMethods < Minitest::Test
def test_index_extensions
xtxp = MIME::Type.new(['x-text/x-plain', %w(tzt)])
- assert_deprecated("MIME::Types#index_extensions", "and will be private") do
+ assert_deprecated('MIME::Types#index_extensions', 'and will be private') do
MIME::Types.index_extensions(xtxp)
end
assert_includes(MIME::Types.of('tzt'), xtxp)
diff --git a/test/test_mime_types_loader.rb b/test/test_mime_types_loader.rb
index 5733762..d088743 100644
--- a/test/test_mime_types_loader.rb
+++ b/test/test_mime_types_loader.rb
@@ -25,10 +25,10 @@ class TestMIMETypesLoader < Minitest::Test
assert_equal('Fixes a bug with IE6 and progressive JPEGs',
types['image/pjpeg'].first.docs)
- assert_deprecated("MIME::Type#system?") do
+ assert_deprecated('MIME::Type#system?') do
assert(types['application/x-apple-diskimage'].first.system?)
end
- assert_deprecated("MIME::Type#system") do
+ assert_deprecated('MIME::Type#system') do
assert_equal(/mac/, types['application/x-apple-diskimage'].first.system)
end
@@ -45,7 +45,7 @@ class TestMIMETypesLoader < Minitest::Test
end
def test_load_v1
- assert_deprecated("MIME::Types::Loader.load_v1") do
+ assert_deprecated('MIME::Types::Loader.load_v1') do
assert_correctly_loaded(@loader.load_v1)
end
end
diff --git a/type-lists/application.yaml b/type-lists/application.yaml
index 63bcc43..4691396 100644
--- a/type-lists/application.yaml
+++ b/type-lists/application.yaml
@@ -1156,8 +1156,6 @@
- W3C
uri:
- http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration
- text:
- -
registered: true
- !ruby/object:MIME::Type
content-type: application/emotionml+xml
@@ -1336,8 +1334,6 @@
xrefs: !ruby/hash:MIME::Types::Container
person:
- Levantovsky
- text:
- -
template:
- application/font-sfnt
registered: true
@@ -1781,11 +1777,11 @@
encoding: base64
references:
- IANA
- - DRAFT:draft-ietf-jose-json-web-signature-41
+ - RFC7515
- "{application/jose=http://www.iana.org/assignments/media-types/application/jose}"
xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - RFC-ietf-jose-json-web-signature-41
+ rfc:
+ - rfc7515
template:
- application/jose
registered: true
@@ -1794,11 +1790,11 @@
encoding: base64
references:
- IANA
- - DRAFT:draft-ietf-jose-json-web-signature-41
+ - RFC7515
- "{application/jose+json=http://www.iana.org/assignments/media-types/application/jose+json}"
xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - RFC-ietf-jose-json-web-signature-41
+ rfc:
+ - rfc7515
template:
- application/jose+json
registered: true
@@ -1869,11 +1865,11 @@
encoding: base64
references:
- IANA
- - DRAFT:draft-ietf-jose-json-web-key-41
+ - RFC7517
- "{application/jwk+json=http://www.iana.org/assignments/media-types/application/jwk+json}"
xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - RFC-ietf-jose-json-web-key-41
+ rfc:
+ - rfc7517
template:
- application/jwk+json
registered: true
@@ -1882,11 +1878,11 @@
encoding: base64
references:
- IANA
- - DRAFT:draft-ietf-jose-json-web-key-41
+ - RFC7517
- "{application/jwk-set+json=http://www.iana.org/assignments/media-types/application/jwk-set+json}"
xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - RFC-ietf-jose-json-web-key-41
+ rfc:
+ - rfc7517
template:
- application/jwk-set+json
registered: true
@@ -1895,11 +1891,11 @@
encoding: base64
references:
- IANA
- - DRAFT:draft-ietf-oauth-json-web-token-32
+ - RFC7519
- "{application/jwt=http://www.iana.org/assignments/media-types/application/jwt}"
xrefs: !ruby/hash:MIME::Types::Container
- draft:
- - RFC-ietf-oauth-json-web-token-32
+ rfc:
+ - rfc7519
template:
- application/jwt
registered: true
@@ -4676,8 +4672,6 @@
xrefs: !ruby/hash:MIME::Types::Container
person:
- Gottfried_Zimmermann
- text:
- -
template:
- application/urc-grpsheet+xml
registered: true
@@ -4691,8 +4685,6 @@
xrefs: !ruby/hash:MIME::Types::Container
person:
- Gottfried_Zimmermann
- text:
- -
template:
- application/urc-ressheet+xml
registered: true
@@ -4706,8 +4698,6 @@
xrefs: !ruby/hash:MIME::Types::Container
person:
- Gottfried_Zimmermann
- text:
- -
template:
- application/urc-targetdesc+xml
registered: true
@@ -5488,6 +5478,19 @@
- application/vnd.balsamiq.bmml+xml
registered: true
- !ruby/object:MIME::Type
+ content-type: application/vnd.balsamiq.bmpr
+ encoding: base64
+ references:
+ - IANA
+ - "[Giacomo_Guilizzoni]"
+ - "{application/vnd.balsamiq.bmpr=http://www.iana.org/assignments/media-types/application/vnd.balsamiq.bmpr}"
+ xrefs: !ruby/hash:MIME::Types::Container
+ person:
+ - Giacomo_Guilizzoni
+ template:
+ - application/vnd.balsamiq.bmpr
+ registered: true
+- !ruby/object:MIME::Type
content-type: application/vnd.bekitzur-stech+json
encoding: base64
references:
diff --git a/type-lists/audio.yaml b/type-lists/audio.yaml
index ba8f495..bc306f8 100644
--- a/type-lists/audio.yaml
+++ b/type-lists/audio.yaml
@@ -103,9 +103,9 @@
- RFC4867
- "{audio/AMR-WB=http://www.iana.org/assignments/media-types/audio/AMR-WB}"
xrefs: !ruby/hash:MIME::Types::Container
- rfc: &1
+ rfc:
- rfc4867
- template: &2
+ template:
- audio/AMR-WB
registered: true
- !ruby/object:MIME::Type