mime-types-data-3.2015.1120/0000755000175000017500000000000012627041214016453 5ustar balasankarcbalasankarcmime-types-data-3.2015.1120/mime-types-data.gemspec0000644000175000017500000000616412627041214023027 0ustar balasankarcbalasankarc# -*- encoding: utf-8 -*- # stub: mime-types-data 3.2015.1120 ruby lib Gem::Specification.new do |s| s.name = "mime-types-data" s.version = "3.2015.1120" 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-11-19" s.description = "mime-types-data provides a registry for information about MIME media type\ndefinitions. It can be used with the Ruby mime-types library or other software\nto determine defined filename extensions for MIME types, or to use filename\nextensions to look up the likely MIME type definitions." s.email = ["halostatue@gmail.com"] s.extra_rdoc_files = ["Code-of-Conduct.md", "Contributing.md", "History.md", "Licence.md", "Manifest.txt", "README.md"] s.files = [".gitignore", ".hoerc", "Code-of-Conduct.md", "Contributing.md", "History.md", "Licence.md", "Manifest.txt", "README.md", "Rakefile", "data/mime-types.json", "data/mime.content_type.column", "data/mime.docs.column", "data/mime.encoding.column", "data/mime.flags.column", "data/mime.friendly.column", "data/mime.pext.column", "data/mime.use_instead.column", "data/mime.xrefs.column", "lib/mime-types-data.rb", "lib/mime/types/data.rb"] s.homepage = "https://github.com/mime-types/mime-types-data/" s.licenses = ["MIT"] s.rdoc_options = ["--main", "README.md"] s.required_ruby_version = Gem::Requirement.new(">= 2.0") s.rubygems_version = "2.4.8" s.summary = "mime-types-data provides a registry for information about MIME media type definitions" if s.respond_to? :specification_version then s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_development_dependency(%q, ["~> 4.0"]) s.add_development_dependency(%q, ["~> 1.6"]) s.add_development_dependency(%q, ["~> 1.0"]) s.add_development_dependency(%q, ["~> 1.1"]) s.add_development_dependency(%q, ["~> 1.6"]) s.add_development_dependency(%q, ["~> 1.0"]) s.add_development_dependency(%q, ["~> 10.0"]) s.add_development_dependency(%q, ["~> 3.0"]) s.add_development_dependency(%q, ["~> 3.14"]) else s.add_dependency(%q, ["~> 4.0"]) s.add_dependency(%q, ["~> 1.6"]) s.add_dependency(%q, ["~> 1.0"]) s.add_dependency(%q, ["~> 1.1"]) s.add_dependency(%q, ["~> 1.6"]) s.add_dependency(%q, ["~> 1.0"]) s.add_dependency(%q, ["~> 10.0"]) s.add_dependency(%q, ["~> 3.0"]) s.add_dependency(%q, ["~> 3.14"]) end else s.add_dependency(%q, ["~> 4.0"]) s.add_dependency(%q, ["~> 1.6"]) s.add_dependency(%q, ["~> 1.0"]) s.add_dependency(%q, ["~> 1.1"]) s.add_dependency(%q, ["~> 1.6"]) s.add_dependency(%q, ["~> 1.0"]) s.add_dependency(%q, ["~> 10.0"]) s.add_dependency(%q, ["~> 3.0"]) s.add_dependency(%q, ["~> 3.14"]) end end mime-types-data-3.2015.1120/Gemfile0000644000175000017500000000024612627041214017750 0ustar balasankarcbalasankarc# -*- ruby -*- # NOTE: This file is present to keep Travis CI happy. Edits to it will not # be accepted. source "https://rubygems.org/" gemspec # vim: syntax=ruby mime-types-data-3.2015.1120/.gitignore0000644000175000017500000000021012627041214020434 0ustar balasankarcbalasankarc*.swp *~ .rake_tasks~ .source_index .vagrant Gemfile.lock Vagrantfile coverage doc html pkg publish test/cache.tst tmp/ .byebug_history mime-types-data-3.2015.1120/Rakefile0000644000175000017500000000402412627041214020120 0ustar balasankarcbalasankarc# -*- ruby encoding: utf-8 -*- require 'rubygems' require 'hoe' require 'rake/clean' Hoe.plugin :doofus Hoe.plugin :gemspec2 Hoe.plugin :git Hoe.plugin :travis Hoe.plugin :email unless ENV['CI'] or ENV['TRAVIS'] Hoe.spec 'mime-types-data' do developer('Austin Ziegler', 'halostatue@gmail.com') require_ruby_version '>= 2.0' self.history_file = 'History.md' self.readme_file = 'README.md' # self.extra_rdoc_files = FileList['*.rdoc'].to_a license 'MIT' extra_dev_deps << ['nokogiri', '~> 1.6'] 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 << ['rake', '~> 10.0'] extra_dev_deps << ['mime-types', '~> 3.0'] end $LOAD_PATH.unshift 'lib' $LOAD_PATH.unshift 'support' namespace :mime do desc 'Download the current MIME type registrations from IANA.' task :iana, [ :destination ] do |_, args| require 'iana_registry' IANARegistry.download(to: args.destination) end desc 'Download the current MIME type configuration from Apache.' task :apache, [ :destination ] do |_, args| require 'apache_mime_types' ApacheMIMETypes.download(to: args.destination) end end namespace :convert do namespace :yaml do 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 |_, 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 |_, args| require 'convert' Convert.from_json_to_yaml(args) end end end desc 'Default conversion from YAML to JSON and Columnar' task convert: [ 'convert:yaml:json', 'convert:yaml:columnar' ] # vim: syntax=ruby mime-types-data-3.2015.1120/Code-of-Conduct.md0000644000175000017500000000377012627041214021655 0ustar balasankarcbalasankarc## Contributor Code of Conduct As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, or nationality. Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery * Personal attacks * Trolling or insulting/derogatory comments * Public or private harassment * Publishing other's private information, such as physical or electronic addresses, without explicit permission * Other unethical or unprofessional conduct. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. By adopting this Code of Conduct, project maintainers commit themselves to fairly and consistently applying these principles to every aspect of managing this project. Project maintainers who do not follow or enforce the Code of Conduct may be permanently removed from the project team. This code of conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers. This Code of Conduct is adapted from the [Contributor Covenant][covenant], version 1.2.0, available at [http://contributor-covenant.org/version/1/2/0/][covenant 1.2.0]. [covenant]: http://contributor-covenant.org [covenant 1.2.0]: http://contributor-covenant.org/version/1/2/0/ mime-types-data-3.2015.1120/lib/0000755000175000017500000000000012627041214017221 5ustar balasankarcbalasankarcmime-types-data-3.2015.1120/lib/mime-types-data.rb0000644000175000017500000000003212627041214022541 0ustar balasankarcbalasankarcrequire 'mime/types/data' mime-types-data-3.2015.1120/lib/mime/0000755000175000017500000000000012627041214020150 5ustar balasankarcbalasankarcmime-types-data-3.2015.1120/lib/mime/types/0000755000175000017500000000000012627041214021314 5ustar balasankarcbalasankarcmime-types-data-3.2015.1120/lib/mime/types/data.rb0000644000175000017500000000126312627041214022554 0ustar balasankarcbalasankarcmodule MIME class Types module Data VERSION = '3.2015.1120' # The path that will be used for loading the MIME::Types data. The # default location is __FILE__/../../../../data, which is where the data # lives in the gem installation of the mime-types-data library. # # The MIME::Types::Loader will load all JSON or columnar files contained # in this path. # # System maintainer note: this is the constant to change when packaging # mime-types for your system. It is recommended that the path be # something like /usr/share/ruby/mime-types/. PATH = File.expand_path('../../../../data', __FILE__) end end end mime-types-data-3.2015.1120/data/0000755000175000017500000000000012627041214017364 5ustar balasankarcbalasankarcmime-types-data-3.2015.1120/data/mime.flags.column0000644000175000017500000002653212627041214022635 0ustar balasankarcbalasankarc0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 1 0 0 0 0 1 0 0 1 0 0 1 1 0 1 0 0 1 1 0 1 1 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 1 0 0 1 0 0 0 1 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 1 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 mime-types-data-3.2015.1120/data/mime.content_type.column0000644000175000017500000016341612627041214024257 0ustar balasankarcbalasankarcapplication/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/andrew-inset ez application/appledouble application/applefile application/applixware aw application/ATF application/ATFX application/atom+xml atom application/atomcat+xml atomcat 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/bleeper bleep 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/cdmi-capability cdmia application/cdmi-container cdmic application/cdmi-domain cdmid application/cdmi-object cdmio application/cdmi-queue cdmiq application/cdni 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/csvm+json application/cu-seeme cu application/cybercash application/dash+xml application/dashdelta application/davmount+xml davmount application/dca-rft application/DCD application/dec-dx application/dialog-info+xml application/dicom dcm application/DII application/DIT application/dns application/docbook+xml dbk application/drafting application/dskpp+xml application/dssc+der dssc application/dssc+xml xdssc application/dvcs application/dxf application/ecmascript ecma application/EDI-consent application/EDI-X12 application/EDIFACT application/emma+xml emma application/emotionml+xml application/encaprtp application/epp+xml application/epub+zip epub application/eshop application/example application/excel xls xlt application/exi exi application/fastinfoset application/fastsoap application/fdt+xml application/fits application/font-sfnt otf ttf application/font-tdpfr pfr application/font-woff woff woff2 application/fractals application/framework-attributes+xml application/futuresplash spl application/ghostview application/gml+xml gml application/gpx+xml gpx application/gxf gxf application/gzip gz application/H224 application/held+xml application/hep hep 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/imagemap imagemap imap application/index application/index.cmd application/index.obj application/index.response application/index.vnd application/inkml+xml ink inkml application/iotp application/ipfix ipfix 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/json json 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/lost+xml lostxml application/lostsync+xml application/lotus-123 wks application/LXF application/mac-binhex40 hqx application/mac-compactpro cpt 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/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/mbox mbox application/media-policy-dataset+xml application/media_control+xml application/mediaservercontrol+xml mscml application/merge-patch+json application/metalink+xml metalink application/metalink4+xml meta4 application/mets+xml mets application/MF4 application/mikey application/mods+xml mods 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/msword doc dot wrd application/mxf mxf 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/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/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/patch-ops-error+xml xer application/pdf pdf application/PDX application/pgp-encrypted pgp application/pgp-keys application/pgp-signature asc sig application/pics-rules prf application/pidf+xml application/pidf-diff+xml application/pkcs10 p10 application/pkcs12 application/pkcs7-mime p7m p7c application/pkcs7-signature p7s application/pkcs8 p8 application/pkix-attr-cert ac application/pkix-cert cer application/pkix-crl crl application/pkix-pkipath pkipath application/pkixcmp pki application/pls+xml pls 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/prs.cww cw cww application/prs.hpub+zip application/prs.nprend rnd rct application/prs.plucker application/prs.rdf-xml-crypt application/prs.xsf+xml application/pskc+xml pskcxml application/qsig application/quicktimeplayer qtl 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/resource-lists+xml rl application/resource-lists-diff+xml rld application/rfc+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/rsd+xml rsd application/rss+xml rss application/rtf rtf application/rtploopback application/rtx application/samlassertion+xml application/samlmetadata+xml application/sbml+xml sbml application/scaip+xml application/scim+json 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/set-payment-initiation setpay 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/smil smi smil application/smil+xml smi smil 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/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/tei+xml tei teicorpus application/thraud+xml tfi 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/VMSBACKUP bck application/vnd.3gpp-prose+xml application/vnd.3gpp-prose-pc3ch+xml application/vnd.3gpp.access-transfer-events+xml application/vnd.3gpp.bsf+xml application/vnd.3gpp.mid-call+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.3gpp.srvcc-ext+xml application/vnd.3gpp.SRVCC-info+xml application/vnd.3gpp.state-and-event-info+xml application/vnd.3gpp.ussd+xml 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 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.formscentral.fcdt fcdt application/vnd.adobe.fxp fxp fxpl 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.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.android.package-archive apk application/vnd.anki 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.apple.installer+xml mpkg application/vnd.apple.mpegurl m3u8 application/vnd.apple.pkpass pkpass application/vnd.arastra.swi application/vnd.aristanetworks.swi swi 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.balsamiq.bmpr application/vnd.bekitzur-stech+json application/vnd.biopax.rdf+xml application/vnd.blueice.multipass mpm 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.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.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.commonspace csp application/vnd.contact.cmsg cdbcmsg application/vnd.cosmocaller cmc application/vnd.crick.clicker clkx application/vnd.crick.clicker.keyboard clkk application/vnd.crick.clicker.palette clkp 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.cups-ppd ppd 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.dart dart application/vnd.data-vision.rdz rdz 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.dna dna 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.dpgraph dpg application/vnd.dreamfactory dfac application/vnd.drive+json application/vnd.ds-keypoint kpxx 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.service svc application/vnd.dxr application/vnd.dynageo geo 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.enliven nml 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.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.ezpix-album ez2 application/vnd.ezpix-package ez3 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.firemonkeys.cloudcell application/vnd.FloGraphIt gph application/vnd.fluxtime.clip ftc 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 application/vnd.fsc.weblaunch fsc application/vnd.fujitsu.oasys oas 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.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.fuzzysheet fzs application/vnd.genomatix.tuxedo txd 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.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.grafeq gqf gqs application/vnd.gridmp application/vnd.groove-account gac application/vnd.groove-help ghf application/vnd.groove-identity-message gim 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+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.hhe.lesson-player les application/vnd.hp-HPGL plt hpgl application/vnd.hp-hpid hpid 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.hydrostatix.sof-data sfd-hdstx application/vnd.hyperdrive+json 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.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.insors.igm igm application/vnd.intercon.formnet xpw xpx application/vnd.intergeo i2g 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.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.jcp.javame.midlet-rms rms application/vnd.jisp jisp application/vnd.joost.joda-archive joda application/vnd.jsk.isdn-ngn application/vnd.kahootz ktr ktz application/vnd.kde.karbon karbon application/vnd.kde.kchart chrt application/vnd.kde.kformula kfo application/vnd.kde.kivio flw application/vnd.kde.kontour kon application/vnd.kde.kpresenter kpr kpt application/vnd.kde.kspread ksp application/vnd.kde.kword kwd kwt application/vnd.kenameaapp htke application/vnd.kidspiration kia 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.llamagraphics.life-balance.desktop lbd application/vnd.llamagraphics.life-balance.exchange+xml lbe application/vnd.lotus-1-2-3 wks 123 application/vnd.lotus-approach apr application/vnd.lotus-freelance pre application/vnd.lotus-notes nsf 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.mcd mcd application/vnd.medcalcdata mc1 application/vnd.mediastation.cdkey cdkey application/vnd.meridian-slingshot application/vnd.MFER mwf application/vnd.mfmp mfm 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.mif mif 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 application/vnd.Mobius.MQY mqy application/vnd.Mobius.MSL msl 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.mozilla.xul+xml xul application/vnd.ms-3mfdocument application/vnd.ms-artgalry cil application/vnd.ms-asf asf application/vnd.ms-cab-compressed cab application/vnd.ms-excel xls xlt xla xlc xlm xlw application/vnd.ms-excel.addin.macroEnabled.12 xlam application/vnd.ms-excel.sheet.binary.macroEnabled.12 xlsb application/vnd.ms-excel.sheet.macroEnabled.12 xlsm application/vnd.ms-excel.template.macroEnabled.12 xltm 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-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-powerpoint ppt pps pot application/vnd.ms-powerpoint.addin.macroEnabled.12 ppam application/vnd.ms-powerpoint.presentation.macroEnabled.12 pptm 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.devicepairing application/vnd.ms-windows.printerpairing application/vnd.ms-windows.wsd.oob 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.mseq mseq 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.nervana ent entity req request bkm kcm application/vnd.netfpx application/vnd.neurolanguage.nlu nlu 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.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.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.oasis.opendocument.chart odc application/vnd.oasis.opendocument.chart-template odc otc application/vnd.oasis.opendocument.database odb application/vnd.oasis.opendocument.formula odf application/vnd.oasis.opendocument.formula-template odf odft application/vnd.oasis.opendocument.graphics odg application/vnd.oasis.opendocument.graphics-template otg application/vnd.oasis.opendocument.image odi application/vnd.oasis.opendocument.image-template odi oti application/vnd.oasis.opendocument.presentation odp application/vnd.oasis.opendocument.presentation-template otp application/vnd.oasis.opendocument.spreadsheet ods application/vnd.oasis.opendocument.spreadsheet-template ots 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.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.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.openblox.game+xml application/vnd.openblox.game-binary 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.presentationml.presentation pptx 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.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.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.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.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.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.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.osgeo.mapguide.package mgp application/vnd.osgi.bundle application/vnd.osgi.dp dp application/vnd.osgi.subsystem esa application/vnd.otps.ct-kip+xml application/vnd.oxli.countgraph application/vnd.pagerduty+json application/vnd.palm prc pdb pqa oprc application/vnd.panoply application/vnd.paos.xml application/vnd.pawaafile paw application/vnd.pcos application/vnd.pg.format str application/vnd.pg.osasli ei6 application/vnd.piaccess.application-licence application/vnd.picsel efif application/vnd.pmi.widget wg 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.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.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.realvnc.bed bed application/vnd.recordare.musicxml mxl application/vnd.recordare.musicxml+xml musicxml 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.sailingtracker.track st 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.ppt sppt spp s1p 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 application/vnd.seemail see application/vnd.sema sema application/vnd.semd semd application/vnd.semf semf application/vnd.shana.informed.formdata ifm 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.smaf mmf application/vnd.smart.notebook application/vnd.smart.teacher teacher 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.stardivision.calc sdc application/vnd.stardivision.chart sds application/vnd.stardivision.draw sda application/vnd.stardivision.impress sdd application/vnd.stardivision.math sdf smf 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.sun.xml.calc sxc application/vnd.sun.xml.calc.template stc application/vnd.sun.xml.draw sxd application/vnd.sun.xml.draw.template std application/vnd.sun.xml.impress sxi application/vnd.sun.xml.impress.template sti application/vnd.sun.xml.math sxm application/vnd.sun.xml.writer sxw 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.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.tao.intent-module-archive tao application/vnd.tcpdump.pcap cap dmp pcap 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.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.uri-map application/vnd.valve.source.material application/vnd.vcx vcx 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.vsf vsf application/vnd.wap.sic sic application/vnd.wap.slc slc 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.wolfram.player nbp application/vnd.wordperfect wpd application/vnd.wqd wqd 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.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.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.smaf-audio saf application/vnd.yamaha.smaf-phrase spf 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/watcherinfo+xml wif application/whoispp-query application/whoispp-response application/widget wgt application/winhlp hlp application/wita application/word doc dot application/wordperfect wp application/wordperfect5.1 wp5 wp application/wordperfect6.1 wp6 application/wordperfectd wpd application/wsdl+xml wsdl application/wspolicy+xml wspolicy application/x-123 wk application/x-7z-compressed 7z application/x-abiword abw application/x-access mdf mda mdb mde application/x-ace-compressed ace application/x-apple-diskimage dmg application/x-authorware-bin aab u32 vox x32 application/x-authorware-map aam application/x-authorware-seg aas application/x-bcpio bcpio application/x-bittorrent torrent application/x-bleeper bleep application/x-blorb blb blorb application/x-bzip bz application/x-bzip2 boz bz2 application/x-cbr cb7 cba cbr cbt cbz application/x-cdlink vcd application/x-cfs-compressed cfs application/x-chat chat application/x-chess-pgn pgn application/x-chrome-extension crx application/x-clariscad application/x-compress z Z application/x-compressed z Z application/x-conference nsc application/x-cpio cpio application/x-csh csh application/x-cu-seeme csm cu 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-dtbncx+xml ncx application/x-dtbook+xml dtb application/x-dtbresource+xml res application/x-dvi dvi application/x-dxf application/x-envoy evy application/x-eva eva application/x-excel application/x-font-bdf bdf application/x-font-ghostscript gsf application/x-font-linux-psf psf application/x-font-opentype otf application/x-font-otf otf application/x-font-pcf pcf 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-freearc arc application/x-futuresplash spl application/x-gca-compressed gca application/x-ghostview application/x-glulx ulx application/x-gnumeric gnumeric application/x-gramps-xml gramps application/x-gtar gtar tgz tbz2 tbz application/x-gzip gz application/x-hdf hdf application/x-hep hep 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-imagemap imagemap imap application/x-install-instructions install application/x-iso9660-image iso application/x-iwork-keynote-sffkey key application/x-iwork-numbers-sffnumbers numbers application/x-iwork-pages-sffpages pages application/x-java-archive jar application/x-java-jnlp-file jnlp application/x-java-serialized-object ser application/x-java-vm class application/x-javascript js application/x-koan skp skd skt skm application/x-latex ltx latex application/x-lotus-123 wks application/x-lzh-compressed lha lzh application/x-mac bin application/x-mac-compactpro cpt application/x-macbase64 bin application/x-macbinary application/x-maker frm maker frame fm fb book fbdoc application/x-mathcad mcd application/x-mathematica-old application/x-mie mie application/x-mif mif application/x-mobipocket-ebook mobi prc application/x-ms-application application application/x-ms-shortcut lnk application/x-ms-wmd wmd application/x-ms-wmz wmz application/x-ms-xbap xbap application/x-msaccess mda mdb mde mdf application/x-msbinder obd application/x-mscardfile crd application/x-msclip clp application/x-msdos-program cmd bat com exe reg ps1 vbs application/x-msdownload exe com cmd bat dll msi reg ps1 vbs application/x-msmediaview m13 m14 mvb application/x-msmetafile emf emz wmf wmz application/x-msmoney mny application/x-mspublisher pub application/x-msschedule scd application/x-msterminal trm application/x-msword doc dot wrd application/x-mswrite wri application/x-netcdf nc cdf application/x-ns-proxy-autoconfig pac 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-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-research-info-systems ris application/x-rtf rtf application/x-ruby rb rbw 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-spss sav sbs sps spo spp application/x-sql sql application/x-STEP application/x-stuffit sit application/x-stuffitx sitx application/x-subrip srt application/x-sv4cpio sv4cpio application/x-sv4crc sv4crc application/x-t3vm-image t3 application/x-tads gam application/x-tar tar application/x-tcl tcl application/x-tex tex application/x-tex-tfm tfm application/x-texinfo texinfo texi application/x-tgif obj application/x-toolbook tbk 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-ustar ustar application/x-VMSBACKUP bck application/x-wais-source src application/x-web-app-manifest+json webapp application/x-Wingz wz wkz 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-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/xaml+xml xaml 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/xenc+xml xenc application/xhtml+xml xht xhtml 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/xop+xml xop application/xproc+xml xpl application/xslt+xml xslt application/xspf+xml xspf 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 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/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/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/G711-0 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/midi kar mid midi rmi audio/mobile-xmf audio/mp4 mp4 mpg4 f4a f4b mp4a audio/MP4A-LATM m4a audio/MPA audio/mpa-robust audio/mpeg mpga mp2 mp3 m2a m3a mp2a 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/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/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.dra dra audio/vnd.dts dts audio/vnd.dts.hd dtshd audio/vnd.dvb.file audio/vnd.everad.plj plj audio/vnd.hns.audio audio/vnd.lucent.voice lvp audio/vnd.ms-playready.media.pya pya audio/vnd.nokia.mobile-xmf mxmf 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.qcelp qcp 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/webm weba webm audio/x-aac aac audio/x-aiff aif aifc aiff audio/x-caf caf audio/x-flac flac audio/x-matroska mka audio/x-midi mid midi kar audio/x-mpegurl m3u audio/x-ms-wax wax audio/x-ms-wma wma audio/x-ms-wmv wmv audio/x-pn-realaudio ra ram audio/x-pn-realaudio-plugin rmp rpm audio/x-realaudio ra audio/x-wav wav audio/xm xm chemical/x-cdx cdx chemical/x-cif cif chemical/x-cmdf cmdf chemical/x-cml cml chemical/x-csml csml chemical/x-pdb pdb chemical/x-xyz xyz drawing/dwf dwf image/bmp bmp image/cgm cgm image/cmu-raster image/example image/fits image/g3fax g3 image/gif gif image/ief ief image/jp2 jp2 jpg2 image/jpeg jpeg jpg jpe image/jpm jpm jpgm image/jpx jpx jpf image/ktx ktx image/naplps image/pjpeg image/png png image/prs.btif btif image/prs.pti image/pwg-raster image/sgi sgi image/svg+xml svg svgz image/t38 image/targa tga image/tiff tiff tif image/tiff-fx image/vnd.adobe.photoshop psd 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 image/vnd.dvb.subtitle sub image/vnd.dwg dwg image/vnd.dxf dxf image/vnd.fastbidsheet fbs image/vnd.fpx fpx image/vnd.fst fst 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.mozilla.apng 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.wap.wbmp wbmp image/vnd.xiff xif image/vnd.zbrush.pcx image/webp webp image/x-3ds 3ds image/x-bmp bmp image/x-cmu-raster ras image/x-cmx cmx image/x-compressed-xcf xcfbz2 xcfgz image/x-freehand fh fh4 fh5 fh7 fhc image/x-hasselblad-3fr 3fr image/x-icon ico image/x-mrsid-image sid image/x-ms-bmp bmp image/x-paintshoppro psp pspimage image/x-pcx pcx image/x-pict pct pic image/x-portable-anymap pnm image/x-portable-bitmap pbm image/x-portable-graymap pgm image/x-portable-pixmap ppm image/x-rgb rgb image/x-targa tga image/x-tga tga image/x-vnd.dgn dgn 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/rfc822 eml mime 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.gdl gdl model/vnd.gs-gdl model/vnd.gtw gtw model/vnd.moml+xml model/vnd.mts mts 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.vtu vtu model/vrml wrl vrml model/x3d+binary x3db x3dbz 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 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/html html htm htmlx shtml htx text/javascript js text/jcr-cnd text/markdown text/mizar text/n3 n3 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/prs.fallenstein.rst rst text/prs.lines.tag dsc text/raptorfec text/RED text/rfc822-headers text/richtext rtx text/rtf rtf text/rtp-enc-aescm128 text/rtploopback text/rtx text/sgml sgml sgm text/t140 text/tab-separated-values tsv text/troff t tr roff troff man me ms text/turtle ttl text/ulpfec text/uri-list uri uris urls text/vcard vcard 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.dvb.subtitle sub 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.net2phone.commcenter.command ccc text/vnd.radisys.msml-basic-layout text/vnd.si.uricatalogue text/vnd.sun.j2me.app-descriptor jad text/vnd.trolltech.linguist text/vnd.wap.si si text/vnd.wap.sl sl text/vnd.wap.wml wml text/vnd.wap.wmlscript wmls text/x-asm asm s text/x-c c cc cpp cxx dic h hh text/x-coffescript coffee text/x-component htc text/x-fortran f f77 f90 for text/x-java-source java text/x-nfo nfo text/x-opml opml text/x-pascal p pas text/x-rtf rtf text/x-setext etx text/x-sfv sfv text/x-uuencode uu text/x-vcalendar vcs text/x-vcard vcf text/x-vnd.flatland.3dml text/x-yaml yaml yml text/xml xml dtd text/xml-external-parsed-entity video/1d-interleaved-parityfec video/3gpp 3gp 3gpp video/3gpp-tt video/3gpp2 3g2 3gpp2 video/BMPEG video/BT656 video/CelB video/dl dl video/DV dv video/encaprtp video/example video/gl gl video/H261 h261 video/H263 h263 video/H263-1998 video/H263-2000 video/H264 h264 video/H264-RCDO video/H264-SVC video/iso.segment video/JPEG jpgv video/jpeg2000 video/jpm jpgm jpm video/MJ2 mj2 mjp2 video/MP1S video/MP2P video/MP2T ts video/mp4 mp4 mpg4 f4v f4p mp4v video/MP4V-ES video/mpeg mp2 mp3g mpe mpeg mpg m1v m2v video/mpeg4-generic video/MPV video/nv video/ogg ogg ogv 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/vnd.dece.hd uvh uvvh video/vnd.dece.mobile uvm uvvm 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.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.mpegurl mxu m4u video/vnd.ms-playready.media.pyv pyv video/vnd.nokia.interleaved-multimedia nim video/vnd.nokia.videovoip video/vnd.objectvideo mp4 m4v 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 video/vnd.sealedmedia.softseal.mov smov smo s1q video/vnd.uvvu.mp4 uvu uvvu video/vnd.vivo viv vivo video/VP8 video/webm webm video/x-dl dl video/x-dv dv video/x-f4v f4v video/x-fli fli video/x-flv flv video/x-gl gl video/x-ivf ivf video/x-m4v m4v video/x-matroska mk3d mks mkv video/x-mng mng video/x-motion-jpeg mjpg mjpeg video/x-ms-asf asf asx video/x-ms-vob vob video/x-ms-wm wm video/x-ms-wmv wmv video/x-ms-wmx wmx video/x-ms-wvx wvx video/x-msvideo avi video/x-sgi-movie movie video/x-smv smv x-chemical/x-pdb pdb x-chemical/x-xyz xyz x-conference/x-cooltalk ice x-drawing/dwf dwf x-world/x-vrml wrl vrml mime-types-data-3.2015.1120/data/mime-types.json0000644000175000017500000124342312627041214022361 0ustar balasankarcbalasankarc[{"content-type":"application/1d-interleaved-parityfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/3gpdash-qoe-report+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/3gpp-ims+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/A2L","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/acad","encoding":"base64","registered":false},{"content-type":"application/access","encoding":"base64","extensions":["mdf","mda","mdb","mde"],"obsolete":true,"use-instead":"application/x-msaccess","registered":false},{"content-type":"application/activemessage","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/alto-costmap+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-costmapfilter+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-directory+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-endpointcost+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-endpointcostparams+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-endpointprop+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-endpointpropparams+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-error+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-networkmap+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/alto-networkmapfilter+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/AML","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/andrew-inset","friendly":{"en":"Andrew Toolkit"},"encoding":"base64","extensions":["ez"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/appledouble","encoding":"base64","registered":false},{"content-type":"application/applefile","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/applixware","friendly":{"en":"Applixware"},"encoding":"base64","extensions":["aw"],"registered":false},{"content-type":"application/ATF","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/ATFX","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/atom+xml","friendly":{"en":"Atom Syndication Format"},"encoding":"8bit","extensions":["atom"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/atomcat+xml","friendly":{"en":"Atom Publishing Protocol"},"encoding":"8bit","extensions":["atomcat"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/atomdeleted+xml","encoding":"8bit","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/atomicmail","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/atomsvc+xml","friendly":{"en":"Atom Publishing Protocol Service Document"},"encoding":"8bit","extensions":["atomsvc"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ATXML","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/auth-policy+xml","encoding":"8bit","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/bacnet-xdd+zip","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/batch-SMTP","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/beep+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/bleeper","encoding":"base64","extensions":["bleep"],"obsolete":true,"use-instead":"application/x-bleeper","registered":false},{"content-type":"application/calendar+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/calendar+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/call-completion","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cals-1840","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cals1840","encoding":"base64","obsolete":true,"use-instead":"application/cals-1840","registered":false},{"content-type":"application/cbor","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ccmp+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ccxml+xml","friendly":{"en":"Voice Browser Call Control"},"encoding":"base64","extensions":["ccxml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/CDFX+XML","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/cdmi-capability","friendly":{"en":"Cloud Data Management Interface (CDMI) - Capability"},"encoding":"base64","extensions":["cdmia"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cdmi-container","friendly":{"en":"Cloud Data Management Interface (CDMI) - Contaimer"},"encoding":"base64","extensions":["cdmic"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cdmi-domain","friendly":{"en":"Cloud Data Management Interface (CDMI) - Domain"},"encoding":"base64","extensions":["cdmid"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cdmi-object","friendly":{"en":"Cloud Data Management Interface (CDMI) - Object"},"encoding":"base64","extensions":["cdmio"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cdmi-queue","friendly":{"en":"Cloud Data Management Interface (CDMI) - Queue"},"encoding":"base64","extensions":["cdmiq"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cdni","encoding":"base64","xrefs":{"draft":"#","template":"#"},"registered":true},{"content-type":"application/CEA","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/cea-2018+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/cellml+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cfw","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/clariscad","encoding":"base64","registered":false},{"content-type":"application/cms","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cnrp+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/coap-group+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/commonground","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/conference-info+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/cpl+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/csrattrs","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/csta+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/CSTAdata+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/csvm+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/cu-seeme","friendly":{"en":"CU-SeeMe"},"encoding":"base64","extensions":["cu"],"registered":false},{"content-type":"application/cybercash","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/dash+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/dashdelta","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/davmount+xml","friendly":{"en":"Web Distributed Authoring and Versioning"},"encoding":"base64","extensions":["davmount"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/dca-rft","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/DCD","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/dec-dx","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/dialog-info+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/dicom","encoding":"base64","extensions":["dcm"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/DII","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/DIT","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/dns","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/docbook+xml","encoding":"base64","extensions":["dbk"],"registered":false},{"content-type":"application/drafting","encoding":"base64","registered":false},{"content-type":"application/dskpp+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/dssc+der","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["dssc"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/dssc+xml","friendly":{"en":"Data Structure for the Security Suitability of Cryptographic Algorithms"},"encoding":"base64","extensions":["xdssc"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/dvcs","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/dxf","encoding":"base64","registered":false},{"content-type":"application/ecmascript","friendly":{"en":"ECMAScript"},"encoding":"base64","extensions":["ecma"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/EDI-consent","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/EDI-X12","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/EDIFACT","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/emma+xml","friendly":{"en":"Extensible MultiModal Annotation"},"encoding":"base64","extensions":["emma"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/emotionml+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/encaprtp","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/epp+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/epub+zip","friendly":{"en":"Electronic Publication"},"encoding":"base64","extensions":["epub"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/eshop","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/example","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/excel","encoding":"base64","extensions":["xls","xlt"],"obsolete":true,"use-instead":"application/vnd.ms-excel","registered":false},{"content-type":"application/exi","friendly":{"en":"Efficient XML Interchange"},"encoding":"base64","extensions":["exi"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/fastinfoset","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/fastsoap","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/fdt+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/fits","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/font-sfnt","encoding":"base64","extensions":["otf","ttf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/font-tdpfr","friendly":{"en":"Portable Font Resource"},"encoding":"base64","extensions":["pfr"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/font-woff","friendly":{"en":"Web Open Font Format"},"encoding":"base64","extensions":["woff","woff2"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/fractals","encoding":"base64","registered":false},{"content-type":"application/framework-attributes+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/futuresplash","encoding":"base64","extensions":["spl"],"obsolete":true,"use-instead":"application/x-futuresplash","registered":false},{"content-type":"application/ghostview","encoding":"base64","obsolete":true,"use-instead":"application/x-ghostview","registered":false},{"content-type":"application/gml+xml","encoding":"base64","extensions":["gml"],"registered":false},{"content-type":"application/gpx+xml","encoding":"base64","extensions":["gpx"],"registered":false},{"content-type":"application/gxf","encoding":"base64","extensions":["gxf"],"registered":false},{"content-type":"application/gzip","encoding":"base64","extensions":["gz"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/H224","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/held+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/hep","encoding":"base64","extensions":["hep"],"obsolete":true,"use-instead":"application/x-hep","registered":false},{"content-type":"application/http","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/hyperstudio","friendly":{"en":"Hyperstudio"},"encoding":"base64","extensions":["stk"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/i-deas","encoding":"base64","registered":false},{"content-type":"application/ibe-key-request+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ibe-pkg-reply+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ibe-pp-data","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/iges","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/im-iscomposing+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/imagemap","encoding":"8bit","extensions":["imagemap","imap"],"obsolete":true,"use-instead":"application/x-imagemap","registered":false},{"content-type":"application/index","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/index.cmd","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/index.obj","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/index.response","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/index.vnd","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/inkml+xml","encoding":"base64","extensions":["ink","inkml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/iotp","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ipfix","friendly":{"en":"Internet Protocol Flow Information Export"},"encoding":"base64","extensions":["ipfix"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ipp","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/isup","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/its+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/java-archive","friendly":{"en":"Java Archive"},"encoding":"base64","extensions":["jar"],"registered":false},{"content-type":"application/java-serialized-object","friendly":{"en":"Java Serialized Object"},"encoding":"base64","extensions":["ser"],"registered":false},{"content-type":"application/java-vm","friendly":{"en":"Java Bytecode File"},"encoding":"base64","extensions":["class"],"registered":false},{"content-type":"application/javascript","friendly":{"en":"JavaScript"},"encoding":"8bit","extensions":["js","sj"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/jose","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/jose+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/jrd+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/json","friendly":{"en":"JavaScript Object Notation (JSON)"},"encoding":"8bit","extensions":["json"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/json-patch+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/json-seq","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/jsonml+json","encoding":"base64","extensions":["jsonml"],"registered":false},{"content-type":"application/jwk+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/jwk-set+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/jwt","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/kpml-request+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/kpml-response+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ld+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/link-format","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/load-control+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/lost+xml","encoding":"base64","extensions":["lostxml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/lostsync+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/lotus-123","encoding":"base64","extensions":["wks"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/LXF","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mac-binhex40","friendly":{"en":"Macintosh BinHex 4.0"},"encoding":"8bit","extensions":["hqx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mac-compactpro","friendly":{"en":"Compact Pro"},"encoding":"base64","extensions":["cpt"],"obsolete":true,"use-instead":"application/x-mac-compactpro","registered":false},{"content-type":"application/macbinary","encoding":"base64","registered":false},{"content-type":"application/macwriteii","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mads+xml","friendly":{"en":"Metadata Authority Description Schema"},"encoding":"base64","extensions":["mads"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/marc","friendly":{"en":"MARC Formats"},"encoding":"base64","extensions":["mrc"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/marcxml+xml","friendly":{"en":"MARC21 XML Schema"},"encoding":"base64","extensions":["mrcx"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mathcad","encoding":"base64","extensions":["mcd"],"obsolete":true,"use-instead":"application/vnd.mcd","registered":false},{"content-type":"application/mathematica","friendly":{"en":"Mathematica Notebooks"},"encoding":"base64","extensions":["ma","mb","nb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mathematica-old","encoding":"base64","obsolete":true,"use-instead":"application/x-mathematica-old","registered":false},{"content-type":"application/mathml+xml","friendly":{"en":"Mathematical Markup Language"},"encoding":"base64","extensions":["mathml"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/mathml-content+xml","encoding":"base64","xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/mathml-presentation+xml","encoding":"base64","xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/mbms-associated-procedure-description+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-deregister+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-envelope+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-msk+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-msk-response+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-protection-description+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-reception-report+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-register+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-register-response+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-schedule+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbms-user-service-description+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mbox","friendly":{"en":"Mbox database files"},"encoding":"base64","extensions":["mbox"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/media-policy-dataset+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/media_control+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mediaservercontrol+xml","friendly":{"en":"Media Server Control Markup Language"},"encoding":"base64","extensions":["mscml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/merge-patch+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/metalink+xml","encoding":"base64","extensions":["metalink"],"registered":false},{"content-type":"application/metalink4+xml","friendly":{"en":"Metalink"},"encoding":"base64","extensions":["meta4"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mets+xml","friendly":{"en":"Metadata Encoding and Transmission Standard"},"encoding":"base64","extensions":["mets"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/MF4","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mikey","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mods+xml","friendly":{"en":"Metadata Object Description Schema"},"encoding":"base64","extensions":["mods"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/moss-keys","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/moss-signature","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mosskey-data","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mosskey-request","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mp21","friendly":{"en":"MPEG-21"},"encoding":"base64","extensions":["m21","mp21"],"xrefs":{"rfc":"#","person":"#","template":"#"},"registered":true},{"content-type":"application/mp4","friendly":{"en":"MPEG4"},"encoding":"base64","extensions":["mp4","mpg4","mp4s"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mpeg4-generic","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mpeg4-iod","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mpeg4-iod-xmt","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mrb-consumer+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/mrb-publish+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/msc-ivr+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/msc-mixer+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/msword","friendly":{"en":"Microsoft Word"},"encoding":"base64","extensions":["doc","dot","wrd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/mxf","friendly":{"en":"Material Exchange Format"},"encoding":"base64","extensions":["mxf"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/nasdata","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/netcdf","encoding":"base64","extensions":["nc","cdf"],"registered":false},{"content-type":"application/news-checkgroups","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/news-groupinfo","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/news-message-id","encoding":"base64","obsolete":true,"registered":false},{"content-type":"application/news-transmission","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/nlsml+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/nss","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/ocsp-request","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ocsp-response","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/octet-stream","friendly":{"en":"Binary Data"},"encoding":"base64","extensions":["bin","dms","lha","lzh","exe","class","ani","pgp","so","dll","dylib","bpk","deploy","dist","distz","dump","elc","lrf","mar","pkg"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/oda","friendly":{"en":"Office Document Architecture"},"encoding":"base64","extensions":["oda"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ODX","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/oebps-package+xml","friendly":{"en":"Open eBook Publication Structure"},"encoding":"base64","extensions":["opf"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ogg","friendly":{"en":"Ogg"},"encoding":"base64","extensions":["ogx"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/omdoc+xml","encoding":"base64","extensions":["omdoc"],"registered":false},{"content-type":"application/onenote","friendly":{"en":"Microsoft OneNote"},"encoding":"base64","extensions":["onepkg","onetmp","onetoc","onetoc2"],"registered":false},{"content-type":"application/oxps","encoding":"base64","extensions":["oxps"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/p2p-overlay+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/parityfec","encoding":"base64","xrefs":{"rfc":"#"},"registered":true},{"content-type":"application/patch-ops-error+xml","friendly":{"en":"XML Patch Framework"},"encoding":"base64","extensions":["xer"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pdf","friendly":{"en":"Adobe Portable Document Format"},"encoding":"base64","extensions":["pdf"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/PDX","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/pgp-encrypted","friendly":{"en":"Pretty Good Privacy"},"encoding":"7bit","extensions":["pgp"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pgp-keys","encoding":"7bit","xrefs":{"rfc":"#"},"registered":true,"signature":true},{"content-type":"application/pgp-signature","friendly":{"en":"Pretty Good Privacy - Signature"},"encoding":"base64","extensions":["asc","sig"],"xrefs":{"rfc":"#","template":"#"},"registered":true,"signature":true},{"content-type":"application/pics-rules","friendly":{"en":"PICSRules"},"encoding":"base64","extensions":["prf"],"registered":false},{"content-type":"application/pidf+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pidf-diff+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pkcs10","friendly":{"en":"PKCS #10 - Certification Request Standard"},"encoding":"base64","extensions":["p10"],"xrefs":{"rfc":"#","template":"#"},"registered":true,"signature":true},{"content-type":"application/pkcs12","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/pkcs7-mime","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7m","p7c"],"xrefs":{"rfc":"#","template":"#"},"registered":true,"signature":true},{"content-type":"application/pkcs7-signature","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard"},"encoding":"base64","extensions":["p7s"],"xrefs":{"rfc":"#","template":"#"},"registered":true,"signature":true},{"content-type":"application/pkcs8","friendly":{"en":"PKCS #8 - Private-Key Information Syntax Standard"},"encoding":"base64","extensions":["p8"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pkix-attr-cert","friendly":{"en":"Attribute Certificate"},"encoding":"base64","extensions":["ac"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pkix-cert","friendly":{"en":"Internet Public Key Infrastructure - Certificate"},"encoding":"base64","extensions":["cer"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pkix-crl","friendly":{"en":"Internet Public Key Infrastructure - Certificate Revocation Lists"},"encoding":"base64","extensions":["crl"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pkix-pkipath","friendly":{"en":"Internet Public Key Infrastructure - Certification Path"},"encoding":"base64","extensions":["pkipath"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pkixcmp","friendly":{"en":"Internet Public Key Infrastructure - Certificate Management Protocole"},"encoding":"base64","extensions":["pki"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/pls+xml","friendly":{"en":"Pronunciation Lexicon Specification"},"encoding":"base64","extensions":["pls"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/poc-settings+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/postscript","friendly":{"en":"PostScript"},"encoding":"8bit","extensions":["ai","eps","ps"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/powerpoint","encoding":"base64","extensions":["ppt","pps","pot"],"registered":false},{"content-type":"application/pro_eng","encoding":"base64","registered":false},{"content-type":"application/provenance+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/prs.alvestrand.titrax-sheet","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/prs.cww","friendly":{"en":"CU-Writer"},"encoding":"base64","extensions":["cw","cww"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/prs.hpub+zip","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/prs.nprend","encoding":"base64","extensions":["rnd","rct"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/prs.plucker","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/prs.rdf-xml-crypt","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/prs.xsf+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/pskc+xml","friendly":{"en":"Portable Symmetric Key Container"},"encoding":"base64","extensions":["pskcxml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/qsig","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/quicktimeplayer","encoding":"base64","extensions":["qtl"],"obsolete":true,"use-instead":"application/x-quicktimeplayer","registered":false},{"content-type":"application/raptorfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rdap+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rdf+xml","friendly":{"en":"Resource Description Framework"},"encoding":"8bit","extensions":["rdf"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/reginfo+xml","friendly":{"en":"IMS Networks"},"encoding":"base64","extensions":["rif"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/relax-ng-compact-syntax","friendly":{"en":"Relax NG Compact Syntax"},"encoding":"base64","extensions":["rnc"],"xrefs":{"uri":"#","template":"#"},"registered":true},{"content-type":"application/remote-printing","encoding":"base64","xrefs":{"rfc":"#","person":"#","template":"#"},"registered":true},{"content-type":"application/remote_printing","encoding":"base64","obsolete":true,"use-instead":"application/remote-printing","registered":false},{"content-type":"application/reputon+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/resource-lists+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rl"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/resource-lists-diff+xml","friendly":{"en":"XML Resource Lists Diff"},"encoding":"base64","extensions":["rld"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rfc+xml","encoding":"base64","xrefs":{"draft":"#","template":"#"},"registered":true},{"content-type":"application/riscos","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/rlmi+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rls-services+xml","friendly":{"en":"XML Resource Lists"},"encoding":"base64","extensions":["rs"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rpki-ghostbusters","encoding":"base64","extensions":["gbr"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rpki-manifest","encoding":"base64","extensions":["mft"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rpki-roa","encoding":"base64","extensions":["roa"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rpki-updown","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rsd+xml","friendly":{"en":"Really Simple Discovery"},"encoding":"base64","extensions":["rsd"],"registered":false},{"content-type":"application/rss+xml","friendly":{"en":"RSS - Really Simple Syndication"},"encoding":"base64","extensions":["rss"],"registered":false},{"content-type":"application/rtf","friendly":{"en":"Rich Text Format"},"encoding":"base64","extensions":["rtf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/rtploopback","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/rtx","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/samlassertion+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/samlmetadata+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/sbml+xml","friendly":{"en":"Systems Biology Markup Language"},"encoding":"base64","extensions":["sbml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/scaip+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/scim+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/scvp-cv-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Request"},"encoding":"base64","extensions":["scq"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/scvp-cv-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Response"},"encoding":"base64","extensions":["scs"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/scvp-vp-request","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Request"},"encoding":"base64","extensions":["spq"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/scvp-vp-response","friendly":{"en":"Server-Based Certificate Validation Protocol - Validation Policies - Response"},"encoding":"base64","extensions":["spp"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/sdp","friendly":{"en":"Session Description Protocol"},"encoding":"base64","extensions":["sdp"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/sep+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/sep-exi","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/session-info","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/set","encoding":"base64","registered":false},{"content-type":"application/set-payment","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/set-payment-initiation","friendly":{"en":"Secure Electronic Transaction - Payment"},"encoding":"base64","extensions":["setpay"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/set-registration","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/set-registration-initiation","friendly":{"en":"Secure Electronic Transaction - Registration"},"encoding":"base64","extensions":["setreg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/sgml","encoding":"base64","extensions":["sgml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/sgml-open-catalog","encoding":"base64","extensions":["soc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/shf+xml","friendly":{"en":"S Hexdump Format"},"encoding":"base64","extensions":["shf"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/sieve","encoding":"base64","extensions":["siv"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/simple-filter+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/simple-message-summary","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/simpleSymbolContainer","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/SLA","encoding":"base64","registered":false},{"content-type":"application/slate","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/smil","encoding":"8bit","extensions":["smi","smil"],"obsolete":true,"use-instead":"application/smil+xml","xrefs":{"rfc":"#","template":"#","notes":"#"},"registered":true},{"content-type":"application/smil+xml","friendly":{"en":"Synchronized Multimedia Integration Language"},"encoding":"8bit","extensions":["smi","smil"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/smpte336m","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/soap+fastinfoset","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/soap+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/solids","encoding":"base64","registered":false},{"content-type":"application/sparql-query","friendly":{"en":"SPARQL - Query"},"encoding":"base64","extensions":["rq"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/sparql-results+xml","friendly":{"en":"SPARQL - Results"},"encoding":"base64","extensions":["srx"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/spirits-event+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/sql","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/srgs","friendly":{"en":"Speech Recognition Grammar Specification"},"encoding":"base64","extensions":["gram"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/srgs+xml","friendly":{"en":"Speech Recognition Grammar Specification - XML"},"encoding":"base64","extensions":["grxml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/sru+xml","friendly":{"en":"Search/Retrieve via URL Response Format"},"encoding":"base64","extensions":["sru"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/ssdl+xml","encoding":"base64","extensions":["ssdl"],"registered":false},{"content-type":"application/ssml+xml","friendly":{"en":"Speech Synthesis Markup Language"},"encoding":"base64","extensions":["ssml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/STEP","encoding":"base64","registered":false},{"content-type":"application/tamp-apex-update","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-apex-update-confirm","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-community-update","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-community-update-confirm","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-error","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-sequence-adjust","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-sequence-adjust-confirm","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-status-query","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-status-response","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-update","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tamp-update-confirm","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/tei+xml","friendly":{"en":"Text Encoding and Interchange"},"encoding":"base64","extensions":["tei","teicorpus"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/thraud+xml","friendly":{"en":"Sharing Transaction Fraud Data"},"encoding":"base64","extensions":["tfi"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/timestamp-query","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/timestamp-reply","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/timestamped-data","friendly":{"en":"Time Stamped Data Envelope"},"encoding":"base64","extensions":["tsd"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/toolbook","encoding":"base64","extensions":["tbk"],"obsolete":true,"use-instead":"application/x-toolbook","registered":false},{"content-type":"application/ttml+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/tve-trigger","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/ulpfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/urc-grpsheet+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/urc-ressheet+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/urc-targetdesc+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/urc-uisocketdesc+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vcard+json","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vcard+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vda","encoding":"base64","registered":false},{"content-type":"application/vemmi","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/VMSBACKUP","encoding":"base64","extensions":["bck"],"obsolete":true,"use-instead":"application/x-VMSBACKUP","registered":false},{"content-type":"application/vnd.3gpp-prose+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp-prose-pc3ch+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.access-transfer-events+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.bsf+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.mid-call+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-large","friendly":{"en":"3rd Generation Partnership Project - Pic Large"},"encoding":"base64","extensions":["plb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-small","friendly":{"en":"3rd Generation Partnership Project - Pic Small"},"encoding":"base64","extensions":["psb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.pic-bw-var","friendly":{"en":"3rd Generation Partnership Project - Pic Var"},"encoding":"base64","extensions":["pvb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.sms","encoding":"base64","extensions":["sms"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.srvcc-ext+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.SRVCC-info+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.state-and-event-info+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp.ussd+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp2.bcmcsinfo+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp2.sms","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3gpp2.tcap","friendly":{"en":"3rd Generation Partnership Project - Transaction Capabilities Application Part"},"encoding":"base64","extensions":["tcap"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.3M.Post-it-Notes","friendly":{"en":"3M Post It Notes"},"encoding":"base64","extensions":["pwn"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.accpac.simply.aso","friendly":{"en":"Simply Accounting"},"encoding":"base64","extensions":["aso"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.accpac.simply.imp","friendly":{"en":"Simply Accounting - Data Import"},"encoding":"base64","extensions":["imp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.acucobol","friendly":{"en":"ACU Cobol"},"encoding":"base64","extensions":["acu"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.acucorp","friendly":{"en":"ACU Cobol"},"encoding":"7bit","extensions":["atc","acutc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.adobe.air-application-installer-package+zip","friendly":{"en":"Adobe AIR Application"},"encoding":"base64","extensions":["air"],"registered":false},{"content-type":"application/vnd.adobe.flash.movie","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.adobe.formscentral.fcdt","encoding":"base64","extensions":["fcdt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.adobe.fxp","friendly":{"en":"Adobe Flex Project"},"encoding":"base64","extensions":["fxp","fxpl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.adobe.partial-upload","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.adobe.xdp+xml","friendly":{"en":"Adobe XML Data Package"},"encoding":"base64","extensions":["xdp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.adobe.xfdf","friendly":{"en":"Adobe XML Forms Data Format"},"encoding":"base64","extensions":["xfdf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.aether.imp","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ah-barcode","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ahead.space","friendly":{"en":"Ahead AIR Application"},"encoding":"base64","extensions":["ahead"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azf","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.airzip.filesecure.azs","friendly":{"en":"AirZip FileSECURE"},"encoding":"base64","extensions":["azs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.amazon.ebook","friendly":{"en":"Amazon Kindle eBook format"},"encoding":"base64","extensions":["azw"],"registered":false},{"content-type":"application/vnd.americandynamics.acc","friendly":{"en":"Active Content Compression"},"encoding":"base64","extensions":["acc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.amiga.ami","friendly":{"en":"AmigaDE"},"encoding":"base64","extensions":["ami"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.amundsen.maze+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.android.package-archive","friendly":{"en":"Android Package Archive"},"encoding":"base64","extensions":["apk"],"registered":false},{"content-type":"application/vnd.anki","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.anser-web-certificate-issue-initiation","friendly":{"en":"ANSER-WEB Terminal Client - Certificate Issue"},"encoding":"base64","extensions":["cii"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.anser-web-funds-transfer-initiation","friendly":{"en":"ANSER-WEB Terminal Client - Web Funds Transfer"},"encoding":"base64","extensions":["fti"],"registered":false},{"content-type":"application/vnd.antix.game-component","friendly":{"en":"Antix Game Player"},"encoding":"base64","extensions":["atx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.apache.thrift.binary","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.apache.thrift.compact","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.apache.thrift.json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.api+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.apple.installer+xml","friendly":{"en":"Apple Installer Package"},"encoding":"base64","extensions":["mpkg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.apple.mpegurl","friendly":{"en":"Multimedia Playlist Unicode"},"encoding":"base64","extensions":["m3u8"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.apple.pkpass","encoding":"base64","extensions":["pkpass"],"registered":false},{"content-type":"application/vnd.arastra.swi","encoding":"base64","obsolete":true,"use-instead":"application/vnd.aristanetworks.swi","xrefs":{"person":"#","template":"#","notes":"#"},"registered":true},{"content-type":"application/vnd.aristanetworks.swi","friendly":{"en":"Arista Networks Software Image"},"encoding":"base64","extensions":["swi"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.artsquare","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.astraea-software.iota","encoding":"base64","extensions":["iota"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.audiograph","friendly":{"en":"Audiograph"},"encoding":"base64","extensions":["aep"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.autopackage","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.avistar+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.balsamiq.bmml+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.balsamiq.bmpr","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.bekitzur-stech+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.biopax.rdf+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.blueice.multipass","friendly":{"en":"Blueice Research Multipass"},"encoding":"base64","extensions":["mpm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.bluetooth.ep.oob","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.bluetooth.le.oob","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.bmi","friendly":{"en":"BMI Drawing Data Interchange"},"encoding":"base64","extensions":["bmi"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.businessobjects","friendly":{"en":"BusinessObjects"},"encoding":"base64","extensions":["rep"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cab-jscript","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.canon-cpdl","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.canon-lips","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cendio.thinlinc.clientconf","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.century-systems.tcp_stream","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.chemdraw+xml","friendly":{"en":"CambridgeSoft Chem Draw"},"encoding":"base64","extensions":["cdxml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.chipnuts.karaoke-mmd","friendly":{"en":"Karaoke on Chipnuts Chipsets"},"encoding":"base64","extensions":["mmd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cinderella","friendly":{"en":"Interactive Geometry Software Cinderella"},"encoding":"base64","extensions":["cdy"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cirpack.isdn-ext","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.citationstyles.style+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.claymore","friendly":{"en":"Claymore Data Files"},"encoding":"base64","extensions":["cla"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cloanto.rp9","friendly":{"en":"RetroPlatform Player"},"encoding":"base64","extensions":["rp9"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.clonk.c4group","friendly":{"en":"Clonk Game"},"encoding":"base64","extensions":["c4d","c4f","c4g","c4p","c4u"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config","friendly":{"en":"ClueTrust CartoMobile - Config"},"encoding":"base64","extensions":["c11amc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cluetrust.cartomobile-config-pkg","friendly":{"en":"ClueTrust CartoMobile - Config Package"},"encoding":"base64","extensions":["c11amz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.coffeescript","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.collection+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.collection.doc+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.collection.next+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.commerce-battelle","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.commonspace","friendly":{"en":"Sixth Floor Media - CommonSpace"},"encoding":"base64","extensions":["csp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.contact.cmsg","friendly":{"en":"CIM Database"},"encoding":"base64","extensions":["cdbcmsg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cosmocaller","friendly":{"en":"CosmoCaller"},"encoding":"base64","extensions":["cmc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.crick.clicker","friendly":{"en":"CrickSoftware - Clicker"},"encoding":"base64","extensions":["clkx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.crick.clicker.keyboard","friendly":{"en":"CrickSoftware - Clicker - Keyboard"},"encoding":"base64","extensions":["clkk"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.crick.clicker.palette","friendly":{"en":"CrickSoftware - Clicker - Palette"},"encoding":"base64","extensions":["clkp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.crick.clicker.template","friendly":{"en":"CrickSoftware - Clicker - Template"},"encoding":"base64","extensions":["clkt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.crick.clicker.wordbank","friendly":{"en":"CrickSoftware - Clicker - Wordbank"},"encoding":"base64","extensions":["clkw"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.criticaltools.wbs+xml","friendly":{"en":"Critical Tools - PERT Chart EXPERT"},"encoding":"base64","extensions":["wbs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ctc-posml","friendly":{"en":"PosML"},"encoding":"base64","extensions":["pml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ctct.ws+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cups-pdf","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cups-postscript","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cups-ppd","friendly":{"en":"Adobe PostScript Printer Description File Format"},"encoding":"base64","extensions":["ppd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cups-raster","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cups-raw","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.curl","encoding":"base64","extensions":["curl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.curl.car","friendly":{"en":"CURL Applet"},"encoding":"base64","extensions":["car"],"registered":false},{"content-type":"application/vnd.curl.pcurl","friendly":{"en":"CURL Applet"},"encoding":"base64","extensions":["pcurl"],"registered":false},{"content-type":"application/vnd.cyan.dean.root+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.cybank","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dart","encoding":"base64","extensions":["dart"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.data-vision.rdz","friendly":{"en":"RemoteDocs R-Viewer"},"encoding":"base64","extensions":["rdz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.debian.binary-package","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dece.data","encoding":"base64","extensions":["uvd","uvf","uvvd","uvvf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dece.ttml+xml","encoding":"base64","extensions":["uvt","uvvt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dece.unspecified","encoding":"base64","extensions":["uvvx","uvx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dece.zip","encoding":"base64","extensions":["uvvz","uvz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.denovo.fcselayout-link","friendly":{"en":"FCS Express Layout Link"},"encoding":"base64","extensions":["fe_launch"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.desmume.movie","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dir-bi.plate-dl-nosuffix","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dm.delegation+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dna","friendly":{"en":"New Moon Liftoff/DNA"},"encoding":"base64","extensions":["dna"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.document+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dolby.mlp","friendly":{"en":"Dolby Meridian Lossless Packing"},"encoding":"base64","extensions":["mlp"],"registered":false},{"content-type":"application/vnd.dolby.mobile.1","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dolby.mobile.2","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.doremir.scorecloud-binary-document","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dpgraph","friendly":{"en":"DPGraph"},"encoding":"base64","extensions":["dpg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dreamfactory","friendly":{"en":"DreamFactory"},"encoding":"base64","extensions":["dfac"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.drive+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ds-keypoint","encoding":"base64","extensions":["kpxx"],"registered":false},{"content-type":"application/vnd.dtg.local","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dtg.local.flash","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dtg.local.html","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.ait","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["ait"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.dvbj","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.esgcontainer","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.ipdcdftnotifaccess","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgaccess2","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.ipdcesgpdd","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.ipdcroaming","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-base","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.iptv.alfec-enhancement","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.notif-aggregate-root+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.notif-container+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.notif-generic+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-msglist+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-request+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.notif-ia-registration-response+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.notif-init+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.pfr","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dvb.service","friendly":{"en":"Digital Video Broadcasting"},"encoding":"base64","extensions":["svc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dxr","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dynageo","friendly":{"en":"DynaGeo"},"encoding":"base64","extensions":["geo"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.dzr","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.easykaraoke.cdgdownload","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ecdis-update","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ecowin.chart","friendly":{"en":"EcoWin Chart"},"encoding":"base64","extensions":["mag"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ecowin.filerequest","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ecowin.fileupdate","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ecowin.series","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ecowin.seriesrequest","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ecowin.seriesupdate","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.emclient.accessrequest+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.enliven","friendly":{"en":"Enliven Viewer"},"encoding":"base64","extensions":["nml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.enphase.envoy","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.eprints.data+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.epson.esf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["esf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.epson.msf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["msf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.epson.quickanime","friendly":{"en":"QuickAnime Player"},"encoding":"base64","extensions":["qam"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.epson.salt","friendly":{"en":"SimpleAnimeLite Player"},"encoding":"base64","extensions":["slt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.epson.ssf","friendly":{"en":"QUASS Stream Player"},"encoding":"base64","extensions":["ssf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ericsson.quickcall","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.eszigno3+xml","friendly":{"en":"MICROSEC e-Szign¢"},"encoding":"base64","extensions":["es3","et3"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.aoc+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.asic-e+zip","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.asic-s+zip","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.cug+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvcommand+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvdiscovery+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvprofile+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-bc+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-cod+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvsad-npvr+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvservice+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvsync+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.iptvueprofile+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.mcid+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.mheg5","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.overload-control-policy-dataset+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.pstn+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.sci+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.simservs+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.timestamp-token","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.tsl+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.etsi.tsl.der","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.eudora.data","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ezpix-album","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez2"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ezpix-package","friendly":{"en":"EZPix Secure Photo Album"},"encoding":"base64","extensions":["ez3"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.f-secure.mobile","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fastcopy-disk-image","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fdf","friendly":{"en":"Forms Data Format"},"encoding":"base64","extensions":["fdf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fdsn.mseed","encoding":"base64","extensions":["mseed"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fdsn.seed","friendly":{"en":"Digital Siesmograph Networks - SEED Datafiles"},"encoding":"base64","extensions":["dataless","seed"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ffsns","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fints","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.firemonkeys.cloudcell","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.FloGraphIt","friendly":{"en":"NpGraphIt"},"encoding":"base64","extensions":["gph"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fluxtime.clip","friendly":{"en":"FluxTime Clip"},"encoding":"base64","extensions":["ftc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.font-fontforge-sfd","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.framemaker","friendly":{"en":"FrameMaker Normal Format"},"encoding":"base64","extensions":["frm","maker","frame","fm","fb","book","fbdoc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.frogans.fnc","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["fnc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.frogans.ltf","friendly":{"en":"Frogans Player"},"encoding":"base64","extensions":["ltf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fsc.weblaunch","friendly":{"en":"Friendly Software Corporation"},"encoding":"7bit","extensions":["fsc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujitsu.oasys","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oas"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujitsu.oasys2","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa2"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujitsu.oasys3","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["oa3"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujitsu.oasysgp","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["fg5"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujitsu.oasysprs","friendly":{"en":"Fujitsu Oasys"},"encoding":"base64","extensions":["bh2"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujixerox.ART-EX","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujixerox.ART4","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujixerox.ddd","friendly":{"en":"Fujitsu - Xerox 2D CAD Data"},"encoding":"base64","extensions":["ddd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks","friendly":{"en":"Fujitsu - Xerox DocuWorks"},"encoding":"base64","extensions":["xdw"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.binder","friendly":{"en":"Fujitsu - Xerox DocuWorks Binder"},"encoding":"base64","extensions":["xbd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujixerox.docuworks.container","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fujixerox.HBPL","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fut-misnet","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.fuzzysheet","friendly":{"en":"FuzzySheet"},"encoding":"base64","extensions":["fzs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.genomatix.tuxedo","friendly":{"en":"Genomatix Tuxedo Framework"},"encoding":"base64","extensions":["txd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.geo+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.geocube+xml","encoding":"8bit","obsolete":true,"xrefs":{"person":"#","template":"#","notes":"#"},"registered":true},{"content-type":"application/vnd.geogebra.file","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.geogebra.tool","friendly":{"en":"GeoGebra"},"encoding":"base64","extensions":["ggt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.geometry-explorer","friendly":{"en":"GeoMetry Explorer"},"encoding":"base64","extensions":["gex","gre"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.geonext","friendly":{"en":"GEONExT and JSXGraph"},"encoding":"base64","extensions":["gxt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.geoplan","friendly":{"en":"GeoplanW"},"encoding":"base64","extensions":["g2w"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.geospace","friendly":{"en":"GeospacW"},"encoding":"base64","extensions":["g3w"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.gerber","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.globalplatform.card-content-mgt-response","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.gmx","friendly":{"en":"GameMaker ActiveX"},"encoding":"base64","extensions":["gmx"],"obsolete":true,"xrefs":{"person":"#","template":"#","notes":"#"},"registered":true},{"content-type":"application/vnd.google-earth.kml+xml","friendly":{"en":"Google Earth - KML"},"encoding":"8bit","extensions":["kml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.google-earth.kmz","friendly":{"en":"Google Earth - Zipped KML"},"encoding":"8bit","extensions":["kmz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.gov.sk.e-form+zip","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.gov.sk.xmldatacontainer+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.grafeq","friendly":{"en":"GrafEq"},"encoding":"base64","extensions":["gqf","gqs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.gridmp","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.groove-account","friendly":{"en":"Groove - Account"},"encoding":"base64","extensions":["gac"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.groove-help","friendly":{"en":"Groove - Help"},"encoding":"base64","extensions":["ghf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.groove-identity-message","friendly":{"en":"Groove - Identity Message"},"encoding":"base64","extensions":["gim"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.groove-injector","friendly":{"en":"Groove - Injector"},"encoding":"base64","extensions":["grv"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.groove-tool-message","friendly":{"en":"Groove - Tool Message"},"encoding":"base64","extensions":["gtm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.groove-tool-template","friendly":{"en":"Groove - Tool Template"},"encoding":"base64","extensions":["tpl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.groove-vcard","friendly":{"en":"Groove - Vcard"},"encoding":"base64","extensions":["vcg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hal+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hal+xml","friendly":{"en":"Hypertext Application Language"},"encoding":"base64","extensions":["hal"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.HandHeld-Entertainment+xml","friendly":{"en":"ZVUE Media Manager"},"encoding":"base64","extensions":["zmm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hbci","friendly":{"en":"Homebanking Computer Interface (HBCI)"},"encoding":"base64","extensions":["hbci","hbc","kom","upa","pkd","bpd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hcl-bireports","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.heroku+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hhe.lesson-player","friendly":{"en":"Archipelago Lesson Player"},"encoding":"base64","extensions":["les"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hp-HPGL","friendly":{"en":"HP-GL/2 and HP RTL"},"encoding":"base64","extensions":["plt","hpgl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hp-hpid","friendly":{"en":"Hewlett Packard Instant Delivery"},"encoding":"base64","extensions":["hpid"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hp-hps","friendly":{"en":"Hewlett-Packard's WebPrintSmart"},"encoding":"base64","extensions":["hps"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hp-jlyt","friendly":{"en":"HP Indigo Digital Press - Job Layout Languate"},"encoding":"base64","extensions":["jlt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hp-PCL","friendly":{"en":"HP Printer Command Language"},"encoding":"base64","extensions":["pcl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hp-PCLXL","friendly":{"en":"PCL 6 Enhanced (Formely PCL XL)"},"encoding":"base64","extensions":["pclxl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.httphone","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hydrostatix.sof-data","friendly":{"en":"Hydrostatix Master Suite"},"encoding":"base64","extensions":["sfd-hdstx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hyperdrive+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.hzn-3d-crossword","friendly":{"en":"3D Crossword Plugin"},"encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ibm.afplinedata","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ibm.electronic-media","encoding":"base64","extensions":["emm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ibm.MiniPay","friendly":{"en":"MiniPay"},"encoding":"base64","extensions":["mpy"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ibm.modcap","friendly":{"en":"MO:DCA-P"},"encoding":"base64","extensions":["afp","list3820","listafp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ibm.rights-management","friendly":{"en":"IBM DB2 Rights Manager"},"encoding":"base64","extensions":["irm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ibm.secure-container","friendly":{"en":"IBM Electronic Media Management System - Secure Container"},"encoding":"base64","extensions":["sc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.iccprofile","friendly":{"en":"ICC profile"},"encoding":"base64","extensions":["icc","icm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ieee.1905","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.igloader","friendly":{"en":"igLoader"},"encoding":"base64","extensions":["igl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.immervision-ivp","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.immervision-ivu","friendly":{"en":"ImmerVision PURE Players"},"encoding":"base64","extensions":["ivu"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.imsccv1p1","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.imsccv1p2","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.imsccv1p3","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.lis.v2.result+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolconsumerprofile+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolproxy.id+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ims.lti.v2.toolsettings.simple+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.informedcontrol.rms+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.informix-visionary","encoding":"base64","obsolete":true,"use-instead":"application/vnd.visionary","xrefs":{"person":"#","template":"#","notes":"#"},"registered":true},{"content-type":"application/vnd.infotech.project","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.infotech.project+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.innopath.wamp.notification","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.insors.igm","friendly":{"en":"IOCOM Visimeet"},"encoding":"base64","extensions":["igm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.intercon.formnet","friendly":{"en":"Intercon FormNet"},"encoding":"base64","extensions":["xpw","xpx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.intergeo","friendly":{"en":"Interactive Geometry Software"},"encoding":"base64","extensions":["i2g"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.intertrust.digibox","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.intertrust.nncp","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.intu.qbo","friendly":{"en":"Open Financial Exchange"},"encoding":"base64","extensions":["qbo"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.intu.qfx","friendly":{"en":"Quicken"},"encoding":"base64","extensions":["qfx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.iptc.g2.catalogitem+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.iptc.g2.conceptitem+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.iptc.g2.knowledgeitem+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.iptc.g2.newsitem+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.iptc.g2.newsmessage+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.iptc.g2.packageitem+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.iptc.g2.planningitem+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ipunplugged.rcprofile","friendly":{"en":"IP Unplugged Roaming Client"},"encoding":"base64","extensions":["rcprofile"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.irepository.package+xml","friendly":{"en":"iRepository / Lucidoc Editor"},"encoding":"base64","extensions":["irp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.is-xpr","friendly":{"en":"Express by Infoseek"},"encoding":"base64","extensions":["xpr"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.isac.fcs","friendly":{"en":"International Society for Advancement of Cytometry"},"encoding":"base64","extensions":["fcs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.jam","friendly":{"en":"Lightspeed Audio Lab"},"encoding":"base64","extensions":["jam"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.japannet-directory-service","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.japannet-jpnstore-wakeup","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.japannet-payment-wakeup","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.japannet-registration","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.japannet-registration-wakeup","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.japannet-setstore-wakeup","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.japannet-verification","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.japannet-verification-wakeup","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.jcp.javame.midlet-rms","friendly":{"en":"Mobile Information Device Profile"},"encoding":"base64","extensions":["rms"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.jisp","friendly":{"en":"RhymBox"},"encoding":"base64","extensions":["jisp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.joost.joda-archive","friendly":{"en":"Joda Archive"},"encoding":"base64","extensions":["joda"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.jsk.isdn-ngn","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kahootz","friendly":{"en":"Kahootz"},"encoding":"base64","extensions":["ktr","ktz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kde.karbon","friendly":{"en":"KDE KOffice Office Suite - Karbon"},"encoding":"base64","extensions":["karbon"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kde.kchart","friendly":{"en":"KDE KOffice Office Suite - KChart"},"encoding":"base64","extensions":["chrt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kde.kformula","friendly":{"en":"KDE KOffice Office Suite - Kformula"},"encoding":"base64","extensions":["kfo"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kde.kivio","friendly":{"en":"KDE KOffice Office Suite - Kivio"},"encoding":"base64","extensions":["flw"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kde.kontour","friendly":{"en":"KDE KOffice Office Suite - Kontour"},"encoding":"base64","extensions":["kon"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kde.kpresenter","friendly":{"en":"KDE KOffice Office Suite - Kpresenter"},"encoding":"base64","extensions":["kpr","kpt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kde.kspread","friendly":{"en":"KDE KOffice Office Suite - Kspread"},"encoding":"base64","extensions":["ksp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kde.kword","friendly":{"en":"KDE KOffice Office Suite - Kword"},"encoding":"base64","extensions":["kwd","kwt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kenameaapp","friendly":{"en":"Kenamea App"},"encoding":"base64","extensions":["htke"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kidspiration","friendly":{"en":"Kidspiration"},"encoding":"base64","extensions":["kia"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Kinar","friendly":{"en":"Kinar Applications"},"encoding":"base64","extensions":["kne","knp","sdf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.koan","friendly":{"en":"SSEYO Koan Play File"},"encoding":"base64","extensions":["skd","skm","skp","skt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.kodak-descriptor","friendly":{"en":"Kodak Storyshare"},"encoding":"base64","extensions":["sse"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.las.las+xml","friendly":{"en":"Laser App Enterprise"},"encoding":"base64","extensions":["lasxml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.liberty-request+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.desktop","friendly":{"en":"Life Balance - Desktop Edition"},"encoding":"base64","extensions":["lbd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.llamagraphics.life-balance.exchange+xml","friendly":{"en":"Life Balance - Exchange Format"},"encoding":"base64","extensions":["lbe"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.lotus-1-2-3","friendly":{"en":"Lotus 1-2-3"},"encoding":"base64","extensions":["wks","123"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.lotus-approach","friendly":{"en":"Lotus Approach"},"encoding":"base64","extensions":["apr"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.lotus-freelance","friendly":{"en":"Lotus Freelance"},"encoding":"base64","extensions":["pre"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.lotus-notes","friendly":{"en":"Lotus Notes"},"encoding":"base64","extensions":["nsf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.lotus-organizer","friendly":{"en":"Lotus Organizer"},"encoding":"base64","extensions":["org"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.lotus-screencam","friendly":{"en":"Lotus Screencam"},"encoding":"base64","extensions":["scm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.lotus-wordpro","friendly":{"en":"Lotus Wordpro"},"encoding":"base64","extensions":["lwp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.macports.portpkg","friendly":{"en":"MacPorts Port System"},"encoding":"base64","extensions":["portpkg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.marlin.drm.actiontoken+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.marlin.drm.conftoken+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.marlin.drm.license+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.marlin.drm.mdcf","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mason+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.maxmind.maxmind-db","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mcd","friendly":{"en":"Micro CADAM Helix D&D"},"encoding":"base64","extensions":["mcd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.medcalcdata","friendly":{"en":"MedCalc"},"encoding":"base64","extensions":["mc1"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mediastation.cdkey","friendly":{"en":"MediaRemote"},"encoding":"base64","extensions":["cdkey"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.meridian-slingshot","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.MFER","friendly":{"en":"Medical Waveform Encoding Format"},"encoding":"base64","extensions":["mwf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mfmp","friendly":{"en":"Melody Format for Mobile Platform"},"encoding":"base64","extensions":["mfm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.micro+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.micrografx.flo","friendly":{"en":"Micrografx"},"encoding":"base64","extensions":["flo"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.micrografx.igx","friendly":{"en":"Micrografx iGrafx Professional"},"encoding":"base64","extensions":["igx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.microsoft.portable-executable","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.miele+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mif","friendly":{"en":"FrameMaker Interchange Format"},"encoding":"base64","extensions":["mif"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.minisoft-hp3000-save","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mitsubishi.misty-guard.trustweb","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Mobius.DAF","friendly":{"en":"Mobius Management Systems - UniversalArchive"},"encoding":"base64","extensions":["daf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Mobius.DIS","friendly":{"en":"Mobius Management Systems - Distribution Database"},"encoding":"base64","extensions":["dis"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Mobius.MBK","friendly":{"en":"Mobius Management Systems - Basket file"},"encoding":"base64","extensions":["mbk"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Mobius.MQY","friendly":{"en":"Mobius Management Systems - Query File"},"encoding":"base64","extensions":["mqy"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Mobius.MSL","friendly":{"en":"Mobius Management Systems - Script Language"},"encoding":"base64","extensions":["msl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Mobius.PLC","friendly":{"en":"Mobius Management Systems - Policy Definition Language File"},"encoding":"base64","extensions":["plc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Mobius.TXF","friendly":{"en":"Mobius Management Systems - Topic Index File"},"encoding":"base64","extensions":["txf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mophun.application","friendly":{"en":"Mophun VM"},"encoding":"base64","extensions":["mpn"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mophun.certificate","friendly":{"en":"Mophun Certificate"},"encoding":"base64","extensions":["mpc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.adsi","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.fis","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.gotap","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.kmr","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.ttc","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.motorola.flexsuite.wem","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.motorola.iprm","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mozilla.xul+xml","friendly":{"en":"XUL - XML User Interface Language"},"encoding":"base64","extensions":["xul"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-3mfdocument","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-artgalry","friendly":{"en":"Microsoft Artgalry"},"encoding":"base64","extensions":["cil"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-asf","encoding":"base64","extensions":["asf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-cab-compressed","friendly":{"en":"Microsoft Cabinet File"},"encoding":"base64","extensions":["cab"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-excel","friendly":{"en":"Microsoft Excel"},"encoding":"base64","extensions":["xls","xlt","xla","xlc","xlm","xlw"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-excel.addin.macroEnabled.12","friendly":{"en":"Microsoft Excel - Add-In File"},"encoding":"base64","extensions":["xlam"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.binary.macroEnabled.12","friendly":{"en":"Microsoft Excel - Binary Workbook"},"encoding":"base64","extensions":["xlsb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-excel.sheet.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Workbook"},"encoding":"base64","extensions":["xlsm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-excel.template.macroEnabled.12","friendly":{"en":"Microsoft Excel - Macro-Enabled Template File"},"encoding":"base64","extensions":["xltm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-fontobject","friendly":{"en":"Microsoft Embedded OpenType"},"encoding":"base64","extensions":["eot"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-htmlhelp","friendly":{"en":"Microsoft Html Help File"},"encoding":"base64","extensions":["chm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-ims","friendly":{"en":"Microsoft Class Server"},"encoding":"base64","extensions":["ims"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-lrm","friendly":{"en":"Microsoft Learning Resource Module"},"encoding":"base64","extensions":["lrm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-office.activeX+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-officetheme","friendly":{"en":"Microsoft Office System Release Theme"},"encoding":"base64","extensions":["thmx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-outlook","encoding":"base64","extensions":["msg"],"registered":false},{"content-type":"application/vnd.ms-pki.seccat","friendly":{"en":"Microsoft Trust UI Provider - Security Catalog"},"encoding":"base64","extensions":["cat"],"registered":false},{"content-type":"application/vnd.ms-pki.stl","friendly":{"en":"Microsoft Trust UI Provider - Certificate Trust Link"},"encoding":"base64","extensions":["stl"],"registered":false},{"content-type":"application/vnd.ms-playready.initiator+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-powerpoint","friendly":{"en":"Microsoft PowerPoint"},"encoding":"base64","extensions":["ppt","pps","pot"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.addin.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Add-in file"},"encoding":"base64","extensions":["ppam"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.presentation.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Presentation File"},"encoding":"base64","extensions":["pptm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slide.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Open XML Slide"},"encoding":"base64","extensions":["sldm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.slideshow.macroEnabled.12","friendly":{"en":"Microsoft PowerPoint - Macro-Enabled Slide Show File"},"encoding":"base64","extensions":["ppsm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-powerpoint.template.macroEnabled.12","friendly":{"en":"Micosoft PowerPoint - Macro-Enabled Template File"},"encoding":"base64","extensions":["potm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-project","friendly":{"en":"Microsoft Project"},"encoding":"base64","extensions":["mpp","mpt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-tnef","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-windows.devicepairing","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-windows.printerpairing","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-windows.wsd.oob","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-chlg-req","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-wmdrm.lic-resp","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-chlg-req","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-wmdrm.meter-resp","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-word.document.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Document"},"encoding":"base64","extensions":["docm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-word.template.macroEnabled.12","friendly":{"en":"Micosoft Word - Macro-Enabled Template"},"encoding":"base64","extensions":["dotm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-works","friendly":{"en":"Microsoft Works"},"encoding":"base64","extensions":["wcm","wdb","wks","wps"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-wpl","friendly":{"en":"Microsoft Windows Media Player Playlist"},"encoding":"base64","extensions":["wpl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ms-xpsdocument","friendly":{"en":"Microsoft XML Paper Specification"},"encoding":"8bit","extensions":["xps"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.msa-disk-image","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mseq","friendly":{"en":"3GPP MSEQ File"},"encoding":"base64","extensions":["mseq"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.msign","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.multiad.creator","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.multiad.creator.cif","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.music-niff","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.musician","friendly":{"en":"MUsical Score Interpreted Code Invented for the ASCII designation of Notation"},"encoding":"base64","extensions":["mus"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.muvee.style","friendly":{"en":"Muvee Automatic Video Editing"},"encoding":"base64","extensions":["msty"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.mynfc","encoding":"base64","extensions":["taglet"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ncd.control","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ncd.reference","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nervana","encoding":"base64","extensions":["ent","entity","req","request","bkm","kcm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.netfpx","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.neurolanguage.nlu","friendly":{"en":"neuroLanguage"},"encoding":"base64","extensions":["nlu"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nintendo.nitro.rom","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nintendo.snes.rom","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nitf","encoding":"base64","extensions":["nitf","ntf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.noblenet-directory","friendly":{"en":"NobleNet Directory"},"encoding":"base64","extensions":["nnd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.noblenet-sealer","friendly":{"en":"NobleNet Sealer"},"encoding":"base64","extensions":["nns"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.noblenet-web","friendly":{"en":"NobleNet Web"},"encoding":"base64","extensions":["nnw"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.catalogs","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.conml+wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.conml+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.iptv.config+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.iSDS-radio-presets","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.landmark+wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.landmark+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.landmarkcollection+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.n-gage.ac+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.n-gage.data","friendly":{"en":"N-Gage Game Data"},"encoding":"base64","extensions":["ngdat"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.n-gage.symbian.install","friendly":{"en":"N-Gage Game Installer"},"encoding":"base64","extensions":["n-gage"],"obsolete":true,"xrefs":{"person":"#","template":"#","notes":"#"},"registered":true},{"content-type":"application/vnd.nokia.ncd","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.ncd+xml","encoding":"base64","obsolete":true,"use-instead":"application/vnd.nokia.ncd","registered":true},{"content-type":"application/vnd.nokia.pcd+wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.pcd+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.radio-preset","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpst"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.nokia.radio-presets","friendly":{"en":"Nokia Radio Application - Preset"},"encoding":"base64","extensions":["rpss"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.novadigm.EDM","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.novadigm.EDX","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["edx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.novadigm.EXT","friendly":{"en":"Novadigm's RADIA and EDM products"},"encoding":"base64","extensions":["ext"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ntt-local.content-share","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ntt-local.file-transfer","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ntt-local.ogw_remote-access","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_remote","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ntt-local.sip-ta_tcp_stream","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart","friendly":{"en":"OpenDocument Chart"},"encoding":"base64","extensions":["odc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.chart-template","friendly":{"en":"OpenDocument Chart Template"},"encoding":"base64","extensions":["odc","otc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.database","friendly":{"en":"OpenDocument Database"},"encoding":"base64","extensions":["odb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula","friendly":{"en":"OpenDocument Formula"},"encoding":"base64","extensions":["odf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.formula-template","friendly":{"en":"OpenDocument Formula Template"},"encoding":"base64","extensions":["odf","odft"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics","friendly":{"en":"OpenDocument Graphics"},"encoding":"base64","extensions":["odg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.graphics-template","friendly":{"en":"OpenDocument Graphics Template"},"encoding":"base64","extensions":["otg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image","friendly":{"en":"OpenDocument Image"},"encoding":"base64","extensions":["odi"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.image-template","friendly":{"en":"OpenDocument Image Template"},"encoding":"base64","extensions":["odi","oti"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation","friendly":{"en":"OpenDocument Presentation"},"encoding":"base64","extensions":["odp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.presentation-template","friendly":{"en":"OpenDocument Presentation Template"},"encoding":"base64","extensions":["otp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet","friendly":{"en":"OpenDocument Spreadsheet"},"encoding":"base64","extensions":["ods"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.spreadsheet-template","friendly":{"en":"OpenDocument Spreadsheet Template"},"encoding":"base64","extensions":["ots"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text","friendly":{"en":"OpenDocument Text"},"encoding":"base64","extensions":["odt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-master","friendly":{"en":"OpenDocument Text Master"},"encoding":"base64","extensions":["odm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-template","friendly":{"en":"OpenDocument Text Template"},"encoding":"base64","extensions":["ott"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oasis.opendocument.text-web","friendly":{"en":"Open Document Text Web"},"encoding":"base64","extensions":["oth"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.obn","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oftn.l10n+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.contentaccessdownload+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.contentaccessstreaming+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.cspg-hexbinary","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.dae.svg+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.dae.xhtml+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.mippvcontrolmessage+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.pae.gem","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.spdiscovery+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.spdlist+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.ueprofile+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oipf.userprofile+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.olpc-sugar","friendly":{"en":"Sugar Linux Application Bundle"},"encoding":"base64","extensions":["xo"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma-scws-config","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma-scws-http-request","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma-scws-http-response","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.associated-procedure-parameter+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.drm-trigger+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.imd+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.ltkm","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.notification+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.provisioningtrigger","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.sgboot","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdd+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.sgdu","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.simple-symbol-container","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.smartcard-trigger+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.sprov+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.bcast.stkm","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.cab-address-book+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.cab-feature-handler+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.cab-pcc+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.cab-subs-invite+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.cab-user-prefs+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.dcd","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.dcdc","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.dd2+xml","friendly":{"en":"OMA Download Agents"},"encoding":"base64","extensions":["dd2"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.drm.risd+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.group-usage-list+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.pal+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.poc.detailed-progress-report+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.poc.final-report+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.poc.groups+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.poc.invocation-descriptor+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.poc.optimized-progress-report+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.push","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.scidm.messages+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oma.xcap-directory+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.omads-email+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.omads-file+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.omads-folder+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.omaloc-supl-init","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openblox.game+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openblox.game-binary","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openeye.oeb","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openofficeorg.extension","friendly":{"en":"Open Office Extension"},"encoding":"base64","extensions":["oxt"],"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.custom-properties+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.customXmlProperties+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawing+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chart+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.extended-properties+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.comments+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation","friendly":{"en":"Microsoft Office - OOXML - Presentation"},"encoding":"base64","extensions":["pptx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.presProps+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slide)"},"encoding":"base64","extensions":["sldx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slide+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow","friendly":{"en":"Microsoft Office - OOXML - Presentation (Slideshow)"},"encoding":"base64","extensions":["ppsx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.tags+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template","friendly":{"en":"Microsoft Office - OOXML - Presentation Template"},"encoding":"base64","extensions":["potx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.template.main+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet"},"encoding":"base64","extensions":["xlsx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template","friendly":{"en":"Microsoft Office - OOXML - Spreadsheet Teplate"},"encoding":"base64","extensions":["xltx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.theme+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.themeOverride+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.vmlDrawing","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document","friendly":{"en":"Microsoft Office - OOXML - Word Document"},"encoding":"base64","extensions":["docx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template","friendly":{"en":"Microsoft Office - OOXML - Word Document Template"},"encoding":"base64","extensions":["dotx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-package.core-properties+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.openxmlformats-package.relationships+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oracle.resource+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.orange.indata","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.osa.netdeploy","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.osgeo.mapguide.package","friendly":{"en":"MapGuide DBXML"},"encoding":"base64","extensions":["mgp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.osgi.bundle","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.osgi.dp","friendly":{"en":"OSGi Deployment Package"},"encoding":"base64","extensions":["dp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.osgi.subsystem","encoding":"base64","extensions":["esa"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.otps.ct-kip+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.oxli.countgraph","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pagerduty+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.palm","friendly":{"en":"PalmOS Data"},"encoding":"base64","extensions":["prc","pdb","pqa","oprc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.panoply","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.paos.xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pawaafile","friendly":{"en":"PawaaFILE"},"encoding":"base64","extensions":["paw"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pcos","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pg.format","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["str"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pg.osasli","friendly":{"en":"Proprietary P&G Standard Reporting System"},"encoding":"base64","extensions":["ei6"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.piaccess.application-licence","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.picsel","friendly":{"en":"Pcsel eFIF File"},"encoding":"base64","extensions":["efif"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pmi.widget","friendly":{"en":"Qualcomm's Plaza Mobile Internet"},"encoding":"base64","extensions":["wg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.poc.group-advertisement+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pocketlearn","friendly":{"en":"PocketLearn Viewers"},"encoding":"base64","extensions":["plf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.powerbuilder6","friendly":{"en":"PowerBuilder"},"encoding":"base64","extensions":["pbd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.powerbuilder6-s","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.powerbuilder7","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.powerbuilder7-s","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.powerbuilder75","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.powerbuilder75-s","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.preminet","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.previewsystems.box","friendly":{"en":"Preview Systems ZipLock/VBox"},"encoding":"base64","extensions":["box"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.proteus.magazine","friendly":{"en":"EFI Proteus"},"encoding":"base64","extensions":["mgz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.publishare-delta-tree","friendly":{"en":"PubliShare Objects"},"encoding":"base64","extensions":["qps"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pvi.ptid1","friendly":{"en":"Princeton Video Image"},"encoding":"base64","extensions":["pti","ptid"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pwg-multiplexed","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.pwg-xhtml-print+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.qualcomm.brew-app-res","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.Quark.QuarkXPress","friendly":{"en":"QuarkXPress"},"encoding":"8bit","extensions":["qxd","qxt","qwd","qwt","qxl","qxb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.quobject-quoxdocument","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.moml+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conf+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-conn+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-dialog+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-audit-stream+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-conf+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-base+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-detect+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-fax-sendrecv+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-group+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-speech+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.radisys.msml-dialog-transform+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vnd.rainstor.data","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.rapid","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.realvnc.bed","friendly":{"en":"RealVNC"},"encoding":"base64","extensions":["bed"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.recordare.musicxml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["mxl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.recordare.musicxml+xml","friendly":{"en":"Recordare Applications"},"encoding":"base64","extensions":["musicxml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.RenLearn.rlprint","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.rig.cryptonote","friendly":{"en":"CryptoNote"},"encoding":"base64","extensions":["cryptonote"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.rim.cod","friendly":{"en":"Blackberry COD File"},"encoding":"base64","extensions":["cod"],"registered":false},{"content-type":"application/vnd.rn-realmedia","friendly":{"en":"RealMedia"},"encoding":"base64","extensions":["rm"],"registered":false},{"content-type":"application/vnd.rn-realmedia-vbr","encoding":"base64","extensions":["rmvb"],"registered":false},{"content-type":"application/vnd.route66.link66+xml","friendly":{"en":"ROUTE 66 Location Based Services"},"encoding":"base64","extensions":["link66"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.rs-274x","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ruckus.download","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.s3sms","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sailingtracker.track","friendly":{"en":"SailingTracker"},"encoding":"base64","extensions":["st"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sbm.cid","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sbm.mid2","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.scribus","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.3df","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.csf","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.doc","encoding":"base64","extensions":["sdoc","sdo","s1w"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.eml","encoding":"base64","extensions":["seml","sem"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.mht","encoding":"base64","extensions":["smht","smh"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.net","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.ppt","encoding":"base64","extensions":["sppt","spp","s1p"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.tiff","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealed.xls","encoding":"base64","extensions":["sxls","sxl","s1e"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.html","encoding":"base64","extensions":["stml","stm","s1h"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sealedmedia.softseal.pdf","encoding":"base64","extensions":["spdf","spd","s1a"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.seemail","friendly":{"en":"SeeMail"},"encoding":"base64","extensions":["see"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sema","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["sema"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.semd","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.semf","friendly":{"en":"Secured eMail"},"encoding":"base64","extensions":["semf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.shana.informed.formdata","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ifm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.shana.informed.formtemplate","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["itp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.shana.informed.interchange","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["iif"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.shana.informed.package","friendly":{"en":"Shana Informed Filler"},"encoding":"base64","extensions":["ipk"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.SimTech-MindMapper","friendly":{"en":"SimTech MindMapper"},"encoding":"base64","extensions":["twd","twds"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.siren+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.smaf","friendly":{"en":"SMAF File"},"encoding":"base64","extensions":["mmf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.smart.notebook","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.smart.teacher","friendly":{"en":"SMART Technologies Apps"},"encoding":"base64","extensions":["teacher"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.software602.filler.form+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.software602.filler.form-xml-zip","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.solent.sdkm+xml","friendly":{"en":"SudokuMagic"},"encoding":"base64","extensions":["sdkd","sdkm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.spotfire.dxp","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["dxp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.spotfire.sfs","friendly":{"en":"TIBCO Spotfire"},"encoding":"base64","extensions":["sfs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sss-cod","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sss-dtf","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sss-ntf","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.stardivision.calc","friendly":{"en":"StarOffice - Calc"},"encoding":"base64","extensions":["sdc"],"registered":false},{"content-type":"application/vnd.stardivision.chart","encoding":"base64","extensions":["sds"],"registered":false},{"content-type":"application/vnd.stardivision.draw","friendly":{"en":"StarOffice - Draw"},"encoding":"base64","extensions":["sda"],"registered":false},{"content-type":"application/vnd.stardivision.impress","friendly":{"en":"StarOffice - Impress"},"encoding":"base64","extensions":["sdd"],"registered":false},{"content-type":"application/vnd.stardivision.math","friendly":{"en":"StarOffice - Math"},"encoding":"base64","extensions":["sdf","smf"],"registered":false},{"content-type":"application/vnd.stardivision.writer","friendly":{"en":"StarOffice - Writer"},"encoding":"base64","extensions":["sdw","vor"],"registered":false},{"content-type":"application/vnd.stardivision.writer-global","friendly":{"en":"StarOffice - Writer (Global)"},"encoding":"base64","extensions":["sgl"],"registered":false},{"content-type":"application/vnd.stepmania.package","encoding":"base64","extensions":["smzip"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.stepmania.stepchart","friendly":{"en":"StepMania"},"encoding":"base64","extensions":["sm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.street-stream","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sun.wadl+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.sun.xml.calc","friendly":{"en":"OpenOffice - Calc (Spreadsheet)"},"encoding":"base64","extensions":["sxc"],"registered":false},{"content-type":"application/vnd.sun.xml.calc.template","friendly":{"en":"OpenOffice - Calc Template (Spreadsheet)"},"encoding":"base64","extensions":["stc"],"registered":false},{"content-type":"application/vnd.sun.xml.draw","friendly":{"en":"OpenOffice - Draw (Graphics)"},"encoding":"base64","extensions":["sxd"],"registered":false},{"content-type":"application/vnd.sun.xml.draw.template","friendly":{"en":"OpenOffice - Draw Template (Graphics)"},"encoding":"base64","extensions":["std"],"registered":false},{"content-type":"application/vnd.sun.xml.impress","friendly":{"en":"OpenOffice - Impress (Presentation)"},"encoding":"base64","extensions":["sxi"],"registered":false},{"content-type":"application/vnd.sun.xml.impress.template","friendly":{"en":"OpenOffice - Impress Template (Presentation)"},"encoding":"base64","extensions":["sti"],"registered":false},{"content-type":"application/vnd.sun.xml.math","friendly":{"en":"OpenOffice - Math (Formula)"},"encoding":"base64","extensions":["sxm"],"registered":false},{"content-type":"application/vnd.sun.xml.writer","friendly":{"en":"OpenOffice - Writer (Text - HTML)"},"encoding":"base64","extensions":["sxw"],"registered":false},{"content-type":"application/vnd.sun.xml.writer.global","friendly":{"en":"OpenOffice - Writer (Text - HTML)"},"encoding":"base64","extensions":["sxg"],"registered":false},{"content-type":"application/vnd.sun.xml.writer.template","friendly":{"en":"OpenOffice - Writer Template (Text - HTML)"},"encoding":"base64","extensions":["stw"],"registered":false},{"content-type":"application/vnd.sus-calendar","friendly":{"en":"ScheduleUs"},"encoding":"base64","extensions":["sus","susp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.svd","friendly":{"en":"SourceView Document"},"encoding":"base64","extensions":["svd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.swiftview-ics","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.symbian.install","friendly":{"en":"Symbian Install Package"},"encoding":"base64","extensions":["sis","sisx"],"registered":false},{"content-type":"application/vnd.syncml+xml","friendly":{"en":"SyncML"},"encoding":"base64","extensions":["xsm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.syncml.dm+wbxml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["bdm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.syncml.dm+xml","friendly":{"en":"SyncML - Device Management"},"encoding":"base64","extensions":["xdm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.syncml.dm.notification","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.syncml.dmddf+wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.syncml.dmddf+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.syncml.dmtnds+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.syncml.ds.notification","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.tao.intent-module-archive","friendly":{"en":"Tao Intent"},"encoding":"base64","extensions":["tao"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.tcpdump.pcap","encoding":"base64","extensions":["cap","dmp","pcap"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.tmd.mediaflex.api+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.tmobile-livetv","friendly":{"en":"MobileTV"},"encoding":"base64","extensions":["tmo"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.trid.tpt","friendly":{"en":"TRI Systems Config"},"encoding":"base64","extensions":["tpt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.triscape.mxs","friendly":{"en":"Triscape Map Explorer"},"encoding":"base64","extensions":["mxs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.trueapp","friendly":{"en":"True BASIC"},"encoding":"base64","extensions":["tra"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.truedoc","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ubisoft.webplayer","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.ufdl","friendly":{"en":"Universal Forms Description Language"},"encoding":"base64","extensions":["ufd","ufdl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uiq.theme","friendly":{"en":"User Interface Quartz - Theme (Symbian)"},"encoding":"base64","extensions":["utz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.umajin","friendly":{"en":"UMAJIN"},"encoding":"base64","extensions":["umj"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.unity","friendly":{"en":"Unity 3d"},"encoding":"base64","extensions":["unityweb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uoml+xml","friendly":{"en":"Unique Object Markup Language"},"encoding":"base64","extensions":["uoml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.alert","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.alert-wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.bearer-choice-wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.cacheop","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.cacheop-wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.channel","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.channel-wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.list","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.list-wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.listcmd","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.listcmd-wbxml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uplanet.signal","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.uri-map","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.valve.source.material","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.vcx","friendly":{"en":"VirtualCatalog"},"encoding":"base64","extensions":["vcx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.vd-study","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.vectorworks","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.verimatrix.vcas","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.vidsoft.vidconference","encoding":"8bit","extensions":["vsc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.visio","friendly":{"en":"Microsoft Visio"},"encoding":"base64","extensions":["vsd","vst","vsw","vss"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.visionary","friendly":{"en":"Visionary"},"encoding":"base64","extensions":["vis"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.vividence.scriptfile","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.vsf","friendly":{"en":"Viewport+"},"encoding":"base64","extensions":["vsf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wap.sic","encoding":"base64","extensions":["sic"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wap.slc","encoding":"base64","extensions":["slc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wap.wbxml","friendly":{"en":"WAP Binary XML (WBXML)"},"encoding":"base64","extensions":["wbxml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wap.wmlc","friendly":{"en":"Compiled Wireless Markup Language (WMLC)"},"encoding":"base64","extensions":["wmlc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wap.wmlscriptc","friendly":{"en":"WMLScript"},"encoding":"base64","extensions":["wmlsc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.webturbo","friendly":{"en":"WebTurbo"},"encoding":"base64","extensions":["wtb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wfa.p2p","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wfa.wsc","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.windows.devicepairing","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wmc","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wmf.bootstrap","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wolfram.mathematica","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wolfram.mathematica.package","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wolfram.player","friendly":{"en":"Mathematica Notebook Player"},"encoding":"base64","extensions":["nbp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wordperfect","friendly":{"en":"Wordperfect"},"encoding":"base64","extensions":["wpd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wqd","friendly":{"en":"SundaHus WQ"},"encoding":"base64","extensions":["wqd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wrq-hp3000-labelled","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wt.stf","friendly":{"en":"Worldtalk"},"encoding":"base64","extensions":["stf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wv.csp+wbxml","encoding":"base64","extensions":["wv"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wv.csp+xml","encoding":"8bit","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.wv.ssp+xml","encoding":"8bit","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xacml+json","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xara","friendly":{"en":"CorelXARA"},"encoding":"base64","extensions":["xar"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xfdl","friendly":{"en":"Extensible Forms Description Language"},"encoding":"base64","extensions":["xfdl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xfdl.webform","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xmi+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xmpie.cpkg","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xmpie.dpkg","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xmpie.plan","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xmpie.ppkg","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.xmpie.xlim","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.hv-dic","friendly":{"en":"HV Voice Dictionary"},"encoding":"base64","extensions":["hvd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.hv-script","friendly":{"en":"HV Script"},"encoding":"base64","extensions":["hvs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.hv-voice","friendly":{"en":"HV Voice Parameter"},"encoding":"base64","extensions":["hvp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat","friendly":{"en":"Open Score Format"},"encoding":"base64","extensions":["osf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.openscoreformat.osfpvg+xml","friendly":{"en":"OSFPVG"},"encoding":"base64","extensions":["osfpvg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.remote-setup","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.smaf-audio","friendly":{"en":"SMAF Audio"},"encoding":"base64","extensions":["saf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.smaf-phrase","friendly":{"en":"SMAF Phrase"},"encoding":"base64","extensions":["spf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.through-ngn","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yamaha.tunnel-udpencap","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yaoweme","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.yellowriver-custom-menu","friendly":{"en":"CustomMenu"},"encoding":"base64","extensions":["cmp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.zul","friendly":{"en":"Z.U.L. Geometry"},"encoding":"base64","extensions":["zir","zirz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/vnd.zzazz.deck+xml","friendly":{"en":"Zzazz Deck"},"encoding":"base64","extensions":["zaz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/voicexml+xml","friendly":{"en":"VoiceXML"},"encoding":"base64","extensions":["vxml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/vq-rtcpxr","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/watcherinfo+xml","encoding":"base64","extensions":["wif"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/whoispp-query","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/whoispp-response","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/widget","friendly":{"en":"Widget Packaging and XML Configuration"},"encoding":"base64","extensions":["wgt"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/winhlp","friendly":{"en":"WinHelp"},"encoding":"base64","extensions":["hlp"],"registered":false},{"content-type":"application/wita","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/word","encoding":"base64","extensions":["doc","dot"],"registered":false},{"content-type":"application/wordperfect","encoding":"base64","extensions":["wp"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/wordperfect5.1","encoding":"base64","extensions":["wp5","wp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/wordperfect6.1","encoding":"base64","extensions":["wp6"],"obsolete":true,"use-instead":"application/x-wordperfect6.1","registered":false},{"content-type":"application/wordperfectd","encoding":"base64","extensions":["wpd"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/wsdl+xml","friendly":{"en":"WSDL - Web Services Description Language"},"encoding":"base64","extensions":["wsdl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/wspolicy+xml","friendly":{"en":"Web Services Policy"},"encoding":"base64","extensions":["wspolicy"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/x-123","encoding":"base64","extensions":["wk"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/x-7z-compressed","friendly":{"en":"7-Zip"},"encoding":"base64","extensions":["7z"],"registered":false},{"content-type":"application/x-abiword","friendly":{"en":"AbiWord"},"encoding":"base64","extensions":["abw"],"registered":false},{"content-type":"application/x-access","encoding":"base64","extensions":["mdf","mda","mdb","mde"],"obsolete":true,"use-instead":"application/x-msaccess","registered":false},{"content-type":"application/x-ace-compressed","friendly":{"en":"Ace Archive"},"encoding":"base64","extensions":["ace"],"registered":false},{"content-type":"application/x-apple-diskimage","encoding":"base64","extensions":["dmg"],"registered":false},{"content-type":"application/x-authorware-bin","friendly":{"en":"Adobe (Macropedia) Authorware - Binary File"},"encoding":"base64","extensions":["aab","u32","vox","x32"],"registered":false},{"content-type":"application/x-authorware-map","friendly":{"en":"Adobe (Macropedia) Authorware - Map"},"encoding":"base64","extensions":["aam"],"registered":false},{"content-type":"application/x-authorware-seg","friendly":{"en":"Adobe (Macropedia) Authorware - Segment File"},"encoding":"base64","extensions":["aas"],"registered":false},{"content-type":"application/x-bcpio","friendly":{"en":"Binary CPIO Archive"},"encoding":"base64","extensions":["bcpio"],"registered":false},{"content-type":"application/x-bittorrent","friendly":{"en":"BitTorrent"},"encoding":"base64","extensions":["torrent"],"registered":false},{"content-type":"application/x-bleeper","encoding":"base64","extensions":["bleep"],"registered":false},{"content-type":"application/x-blorb","encoding":"base64","extensions":["blb","blorb"],"registered":false},{"content-type":"application/x-bzip","friendly":{"en":"Bzip Archive"},"encoding":"base64","extensions":["bz"],"registered":false},{"content-type":"application/x-bzip2","friendly":{"en":"Bzip2 Archive"},"encoding":"base64","extensions":["boz","bz2"],"registered":false},{"content-type":"application/x-cbr","encoding":"base64","extensions":["cb7","cba","cbr","cbt","cbz"],"registered":false},{"content-type":"application/x-cdlink","friendly":{"en":"Video CD"},"encoding":"base64","extensions":["vcd"],"registered":false},{"content-type":"application/x-cfs-compressed","encoding":"base64","extensions":["cfs"],"registered":false},{"content-type":"application/x-chat","friendly":{"en":"pIRCh"},"encoding":"base64","extensions":["chat"],"registered":false},{"content-type":"application/x-chess-pgn","friendly":{"en":"Portable Game Notation (Chess Games)"},"encoding":"base64","extensions":["pgn"],"registered":false},{"content-type":"application/x-chrome-extension","encoding":"base64","extensions":["crx"],"registered":false},{"content-type":"application/x-clariscad","encoding":"base64","registered":false},{"content-type":"application/x-compress","encoding":"base64","extensions":["z","Z"],"obsolete":true,"use-instead":"application/x-compressed","registered":false},{"content-type":"application/x-compressed","encoding":"base64","extensions":["z","Z"],"registered":false},{"content-type":"application/x-conference","encoding":"base64","extensions":["nsc"],"registered":false},{"content-type":"application/x-cpio","friendly":{"en":"CPIO Archive"},"encoding":"base64","extensions":["cpio"],"registered":false},{"content-type":"application/x-csh","friendly":{"en":"C Shell Script"},"encoding":"8bit","extensions":["csh"],"registered":false},{"content-type":"application/x-cu-seeme","encoding":"base64","extensions":["csm","cu"],"registered":false},{"content-type":"application/x-debian-package","friendly":{"en":"Debian Package"},"encoding":"base64","extensions":["deb","udeb"],"registered":false},{"content-type":"application/x-dgc-compressed","encoding":"base64","extensions":["dgc"],"registered":false},{"content-type":"application/x-director","friendly":{"en":"Adobe Shockwave Player"},"encoding":"base64","extensions":["dcr","@dir","@dxr","cct","cst","cxt","dir","dxr","fgd","swa","w3d"],"registered":false},{"content-type":"application/x-doom","friendly":{"en":"Doom Video Game"},"encoding":"base64","extensions":["wad"],"registered":false},{"content-type":"application/x-drafting","encoding":"base64","registered":false},{"content-type":"application/x-dtbncx+xml","friendly":{"en":"Navigation Control file for XML (for ePub)"},"encoding":"base64","extensions":["ncx"],"registered":false},{"content-type":"application/x-dtbook+xml","friendly":{"en":"Digital Talking Book"},"encoding":"base64","extensions":["dtb"],"registered":false},{"content-type":"application/x-dtbresource+xml","friendly":{"en":"Digital Talking Book - Resource File"},"encoding":"base64","extensions":["res"],"registered":false},{"content-type":"application/x-dvi","friendly":{"en":"Device Independent File Format (DVI)"},"encoding":"base64","extensions":["dvi"],"registered":false},{"content-type":"application/x-dxf","encoding":"base64","registered":false},{"content-type":"application/x-envoy","encoding":"base64","extensions":["evy"],"registered":false},{"content-type":"application/x-eva","encoding":"base64","extensions":["eva"],"registered":false},{"content-type":"application/x-excel","encoding":"base64","obsolete":true,"use-instead":"application/vnd.ms-excel","registered":false},{"content-type":"application/x-font-bdf","friendly":{"en":"Glyph Bitmap Distribution Format"},"encoding":"base64","extensions":["bdf"],"registered":false},{"content-type":"application/x-font-ghostscript","friendly":{"en":"Ghostscript Font"},"encoding":"base64","extensions":["gsf"],"registered":false},{"content-type":"application/x-font-linux-psf","friendly":{"en":"PSF Fonts"},"encoding":"base64","extensions":["psf"],"registered":false},{"content-type":"application/x-font-opentype","encoding":"base64","extensions":["otf"],"registered":false},{"content-type":"application/x-font-otf","friendly":{"en":"OpenType Font File"},"encoding":"base64","extensions":["otf"],"registered":false},{"content-type":"application/x-font-pcf","friendly":{"en":"Portable Compiled Format"},"encoding":"base64","extensions":["pcf"],"registered":false},{"content-type":"application/x-font-snf","friendly":{"en":"Server Normal Format"},"encoding":"base64","extensions":["snf"],"registered":false},{"content-type":"application/x-font-truetype","encoding":"base64","extensions":["ttf"],"registered":false},{"content-type":"application/x-font-ttf","friendly":{"en":"TrueType Font"},"encoding":"base64","extensions":["ttc","ttf"],"registered":false},{"content-type":"application/x-font-type1","friendly":{"en":"PostScript Fonts"},"encoding":"base64","extensions":["afm","pfa","pfb","pfm"],"registered":false},{"content-type":"application/x-fractals","encoding":"base64","registered":false},{"content-type":"application/x-freearc","encoding":"base64","extensions":["arc"],"registered":false},{"content-type":"application/x-futuresplash","friendly":{"en":"FutureSplash Animator"},"encoding":"base64","extensions":["spl"],"registered":false},{"content-type":"application/x-gca-compressed","encoding":"base64","extensions":["gca"],"registered":false},{"content-type":"application/x-ghostview","encoding":"base64","registered":false},{"content-type":"application/x-glulx","encoding":"base64","extensions":["ulx"],"registered":false},{"content-type":"application/x-gnumeric","friendly":{"en":"Gnumeric"},"encoding":"base64","extensions":["gnumeric"],"registered":false},{"content-type":"application/x-gramps-xml","encoding":"base64","extensions":["gramps"],"registered":false},{"content-type":"application/x-gtar","friendly":{"en":"GNU Tar Files"},"encoding":"base64","extensions":["gtar","tgz","tbz2","tbz"],"registered":false},{"content-type":"application/x-gzip","encoding":"base64","extensions":["gz"],"obsolete":true,"use-instead":"application/gzip","registered":false},{"content-type":"application/x-hdf","friendly":{"en":"Hierarchical Data Format"},"encoding":"base64","extensions":["hdf"],"registered":false},{"content-type":"application/x-hep","encoding":"base64","extensions":["hep"],"registered":false},{"content-type":"application/x-html+ruby","encoding":"8bit","extensions":["rhtml"],"registered":false},{"content-type":"application/x-httpd-php","encoding":"8bit","extensions":["phtml","pht","php"],"registered":false},{"content-type":"application/x-ibooks+zip","encoding":"base64","extensions":["ibooks"],"registered":false},{"content-type":"application/x-ica","encoding":"base64","extensions":["ica"],"registered":false},{"content-type":"application/x-ideas","encoding":"base64","registered":false},{"content-type":"application/x-imagemap","encoding":"8bit","extensions":["imagemap","imap"],"registered":false},{"content-type":"application/x-install-instructions","encoding":"base64","extensions":["install"],"registered":false},{"content-type":"application/x-iso9660-image","encoding":"base64","extensions":["iso"],"registered":false},{"content-type":"application/x-iwork-keynote-sffkey","encoding":"base64","extensions":["key"],"registered":false},{"content-type":"application/x-iwork-numbers-sffnumbers","encoding":"base64","extensions":["numbers"],"registered":false},{"content-type":"application/x-iwork-pages-sffpages","encoding":"base64","extensions":["pages"],"registered":false},{"content-type":"application/x-java-archive","encoding":"base64","extensions":["jar"],"registered":false},{"content-type":"application/x-java-jnlp-file","friendly":{"en":"Java Network Launching Protocol"},"encoding":"base64","extensions":["jnlp"],"registered":false},{"content-type":"application/x-java-serialized-object","encoding":"base64","extensions":["ser"],"registered":false},{"content-type":"application/x-java-vm","encoding":"base64","extensions":["class"],"registered":false},{"content-type":"application/x-javascript","encoding":"8bit","extensions":["js"],"obsolete":true,"use-instead":"application/javascript","registered":false},{"content-type":"application/x-koan","encoding":"base64","extensions":["skp","skd","skt","skm"],"registered":false},{"content-type":"application/x-latex","friendly":{"en":"LaTeX"},"encoding":"8bit","extensions":["ltx","latex"],"registered":false},{"content-type":"application/x-lotus-123","encoding":"base64","extensions":["wks"],"obsolete":true,"use-instead":"application/vnd.lotus-1-2-3","registered":false},{"content-type":"application/x-lzh-compressed","encoding":"base64","extensions":["lha","lzh"],"registered":false},{"content-type":"application/x-mac","encoding":"base64","extensions":["bin"],"registered":false},{"content-type":"application/x-mac-compactpro","encoding":"base64","extensions":["cpt"],"registered":false},{"content-type":"application/x-macbase64","encoding":"base64","extensions":["bin"],"registered":false},{"content-type":"application/x-macbinary","encoding":"base64","registered":false},{"content-type":"application/x-maker","encoding":"base64","extensions":["frm","maker","frame","fm","fb","book","fbdoc"],"obsolete":true,"use-instead":"application/vnd.framemaker","registered":false},{"content-type":"application/x-mathcad","encoding":"base64","extensions":["mcd"],"obsolete":true,"use-instead":"application/vnd.mcd","registered":false},{"content-type":"application/x-mathematica-old","encoding":"base64","registered":false},{"content-type":"application/x-mie","encoding":"base64","extensions":["mie"],"registered":false},{"content-type":"application/x-mif","encoding":"base64","extensions":["mif"],"registered":false},{"content-type":"application/x-mobipocket-ebook","friendly":{"en":"Mobipocket"},"encoding":"base64","extensions":["mobi","prc"],"registered":false},{"content-type":"application/x-ms-application","friendly":{"en":"Microsoft ClickOnce"},"encoding":"base64","extensions":["application"],"registered":false},{"content-type":"application/x-ms-shortcut","encoding":"base64","extensions":["lnk"],"registered":false},{"content-type":"application/x-ms-wmd","friendly":{"en":"Microsoft Windows Media Player Download Package"},"encoding":"base64","extensions":["wmd"],"registered":false},{"content-type":"application/x-ms-wmz","friendly":{"en":"Microsoft Windows Media Player Skin Package"},"encoding":"base64","extensions":["wmz"],"registered":false},{"content-type":"application/x-ms-xbap","friendly":{"en":"Microsoft XAML Browser Application"},"encoding":"base64","extensions":["xbap"],"registered":false},{"content-type":"application/x-msaccess","friendly":{"en":"Microsoft Access"},"encoding":"base64","extensions":["mda","mdb","mde","mdf"],"registered":false},{"content-type":"application/x-msbinder","friendly":{"en":"Microsoft Office Binder"},"encoding":"base64","extensions":["obd"],"registered":false},{"content-type":"application/x-mscardfile","friendly":{"en":"Microsoft Information Card"},"encoding":"base64","extensions":["crd"],"registered":false},{"content-type":"application/x-msclip","friendly":{"en":"Microsoft Clipboard Clip"},"encoding":"base64","extensions":["clp"],"registered":false},{"content-type":"application/x-msdos-program","encoding":"base64","extensions":["cmd","bat","com","exe","reg","ps1","vbs"],"registered":false},{"content-type":"application/x-msdownload","friendly":{"en":"Microsoft Application"},"encoding":"base64","extensions":["exe","com","cmd","bat","dll","msi","reg","ps1","vbs"],"registered":false},{"content-type":"application/x-msmediaview","friendly":{"en":"Microsoft MediaView"},"encoding":"base64","extensions":["m13","m14","mvb"],"registered":false},{"content-type":"application/x-msmetafile","friendly":{"en":"Microsoft Windows Metafile"},"encoding":"base64","extensions":["emf","emz","wmf","wmz"],"registered":false},{"content-type":"application/x-msmoney","friendly":{"en":"Microsoft Money"},"encoding":"base64","extensions":["mny"],"registered":false},{"content-type":"application/x-mspublisher","friendly":{"en":"Microsoft Publisher"},"encoding":"base64","extensions":["pub"],"registered":false},{"content-type":"application/x-msschedule","friendly":{"en":"Microsoft Schedule+"},"encoding":"base64","extensions":["scd"],"registered":false},{"content-type":"application/x-msterminal","friendly":{"en":"Microsoft Windows Terminal Services"},"encoding":"base64","extensions":["trm"],"registered":false},{"content-type":"application/x-msword","encoding":"base64","extensions":["doc","dot","wrd"],"obsolete":true,"use-instead":"application/msword","registered":false},{"content-type":"application/x-mswrite","friendly":{"en":"Microsoft Wordpad"},"encoding":"base64","extensions":["wri"],"registered":false},{"content-type":"application/x-netcdf","friendly":{"en":"Network Common Data Form (NetCDF)"},"encoding":"base64","extensions":["nc","cdf"],"registered":false},{"content-type":"application/x-ns-proxy-autoconfig","encoding":"base64","extensions":["pac"],"registered":false},{"content-type":"application/x-nzb","encoding":"base64","extensions":["nzb"],"registered":false},{"content-type":"application/x-opera-extension","encoding":"base64","extensions":["oex"],"registered":false},{"content-type":"application/x-pagemaker","encoding":"base64","extensions":["pm","pm5","pt5"],"registered":false},{"content-type":"application/x-perl","encoding":"8bit","extensions":["pl","pm"],"registered":false},{"content-type":"application/x-pgp","encoding":"base64","registered":false,"signature":true},{"content-type":"application/x-pkcs12","friendly":{"en":"PKCS #12 - Personal Information Exchange Syntax Standard"},"encoding":"base64","extensions":["p12","pfx"],"registered":false},{"content-type":"application/x-pkcs7-certificates","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard (Certificates)"},"encoding":"base64","extensions":["p7b","spc"],"registered":false},{"content-type":"application/x-pkcs7-certreqresp","friendly":{"en":"PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)"},"encoding":"base64","extensions":["p7r"],"registered":false},{"content-type":"application/x-python","encoding":"8bit","extensions":["py"],"registered":false},{"content-type":"application/x-quicktimeplayer","encoding":"base64","extensions":["qtl"],"registered":false},{"content-type":"application/x-rar-compressed","friendly":{"en":"RAR Archive"},"encoding":"base64","extensions":["rar"],"registered":false},{"content-type":"application/x-remote_printing","encoding":"base64","registered":false},{"content-type":"application/x-research-info-systems","encoding":"base64","extensions":["ris"],"registered":false},{"content-type":"application/x-rtf","encoding":"base64","extensions":["rtf"],"obsolete":true,"use-instead":"application/rtf","registered":false},{"content-type":"application/x-ruby","encoding":"8bit","extensions":["rb","rbw"],"registered":false},{"content-type":"application/x-set","encoding":"base64","registered":false},{"content-type":"application/x-sh","friendly":{"en":"Bourne Shell Script"},"encoding":"8bit","extensions":["sh"],"registered":false},{"content-type":"application/x-shar","friendly":{"en":"Shell Archive"},"encoding":"8bit","extensions":["shar"],"registered":false},{"content-type":"application/x-shockwave-flash","friendly":{"en":"Adobe Flash"},"encoding":"base64","extensions":["swf"],"registered":false},{"content-type":"application/x-silverlight-app","friendly":{"en":"Microsoft Silverlight"},"encoding":"base64","extensions":["xap"],"registered":false},{"content-type":"application/x-SLA","encoding":"base64","registered":false},{"content-type":"application/x-solids","encoding":"base64","registered":false},{"content-type":"application/x-spss","encoding":"base64","extensions":["sav","sbs","sps","spo","spp"],"registered":false},{"content-type":"application/x-sql","encoding":"base64","extensions":["sql"],"registered":false},{"content-type":"application/x-STEP","encoding":"base64","registered":false},{"content-type":"application/x-stuffit","friendly":{"en":"Stuffit Archive"},"encoding":"base64","extensions":["sit"],"registered":false},{"content-type":"application/x-stuffitx","friendly":{"en":"Stuffit Archive"},"encoding":"base64","extensions":["sitx"],"registered":false},{"content-type":"application/x-subrip","encoding":"base64","extensions":["srt"],"registered":false},{"content-type":"application/x-sv4cpio","friendly":{"en":"System V Release 4 CPIO Archive"},"encoding":"base64","extensions":["sv4cpio"],"registered":false},{"content-type":"application/x-sv4crc","friendly":{"en":"System V Release 4 CPIO Checksum Data"},"encoding":"base64","extensions":["sv4crc"],"registered":false},{"content-type":"application/x-t3vm-image","encoding":"base64","extensions":["t3"],"registered":false},{"content-type":"application/x-tads","encoding":"base64","extensions":["gam"],"registered":false},{"content-type":"application/x-tar","friendly":{"en":"Tar File (Tape Archive)"},"encoding":"base64","extensions":["tar"],"registered":false},{"content-type":"application/x-tcl","friendly":{"en":"Tcl Script"},"encoding":"8bit","extensions":["tcl"],"registered":false},{"content-type":"application/x-tex","friendly":{"en":"TeX"},"encoding":"8bit","extensions":["tex"],"registered":false},{"content-type":"application/x-tex-tfm","friendly":{"en":"TeX Font Metric"},"encoding":"base64","extensions":["tfm"],"registered":false},{"content-type":"application/x-texinfo","friendly":{"en":"GNU Texinfo Document"},"encoding":"8bit","extensions":["texinfo","texi"],"registered":false},{"content-type":"application/x-tgif","encoding":"base64","extensions":["obj"],"registered":false},{"content-type":"application/x-toolbook","encoding":"base64","extensions":["tbk"],"registered":false},{"content-type":"application/x-troff","encoding":"base64","extensions":["t","tr","roff"],"obsolete":true,"use-instead":"text/troff","registered":false},{"content-type":"application/x-troff-man","encoding":"8bit","extensions":["man"],"registered":false},{"content-type":"application/x-troff-me","encoding":"base64","extensions":["me"],"registered":false},{"content-type":"application/x-troff-ms","encoding":"base64","extensions":["ms"],"registered":false},{"content-type":"application/x-u-star","encoding":"base64","obsolete":true,"use-instead":"application/x-ustar","registered":false},{"content-type":"application/x-ustar","friendly":{"en":"Ustar (Uniform Standard Tape Archive)"},"encoding":"base64","extensions":["ustar"],"registered":false},{"content-type":"application/x-VMSBACKUP","encoding":"base64","extensions":["bck"],"registered":false},{"content-type":"application/x-wais-source","friendly":{"en":"WAIS Source"},"encoding":"base64","extensions":["src"],"registered":false},{"content-type":"application/x-web-app-manifest+json","encoding":"base64","extensions":["webapp"],"registered":false},{"content-type":"application/x-Wingz","encoding":"base64","extensions":["wz","wkz"],"registered":false},{"content-type":"application/x-word","encoding":"base64","extensions":["doc","dot"],"obsolete":true,"use-instead":"application/msword","registered":false},{"content-type":"application/x-wordperfect","encoding":"base64","extensions":["wp"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/x-wordperfect6.1","encoding":"base64","extensions":["wp6"],"registered":false},{"content-type":"application/x-wordperfectd","encoding":"base64","extensions":["wpd"],"obsolete":true,"use-instead":"application/vnd.wordperfect","registered":false},{"content-type":"application/x-www-form-urlencoded","encoding":"7bit","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/x-x509-ca-cert","friendly":{"en":"X.509 Certificate"},"encoding":"base64","extensions":["crt","der"],"registered":false},{"content-type":"application/x-xfig","friendly":{"en":"Xfig"},"encoding":"base64","extensions":["fig"],"registered":false},{"content-type":"application/x-xliff+xml","encoding":"base64","extensions":["xlf"],"registered":false},{"content-type":"application/x-xpinstall","friendly":{"en":"XPInstall - Mozilla"},"encoding":"base64","extensions":["xpi"],"registered":false},{"content-type":"application/x-xz","encoding":"base64","extensions":["xz"],"registered":false},{"content-type":"application/x-zmachine","encoding":"base64","extensions":["z1","z2","z3","z4","z5","z6","z7","z8"],"registered":false},{"content-type":"application/x400-bp","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/x400.bp","encoding":"base64","obsolete":true,"use-instead":"application/x400-bp","registered":false},{"content-type":"application/xacml+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xaml+xml","encoding":"base64","extensions":["xaml"],"registered":false},{"content-type":"application/xcap-att+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xcap-caps+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xcap-diff+xml","friendly":{"en":"XML Configuration Access Protocol - XCAP Diff"},"encoding":"base64","extensions":["xdf"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xcap-el+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xcap-error+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xcap-ns+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xcon-conference-info+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xcon-conference-info-diff+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xenc+xml","friendly":{"en":"XML Encryption Syntax and Processing"},"encoding":"base64","extensions":["xenc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/xhtml+xml","friendly":{"en":"XHTML - The Extensible HyperText Markup Language"},"encoding":"8bit","extensions":["xht","xhtml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/xhtml-voice+xml","encoding":"base64","obsolete":true,"xrefs":{"draft":"#","template":"#","notes":"#"},"registered":true},{"content-type":"application/xml","friendly":{"en":"XML - Extensible Markup Language"},"encoding":"8bit","extensions":["xml","xsl"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xml-dtd","friendly":{"en":"Document Type Definition"},"encoding":"8bit","extensions":["dtd"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xml-external-parsed-entity","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xml-patch+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xmpp+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/xop+xml","friendly":{"en":"XML-Binary Optimized Packaging"},"encoding":"base64","extensions":["xop"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/xproc+xml","encoding":"base64","extensions":["xpl"],"registered":false},{"content-type":"application/xslt+xml","friendly":{"en":"XML Transformations"},"encoding":"base64","extensions":["xslt"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"application/xspf+xml","friendly":{"en":"XSPF - XML Shareable Playlist Format"},"encoding":"base64","extensions":["xspf"],"registered":false},{"content-type":"application/xv+xml","friendly":{"en":"MXML"},"encoding":"base64","extensions":["mxml","xhvml","xvm","xvml"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/yang","friendly":{"en":"YANG Data Modeling Language"},"encoding":"base64","extensions":["yang"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/yin+xml","friendly":{"en":"YIN (YANG - XML)"},"encoding":"base64","extensions":["yin"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"application/zip","friendly":{"en":"Zip Archive"},"encoding":"base64","extensions":["zip"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"application/zlib","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/1d-interleaved-parityfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/32kadpcm","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/3gpp","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/3gpp2","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/ac3","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/adpcm","friendly":{"en":"Adaptive differential pulse-code modulation"},"encoding":"base64","extensions":["adp"],"registered":false},{"content-type":"audio/AMR","encoding":"base64","extensions":["amr"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/AMR-WB","encoding":"base64","extensions":["awb"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/amr-wb+","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/aptx","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/asc","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/ATRAC-ADVANCED-LOSSLESS","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/ATRAC-X","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/ATRAC3","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/basic","friendly":{"en":"Sun Audio - Au file format"},"encoding":"base64","extensions":["au","snd"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/BV16","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/BV32","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/clearmode","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/CN","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/DAT12","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/dls","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/dsr-es201108","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/dsr-es202050","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/dsr-es202211","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/dsr-es202212","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/DV","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/DVI4","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/eac3","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/encaprtp","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRC","encoding":"base64","extensions":["evc"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRC-QCP","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRC0","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRC1","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCB","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCB0","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCB1","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCNW","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCNW0","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCNW1","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCWB","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCWB0","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/EVRCWB1","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/example","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/fwdred","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G711-0","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G719","encoding":"base64","xrefs":{"rfc":"#","rfc-errata":"#","template":"#"},"registered":true},{"content-type":"audio/G722","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G7221","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G723","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G726-16","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G726-24","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G726-32","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G726-40","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G728","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G729","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G7291","encoding":"base64","xrefs":{"rfc":"#"},"registered":true},{"content-type":"audio/G729D","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/G729E","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/GSM","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/GSM-EFR","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/GSM-HR-08","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/iLBC","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/ip-mr_v2.5","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/L16","encoding":"base64","extensions":["l16"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/L20","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/L24","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/L8","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/LPC","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/midi","friendly":{"en":"MIDI - Musical Instrument Digital Interface"},"encoding":"base64","extensions":["kar","mid","midi","rmi"],"registered":false},{"content-type":"audio/mobile-xmf","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/mp4","friendly":{"en":"MPEG-4 Audio"},"encoding":"base64","extensions":["mp4","mpg4","f4a","f4b","mp4a"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/MP4A-LATM","encoding":"base64","extensions":["m4a"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/MPA","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/mpa-robust","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/mpeg","friendly":{"en":"MPEG Audio"},"encoding":"base64","extensions":["mpga","mp2","mp3","m2a","m3a","mp2a"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/mpeg4-generic","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/ogg","friendly":{"en":"Ogg Audio"},"encoding":"base64","extensions":["oga","ogg","spx"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/opus","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/parityfec","encoding":"base64","xrefs":{"rfc":"#"},"registered":true},{"content-type":"audio/PCMA","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/PCMA-WB","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/PCMU","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/PCMU-WB","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/prs.sid","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/QCELP","encoding":"base64","xrefs":{"rfc":"#"},"registered":true},{"content-type":"audio/raptorfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/RED","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/rtp-enc-aescm128","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/rtp-midi","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/rtploopback","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/rtx","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/s3m","encoding":"base64","extensions":["s3m"],"registered":false},{"content-type":"audio/silk","encoding":"base64","extensions":["sil"],"registered":false},{"content-type":"audio/SMV","encoding":"base64","extensions":["smv"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/SMV-QCP","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/SMV0","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/sp-midi","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/speex","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/t140c","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/t38","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/telephone-event","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/tone","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/UEMCLIP","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/ulpfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/VDVI","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/VMR-WB","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.3gpp.iufp","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.4SB","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.audiokoz","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.CELP","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.cisco.nse","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.cmles.radio-events","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.cns.anp1","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.cns.inf1","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dece.audio","friendly":{"en":"DECE Audio"},"encoding":"base64","extensions":["uva","uvva"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.digital-winds","friendly":{"en":"Digital Winds Music"},"encoding":"7bit","extensions":["eol"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dlna.adts","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dolby.heaac.1","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dolby.heaac.2","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dolby.mlp","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dolby.mps","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dolby.pl2","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dolby.pl2x","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dolby.pl2z","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dolby.pulse.1","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dra","friendly":{"en":"DRA Audio"},"encoding":"base64","extensions":["dra"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dts","friendly":{"en":"DTS Audio"},"encoding":"base64","extensions":["dts"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dts.hd","friendly":{"en":"DTS High Definition Audio"},"encoding":"base64","extensions":["dtshd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.dvb.file","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.everad.plj","encoding":"base64","extensions":["plj"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.hns.audio","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.lucent.voice","friendly":{"en":"Lucent Voice"},"encoding":"base64","extensions":["lvp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.ms-playready.media.pya","friendly":{"en":"Microsoft PlayReady Ecosystem"},"encoding":"base64","extensions":["pya"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.nokia.mobile-xmf","encoding":"base64","extensions":["mxmf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.nortel.vbk","encoding":"base64","extensions":["vbk"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.nuera.ecelp4800","friendly":{"en":"Nuera ECELP 4800"},"encoding":"base64","extensions":["ecelp4800"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.nuera.ecelp7470","friendly":{"en":"Nuera ECELP 7470"},"encoding":"base64","extensions":["ecelp7470"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.nuera.ecelp9600","friendly":{"en":"Nuera ECELP 9600"},"encoding":"base64","extensions":["ecelp9600"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.octel.sbc","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.qcelp","encoding":"base64","extensions":["qcp"],"obsolete":true,"use-instead":"audio/qcelp","xrefs":{"rfc":"#","template":"#","notes":"#"},"registered":true},{"content-type":"audio/vnd.rhetorex.32kadpcm","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.rip","friendly":{"en":"Hit'n'Mix"},"encoding":"base64","extensions":["rip"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.sealedmedia.softseal.mpeg","encoding":"base64","extensions":["smp3","smp","s1m"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vnd.vmx.cvsd","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"audio/vorbis","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/vorbis-config","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"audio/webm","friendly":{"en":"Open Web Media Project - Audio"},"encoding":"base64","extensions":["weba","webm"],"registered":false},{"content-type":"audio/x-aac","friendly":{"en":"Advanced Audio Coding (AAC)"},"encoding":"base64","extensions":["aac"],"registered":false},{"content-type":"audio/x-aiff","friendly":{"en":"Audio Interchange File Format"},"encoding":"base64","extensions":["aif","aifc","aiff"],"registered":false},{"content-type":"audio/x-caf","encoding":"base64","extensions":["caf"],"registered":false},{"content-type":"audio/x-flac","encoding":"base64","extensions":["flac"],"registered":false},{"content-type":"audio/x-matroska","encoding":"base64","extensions":["mka"],"registered":false},{"content-type":"audio/x-midi","encoding":"base64","extensions":["mid","midi","kar"],"registered":false},{"content-type":"audio/x-mpegurl","friendly":{"en":"M3U (Multimedia Playlist)"},"encoding":"base64","extensions":["m3u"],"registered":false},{"content-type":"audio/x-ms-wax","friendly":{"en":"Microsoft Windows Media Audio Redirector"},"encoding":"base64","extensions":["wax"],"registered":false},{"content-type":"audio/x-ms-wma","friendly":{"en":"Microsoft Windows Media Audio"},"encoding":"base64","extensions":["wma"],"registered":false},{"content-type":"audio/x-ms-wmv","encoding":"base64","extensions":["wmv"],"registered":false},{"content-type":"audio/x-pn-realaudio","friendly":{"en":"Real Audio Sound"},"encoding":"base64","extensions":["ra","ram"],"registered":false},{"content-type":"audio/x-pn-realaudio-plugin","friendly":{"en":"Real Audio Sound"},"encoding":"base64","extensions":["rmp","rpm"],"registered":false},{"content-type":"audio/x-realaudio","encoding":"base64","extensions":["ra"],"registered":false},{"content-type":"audio/x-wav","friendly":{"en":"Waveform Audio File Format (WAV)"},"encoding":"base64","extensions":["wav"],"registered":false},{"content-type":"audio/xm","encoding":"base64","extensions":["xm"],"registered":false},{"content-type":"chemical/x-cdx","friendly":{"en":"ChemDraw eXchange file"},"encoding":"base64","extensions":["cdx"],"registered":false},{"content-type":"chemical/x-cif","friendly":{"en":"Crystallographic Interchange Format"},"encoding":"base64","extensions":["cif"],"registered":false},{"content-type":"chemical/x-cmdf","friendly":{"en":"CrystalMaker Data Format"},"encoding":"base64","extensions":["cmdf"],"registered":false},{"content-type":"chemical/x-cml","friendly":{"en":"Chemical Markup Language"},"encoding":"base64","extensions":["cml"],"registered":false},{"content-type":"chemical/x-csml","friendly":{"en":"Chemical Style Markup Language"},"encoding":"base64","extensions":["csml"],"registered":false},{"content-type":"chemical/x-pdb","encoding":"base64","extensions":["pdb"],"obsolete":true,"use-instead":"x-chemical/x-pdb","registered":false},{"content-type":"chemical/x-xyz","friendly":{"en":"XYZ File Format"},"encoding":"base64","extensions":["xyz"],"obsolete":true,"use-instead":"x-chemical/x-xyz","registered":false},{"content-type":"drawing/dwf","encoding":"base64","extensions":["dwf"],"obsolete":true,"use-instead":"x-drawing/dwf","registered":false},{"content-type":"image/bmp","friendly":{"en":"Bitmap Image File"},"encoding":"base64","extensions":["bmp"],"obsolete":true,"use-instead":"image/x-bmp","registered":false},{"content-type":"image/cgm","friendly":{"en":"Computer Graphics Metafile"},"encoding":"base64","extensions":["cgm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/cmu-raster","encoding":"base64","obsolete":true,"use-instead":"image/x-cmu-raster","registered":false},{"content-type":"image/example","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/fits","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/g3fax","friendly":{"en":"G3 Fax Image"},"encoding":"base64","extensions":["g3"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/gif","friendly":{"en":"Graphics Interchange Format"},"encoding":"base64","extensions":["gif"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"image/ief","friendly":{"en":"Image Exchange Format"},"encoding":"base64","extensions":["ief"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"image/jp2","encoding":"base64","extensions":["jp2","jpg2"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/jpeg","friendly":{"en":"JPEG Image"},"encoding":"base64","extensions":["jpeg","jpg","jpe"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"image/jpm","encoding":"base64","extensions":["jpm","jpgm"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/jpx","encoding":"base64","extensions":["jpx","jpf"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/ktx","friendly":{"en":"OpenGL Textures (KTX)"},"encoding":"base64","extensions":["ktx"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"image/naplps","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/pjpeg","docs":"Fixes a bug with IE6 and progressive JPEGs","encoding":"base64","registered":false},{"content-type":"image/png","friendly":{"en":"Portable Network Graphics (PNG)"},"encoding":"base64","extensions":["png"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/prs.btif","friendly":{"en":"BTIF"},"encoding":"base64","extensions":["btif"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/prs.pti","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/pwg-raster","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/sgi","encoding":"base64","extensions":["sgi"],"registered":false},{"content-type":"image/svg+xml","friendly":{"en":"Scalable Vector Graphics (SVG)"},"encoding":"8bit","extensions":["svg","svgz"],"xrefs":{"person":"#","uri":"#"},"registered":true},{"content-type":"image/t38","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/targa","encoding":"base64","extensions":["tga"],"obsolete":true,"use-instead":"image/x-targa","registered":false},{"content-type":"image/tiff","friendly":{"en":"Tagged Image File Format"},"encoding":"base64","extensions":["tiff","tif"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/tiff-fx","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"image/vnd.adobe.photoshop","friendly":{"en":"Photoshop Document"},"encoding":"base64","extensions":["psd"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.airzip.accelerator.azv","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.cns.inf2","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.dece.graphic","friendly":{"en":"DECE Graphic"},"encoding":"base64","extensions":["uvg","uvi","uvvg","uvvi"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.dgn","encoding":"base64","extensions":["dgn"],"obsolete":true,"use-instead":"image/x-vnd.dgn","registered":false},{"content-type":"image/vnd.djvu","friendly":{"en":"DjVu"},"encoding":"base64","extensions":["djvu","djv"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.dvb.subtitle","friendly":{"en":"Close Captioning - Subtitle"},"encoding":"base64","extensions":["sub"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.dwg","friendly":{"en":"DWG Drawing"},"encoding":"base64","extensions":["dwg"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.dxf","friendly":{"en":"AutoCAD DXF"},"encoding":"base64","extensions":["dxf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.fastbidsheet","friendly":{"en":"FastBid Sheet"},"encoding":"base64","extensions":["fbs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.fpx","friendly":{"en":"FlashPix"},"encoding":"base64","extensions":["fpx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.fst","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fst"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-mmr","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["mmr"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.fujixerox.edmics-rlc","friendly":{"en":"EDMICS 2000"},"encoding":"base64","extensions":["rlc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.globalgraphics.pgb","encoding":"base64","extensions":["pgb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.microsoft.icon","encoding":"base64","extensions":["ico"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.mix","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.mozilla.apng","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.ms-modi","friendly":{"en":"Microsoft Document Imaging Format"},"encoding":"base64","extensions":["mdi"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.ms-photo","encoding":"base64","extensions":["wdp"],"registered":false},{"content-type":"image/vnd.net-fpx","friendly":{"en":"FlashPix"},"encoding":"base64","extensions":["npx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.net.fpx","encoding":"base64","obsolete":true,"use-instead":"image/vnd.net-fpx","registered":false},{"content-type":"image/vnd.radiance","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.sealed.png","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.gif","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.sealedmedia.softseal.jpg","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.svf","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.tencent.tap","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.valve.source.texture","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.wap.wbmp","friendly":{"en":"WAP Bitamp (WBMP)"},"encoding":"base64","extensions":["wbmp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.xiff","friendly":{"en":"eXtended Image File Format (XIFF)"},"encoding":"base64","extensions":["xif"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/vnd.zbrush.pcx","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"image/webp","friendly":{"en":"WebP Image"},"encoding":"base64","extensions":["webp"],"registered":false},{"content-type":"image/x-3ds","encoding":"base64","extensions":["3ds"],"registered":false},{"content-type":"image/x-bmp","encoding":"base64","extensions":["bmp"],"registered":false},{"content-type":"image/x-cmu-raster","friendly":{"en":"CMU Image"},"encoding":"base64","extensions":["ras"],"registered":false},{"content-type":"image/x-cmx","friendly":{"en":"Corel Metafile Exchange (CMX)"},"encoding":"base64","extensions":["cmx"],"registered":false},{"content-type":"image/x-compressed-xcf","docs":"see-also:image/x-xcf","encoding":"base64","extensions":["xcfbz2","xcfgz"],"registered":false},{"content-type":"image/x-freehand","friendly":{"en":"FreeHand MX"},"encoding":"base64","extensions":["fh","fh4","fh5","fh7","fhc"],"registered":false},{"content-type":"image/x-hasselblad-3fr","encoding":"base64","extensions":["3fr"],"registered":false},{"content-type":"image/x-icon","friendly":{"en":"Icon Image"},"encoding":"base64","extensions":["ico"],"registered":false},{"content-type":"image/x-mrsid-image","encoding":"base64","extensions":["sid"],"registered":false},{"content-type":"image/x-ms-bmp","friendly":{"en":"Bitmap Image File"},"encoding":"base64","extensions":["bmp"],"obsolete":true,"registered":false},{"content-type":"image/x-paintshoppro","encoding":"base64","extensions":["psp","pspimage"],"registered":false},{"content-type":"image/x-pcx","friendly":{"en":"PCX Image"},"encoding":"base64","extensions":["pcx"],"registered":false},{"content-type":"image/x-pict","friendly":{"en":"PICT Image"},"encoding":"base64","extensions":["pct","pic"],"registered":false},{"content-type":"image/x-portable-anymap","friendly":{"en":"Portable Anymap Image"},"encoding":"base64","extensions":["pnm"],"registered":false},{"content-type":"image/x-portable-bitmap","friendly":{"en":"Portable Bitmap Format"},"encoding":"base64","extensions":["pbm"],"registered":false},{"content-type":"image/x-portable-graymap","friendly":{"en":"Portable Graymap Format"},"encoding":"base64","extensions":["pgm"],"registered":false},{"content-type":"image/x-portable-pixmap","friendly":{"en":"Portable Pixmap Format"},"encoding":"base64","extensions":["ppm"],"registered":false},{"content-type":"image/x-rgb","friendly":{"en":"Silicon Graphics RGB Bitmap"},"encoding":"base64","extensions":["rgb"],"registered":false},{"content-type":"image/x-targa","encoding":"base64","extensions":["tga"],"registered":false},{"content-type":"image/x-tga","encoding":"base64","extensions":["tga"],"registered":false},{"content-type":"image/x-vnd.dgn","encoding":"base64","extensions":["dgn"],"registered":false},{"content-type":"image/x-win-bmp","encoding":"base64","registered":false},{"content-type":"image/x-xbitmap","friendly":{"en":"X BitMap"},"encoding":"7bit","extensions":["xbm"],"registered":false},{"content-type":"image/x-xbm","encoding":"7bit","extensions":["xbm"],"registered":false},{"content-type":"image/x-xcf","encoding":"base64","extensions":["xcf"],"registered":false},{"content-type":"image/x-xpixmap","friendly":{"en":"X PixMap"},"encoding":"8bit","extensions":["xpm"],"registered":false},{"content-type":"image/x-xwindowdump","friendly":{"en":"X Window Dump"},"encoding":"base64","extensions":["xwd"],"registered":false},{"content-type":"message/CPIM","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/delivery-status","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/disposition-notification","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/example","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/external-body","encoding":"8bit","xrefs":{"rfc":"#"},"registered":true},{"content-type":"message/feedback-report","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/global","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/global-delivery-status","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/global-disposition-notification","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/global-headers","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/http","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/imdn+xml","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/news","encoding":"8bit","obsolete":true,"xrefs":{"rfc":"#","person":"#","template":"#","notes":"#"},"registered":true},{"content-type":"message/partial","encoding":"8bit","xrefs":{"rfc":"#"},"registered":true},{"content-type":"message/rfc822","friendly":{"en":"Email Message"},"encoding":"8bit","extensions":["eml","mime"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"message/s-http","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/sip","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/sipfrag","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/tracking-status","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"message/vnd.si.simp","encoding":"base64","obsolete":true,"xrefs":{"person":"#","template":"#","notes":"#"},"registered":true},{"content-type":"message/vnd.wfa.wsc","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/example","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"model/iges","friendly":{"en":"Initial Graphics Exchange Specification (IGES)"},"encoding":"base64","extensions":["igs","iges"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/mesh","friendly":{"en":"Mesh Data Type"},"encoding":"base64","extensions":["msh","mesh","silo"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"model/vnd.collada+xml","friendly":{"en":"COLLADA"},"encoding":"base64","extensions":["dae"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.dwf","friendly":{"en":"Autodesk Design Web Format (DWF)"},"encoding":"base64","extensions":["dwf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.flatland.3dml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.gdl","friendly":{"en":"Geometric Description Language (GDL)"},"encoding":"base64","extensions":["gdl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.gs-gdl","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.gtw","friendly":{"en":"Gen-Trix Studio"},"encoding":"base64","extensions":["gtw"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.moml+xml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.mts","friendly":{"en":"Virtue MTS"},"encoding":"base64","extensions":["mts"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.opengex","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.parasolid.transmit.binary","encoding":"base64","extensions":["x_b","xmt_bin"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.parasolid.transmit.text","encoding":"quoted-printable","extensions":["x_t","xmt_txt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.valve.source.compiled-map","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vnd.vtu","friendly":{"en":"Virtue VTU"},"encoding":"base64","extensions":["vtu"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/vrml","friendly":{"en":"Virtual Reality Modeling Language"},"encoding":"base64","extensions":["wrl","vrml"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"model/x3d+binary","encoding":"base64","extensions":["x3db","x3dbz"],"registered":false},{"content-type":"model/x3d+fastinfoset","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/x3d+vrml","encoding":"base64","extensions":["x3dv","x3dvz"],"registered":false},{"content-type":"model/x3d+xml","encoding":"base64","extensions":["x3d","x3dz"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"model/x3d-vrml","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"multipart/alternative","encoding":"8bit","xrefs":{"rfc":"#"},"registered":true},{"content-type":"multipart/appledouble","encoding":"8bit","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"multipart/byteranges","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"multipart/digest","encoding":"8bit","xrefs":{"rfc":"#"},"registered":true},{"content-type":"multipart/encrypted","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"multipart/example","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"multipart/form-data","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"multipart/header-set","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"multipart/mixed","encoding":"8bit","xrefs":{"rfc":"#"},"registered":true},{"content-type":"multipart/parallel","encoding":"8bit","xrefs":{"rfc":"#"},"registered":true},{"content-type":"multipart/related","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"multipart/report","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"multipart/signed","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"multipart/voice-message","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"multipart/x-gzip","encoding":"base64","registered":false},{"content-type":"multipart/x-mixed-replace","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"multipart/x-parallel","encoding":"base64","obsolete":true,"use-instead":"multipart/parallel","registered":false},{"content-type":"multipart/x-tar","encoding":"base64","registered":false},{"content-type":"multipart/x-ustar","encoding":"base64","registered":false},{"content-type":"multipart/x-www-form-urlencoded","encoding":"base64","obsolete":true,"use-instead":"application/x-www-form-urlencoded","registered":false},{"content-type":"multipart/x-zip","encoding":"base64","registered":false},{"content-type":"text/1d-interleaved-parityfec","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/cache-manifest","encoding":"quoted-printable","extensions":["appcache","manifest"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/calendar","friendly":{"en":"iCalendar"},"encoding":"quoted-printable","extensions":["ics","ifb"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/comma-separated-values","encoding":"8bit","extensions":["csv"],"obsolete":true,"use-instead":"text/csv","registered":false},{"content-type":"text/css","friendly":{"en":"Cascading Style Sheets (CSS)"},"encoding":"8bit","extensions":["css"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/csv","friendly":{"en":"Comma-Separated Values"},"encoding":"8bit","extensions":["csv"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/csv-schema","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/directory","encoding":"quoted-printable","obsolete":true,"xrefs":{"rfc":"#","template":"#","notes":"#"},"registered":true},{"content-type":"text/dns","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/ecmascript","encoding":"quoted-printable","obsolete":true,"use-instead":"application/ecmascript","xrefs":{"rfc":"#","template":"#","notes":"#"},"registered":true},{"content-type":"text/encaprtp","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/enriched","encoding":"quoted-printable","xrefs":{"rfc":"#"},"registered":true},{"content-type":"text/example","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/fwdred","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/grammar-ref-list","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/html","friendly":{"en":"HyperText Markup Language (HTML)"},"encoding":"8bit","extensions":["html","htm","htmlx","shtml","htx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/javascript","encoding":"quoted-printable","extensions":["js"],"obsolete":true,"use-instead":"application/javascript","xrefs":{"rfc":"#","template":"#","notes":"#"},"registered":true},{"content-type":"text/jcr-cnd","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/markdown","encoding":"quoted-printable","xrefs":{"draft":"#","template":"#"},"registered":true},{"content-type":"text/mizar","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/n3","friendly":{"en":"Notation3"},"encoding":"quoted-printable","extensions":["n3"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/parameters","encoding":"quoted-printable","xrefs":{"draft":"#","template":"#"},"registered":true},{"content-type":"text/parityfec","encoding":"quoted-printable","xrefs":{"rfc":"#"},"registered":true},{"content-type":"text/plain","friendly":{"en":"Text File"},"encoding":"quoted-printable","extensions":["txt","asc","c","cc","h","hh","cpp","hpp","dat","hlp","conf","def","doc","in","list","log","markdown","md","rst","text","textile"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"text/provenance-notation","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/prs.fallenstein.rst","encoding":"quoted-printable","extensions":["rst"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/prs.lines.tag","friendly":{"en":"PRS Lines Tag"},"encoding":"quoted-printable","extensions":["dsc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/raptorfec","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/RED","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/rfc822-headers","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/richtext","friendly":{"en":"Rich Text Format (RTF)"},"encoding":"8bit","extensions":["rtx"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"text/rtf","encoding":"8bit","extensions":["rtf"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/rtp-enc-aescm128","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/rtploopback","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/rtx","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/sgml","friendly":{"en":"Standard Generalized Markup Language (SGML)"},"encoding":"quoted-printable","extensions":["sgml","sgm"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/t140","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/tab-separated-values","friendly":{"en":"Tab Separated Values"},"encoding":"quoted-printable","extensions":["tsv"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/troff","friendly":{"en":"troff"},"encoding":"8bit","extensions":["t","tr","roff","troff","man","me","ms"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/turtle","friendly":{"en":"Turtle (Terse RDF Triple Language)"},"encoding":"quoted-printable","extensions":["ttl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/ulpfec","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/uri-list","friendly":{"en":"URI Resolution Services"},"encoding":"quoted-printable","extensions":["uri","uris","urls"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/vcard","encoding":"quoted-printable","extensions":["vcard"],"xrefs":{"rfc":"#","template":"#"},"registered":true,"signature":true},{"content-type":"text/vnd.a","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.abc","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.curl","friendly":{"en":"Curl - Applet"},"encoding":"quoted-printable","extensions":["curl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.curl.dcurl","friendly":{"en":"Curl - Detached Applet"},"encoding":"quoted-printable","extensions":["dcurl"],"registered":false},{"content-type":"text/vnd.curl.mcurl","friendly":{"en":"Curl - Manifest File"},"encoding":"quoted-printable","extensions":["mcurl"],"registered":false},{"content-type":"text/vnd.curl.scurl","friendly":{"en":"Curl - Source Code"},"encoding":"quoted-printable","extensions":["scurl"],"registered":false},{"content-type":"text/vnd.debian.copyright","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.DMClientScript","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.dvb.subtitle","encoding":"quoted-printable","extensions":["sub"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.esmertec.theme-descriptor","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.flatland.3dml","encoding":"quoted-printable","obsolete":true,"use-instead":"model/vnd.flatland.3dml","registered":false},{"content-type":"text/vnd.fly","friendly":{"en":"mod_fly / fly.cgi"},"encoding":"quoted-printable","extensions":["fly"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.fmi.flexstor","friendly":{"en":"FLEXSTOR"},"encoding":"quoted-printable","extensions":["flx"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.graphviz","friendly":{"en":"Graphviz"},"encoding":"quoted-printable","extensions":["gv"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.in3d.3dml","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["3dml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.in3d.spot","friendly":{"en":"In3D - 3DML"},"encoding":"quoted-printable","extensions":["spot"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.IPTC.NewsML","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.IPTC.NITF","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.latex-z","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.motorola.reflex","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.ms-mediapackage","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.net2phone.commcenter.command","encoding":"quoted-printable","extensions":["ccc"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.radisys.msml-basic-layout","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/vnd.si.uricatalogue","encoding":"quoted-printable","obsolete":true,"xrefs":{"person":"#","template":"#","notes":"#"},"registered":true},{"content-type":"text/vnd.sun.j2me.app-descriptor","friendly":{"en":"J2ME App Descriptor"},"encoding":"8bit","extensions":["jad"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.trolltech.linguist","encoding":"quoted-printable","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.wap.si","encoding":"quoted-printable","extensions":["si"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.wap.sl","encoding":"quoted-printable","extensions":["sl"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.wap.wml","friendly":{"en":"Wireless Markup Language (WML)"},"encoding":"quoted-printable","extensions":["wml"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/vnd.wap.wmlscript","friendly":{"en":"Wireless Markup Language Script (WMLScript)"},"encoding":"quoted-printable","extensions":["wmls"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"text/x-asm","friendly":{"en":"Assembler Source File"},"encoding":"quoted-printable","extensions":["asm","s"],"registered":false},{"content-type":"text/x-c","friendly":{"en":"C Source File"},"encoding":"quoted-printable","extensions":["c","cc","cpp","cxx","dic","h","hh"],"registered":false},{"content-type":"text/x-coffescript","encoding":"8bit","extensions":["coffee"],"registered":false},{"content-type":"text/x-component","encoding":"8bit","extensions":["htc"],"registered":false},{"content-type":"text/x-fortran","friendly":{"en":"Fortran Source File"},"encoding":"quoted-printable","extensions":["f","f77","f90","for"],"registered":false},{"content-type":"text/x-java-source","friendly":{"en":"Java Source File"},"encoding":"quoted-printable","extensions":["java"],"registered":false},{"content-type":"text/x-nfo","encoding":"quoted-printable","extensions":["nfo"],"registered":false},{"content-type":"text/x-opml","encoding":"quoted-printable","extensions":["opml"],"registered":false},{"content-type":"text/x-pascal","friendly":{"en":"Pascal Source File"},"encoding":"quoted-printable","extensions":["p","pas"],"registered":false},{"content-type":"text/x-rtf","encoding":"8bit","extensions":["rtf"],"obsolete":true,"use-instead":"text/rtf","registered":false},{"content-type":"text/x-setext","friendly":{"en":"Setext"},"encoding":"quoted-printable","extensions":["etx"],"registered":false},{"content-type":"text/x-sfv","encoding":"quoted-printable","extensions":["sfv"],"registered":false},{"content-type":"text/x-uuencode","friendly":{"en":"UUEncode"},"encoding":"quoted-printable","extensions":["uu"],"registered":false},{"content-type":"text/x-vcalendar","friendly":{"en":"vCalendar"},"encoding":"8bit","extensions":["vcs"],"registered":false},{"content-type":"text/x-vcard","friendly":{"en":"vCard"},"encoding":"8bit","extensions":["vcf"],"registered":false,"signature":true},{"content-type":"text/x-vnd.flatland.3dml","encoding":"quoted-printable","obsolete":true,"use-instead":"model/vnd.flatland.3dml","registered":false},{"content-type":"text/x-yaml","encoding":"8bit","extensions":["yaml","yml"],"registered":false},{"content-type":"text/xml","encoding":"8bit","extensions":["xml","dtd"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"text/xml-external-parsed-entity","encoding":"quoted-printable","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/1d-interleaved-parityfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/3gpp","friendly":{"en":"3GP"},"encoding":"base64","extensions":["3gp","3gpp"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/3gpp-tt","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/3gpp2","friendly":{"en":"3GP2"},"encoding":"base64","extensions":["3g2","3gpp2"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/BMPEG","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/BT656","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/CelB","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/dl","encoding":"base64","extensions":["dl"],"obsolete":true,"use-instead":"video/x-dl","registered":false},{"content-type":"video/DV","encoding":"base64","extensions":["dv"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/encaprtp","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/example","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/gl","encoding":"base64","extensions":["gl"],"obsolete":true,"use-instead":"video/x-gl","registered":false},{"content-type":"video/H261","friendly":{"en":"H.261"},"encoding":"base64","extensions":["h261"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/H263","friendly":{"en":"H.263"},"encoding":"base64","extensions":["h263"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/H263-1998","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/H263-2000","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/H264","friendly":{"en":"H.264"},"encoding":"base64","extensions":["h264"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/H264-RCDO","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/H264-SVC","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/iso.segment","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/JPEG","friendly":{"en":"JPGVideo"},"encoding":"base64","extensions":["jpgv"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/jpeg2000","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/jpm","friendly":{"en":"JPEG 2000 Compound Image File Format"},"encoding":"base64","extensions":["jpgm","jpm"],"registered":false},{"content-type":"video/MJ2","friendly":{"en":"Motion JPEG 2000"},"encoding":"base64","extensions":["mj2","mjp2"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/MP1S","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/MP2P","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/MP2T","encoding":"base64","extensions":["ts"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/mp4","friendly":{"en":"MPEG-4 Video"},"encoding":"base64","extensions":["mp4","mpg4","f4v","f4p","mp4v"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/MP4V-ES","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/mpeg","friendly":{"en":"MPEG Video"},"encoding":"base64","extensions":["mp2","mp3g","mpe","mpeg","mpg","m1v","m2v"],"xrefs":{"rfc":"#"},"registered":true},{"content-type":"video/mpeg4-generic","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/MPV","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/nv","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/ogg","friendly":{"en":"Ogg Video"},"encoding":"base64","extensions":["ogg","ogv"],"xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/parityfec","encoding":"base64","xrefs":{"rfc":"#"},"registered":true},{"content-type":"video/pointer","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/quicktime","friendly":{"en":"Quicktime Video"},"encoding":"base64","extensions":["qt","mov"],"xrefs":{"rfc":"#","person":"#","template":"#"},"registered":true},{"content-type":"video/raptorfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/raw","encoding":"base64","xrefs":{"rfc":"#"},"registered":true},{"content-type":"video/rtp-enc-aescm128","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/rtploopback","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/rtx","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/SMPTE292M","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/ulpfec","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/vc1","encoding":"base64","xrefs":{"rfc":"#","template":"#"},"registered":true},{"content-type":"video/vnd.CCTV","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.dece.hd","friendly":{"en":"DECE High Definition Video"},"encoding":"base64","extensions":["uvh","uvvh"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.dece.mobile","friendly":{"en":"DECE Mobile Video"},"encoding":"base64","extensions":["uvm","uvvm"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.dece.mp4","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.dece.pd","friendly":{"en":"DECE PD Video"},"encoding":"base64","extensions":["uvp","uvvp"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.dece.sd","friendly":{"en":"DECE SD Video"},"encoding":"base64","extensions":["uvs","uvvs"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.dece.video","friendly":{"en":"DECE Video"},"encoding":"base64","extensions":["uvv","uvvv"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.directv.mpeg","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.directv.mpeg-tts","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.dlna.mpeg-tts","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.dvb.file","encoding":"base64","extensions":["dvb"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.fvt","friendly":{"en":"FAST Search & Transfer ASA"},"encoding":"base64","extensions":["fvt"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.hns.video","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-1010","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.iptvforum.1dparityfec-2005","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-1010","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.iptvforum.2dparityfec-2005","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.iptvforum.ttsavc","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.iptvforum.ttsmpeg2","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.motorola.video","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.motorola.videop","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.mpegurl","friendly":{"en":"MPEG Url"},"encoding":"8bit","extensions":["mxu","m4u"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.ms-playready.media.pyv","friendly":{"en":"Microsoft PlayReady Ecosystem Video"},"encoding":"base64","extensions":["pyv"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.nokia.interleaved-multimedia","encoding":"base64","extensions":["nim"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.nokia.videovoip","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.objectvideo","encoding":"base64","extensions":["mp4","m4v"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.radgamettools.bink","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.radgamettools.smacker","encoding":"base64","xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.sealed.mpeg1","encoding":"base64","extensions":["s11"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.sealed.mpeg4","encoding":"base64","extensions":["smpg","s14"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.sealed.swf","encoding":"base64","extensions":["sswf","ssw"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.sealedmedia.softseal.mov","encoding":"base64","extensions":["smov","smo","s1q"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.uvvu.mp4","friendly":{"en":"DECE MP4"},"encoding":"base64","extensions":["uvu","uvvu"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/vnd.vivo","friendly":{"en":"Vivo"},"encoding":"base64","extensions":["viv","vivo"],"xrefs":{"person":"#","template":"#"},"registered":true},{"content-type":"video/VP8","encoding":"base64","xrefs":{"draft":"#","template":"#"},"registered":true},{"content-type":"video/webm","friendly":{"en":"Open Web Media Project - Video"},"encoding":"base64","extensions":["webm"],"registered":false},{"content-type":"video/x-dl","encoding":"base64","extensions":["dl"],"registered":false},{"content-type":"video/x-dv","encoding":"base64","extensions":["dv"],"obsolete":true,"use-instead":"video/DV","registered":false},{"content-type":"video/x-f4v","friendly":{"en":"Flash Video"},"encoding":"base64","extensions":["f4v"],"registered":false},{"content-type":"video/x-fli","friendly":{"en":"FLI/FLC Animation Format"},"encoding":"base64","extensions":["fli"],"registered":false},{"content-type":"video/x-flv","friendly":{"en":"Flash Video"},"encoding":"base64","extensions":["flv"],"registered":false},{"content-type":"video/x-gl","encoding":"base64","extensions":["gl"],"registered":false},{"content-type":"video/x-ivf","encoding":"base64","extensions":["ivf"],"registered":false},{"content-type":"video/x-m4v","friendly":{"en":"M4v"},"encoding":"base64","extensions":["m4v"],"registered":false},{"content-type":"video/x-matroska","encoding":"base64","extensions":["mk3d","mks","mkv"],"registered":false},{"content-type":"video/x-mng","encoding":"base64","extensions":["mng"],"registered":false},{"content-type":"video/x-motion-jpeg","encoding":"base64","extensions":["mjpg","mjpeg"],"registered":false},{"content-type":"video/x-ms-asf","friendly":{"en":"Microsoft Advanced Systems Format (ASF)"},"encoding":"base64","extensions":["asf","asx"],"registered":false},{"content-type":"video/x-ms-vob","encoding":"base64","extensions":["vob"],"registered":false},{"content-type":"video/x-ms-wm","friendly":{"en":"Microsoft Windows Media"},"encoding":"base64","extensions":["wm"],"registered":false},{"content-type":"video/x-ms-wmv","friendly":{"en":"Microsoft Windows Media Video"},"encoding":"base64","extensions":["wmv"],"registered":false},{"content-type":"video/x-ms-wmx","friendly":{"en":"Microsoft Windows Media Audio/Video Playlist"},"encoding":"base64","extensions":["wmx"],"registered":false},{"content-type":"video/x-ms-wvx","friendly":{"en":"Microsoft Windows Media Video Playlist"},"encoding":"base64","extensions":["wvx"],"registered":false},{"content-type":"video/x-msvideo","friendly":{"en":"Audio Video Interleave (AVI)"},"encoding":"base64","extensions":["avi"],"registered":false},{"content-type":"video/x-sgi-movie","friendly":{"en":"SGI Movie"},"encoding":"base64","extensions":["movie"],"registered":false},{"content-type":"video/x-smv","encoding":"base64","extensions":["smv"],"registered":false},{"content-type":"x-chemical/x-pdb","encoding":"base64","extensions":["pdb"],"registered":false},{"content-type":"x-chemical/x-xyz","encoding":"base64","extensions":["xyz"],"registered":false},{"content-type":"x-conference/x-cooltalk","friendly":{"en":"CoolTalk"},"encoding":"base64","extensions":["ice"],"registered":false},{"content-type":"x-drawing/dwf","encoding":"base64","extensions":["dwf"],"registered":false},{"content-type":"x-world/x-vrml","encoding":"base64","extensions":["wrl","vrml"],"registered":false}] mime-types-data-3.2015.1120/data/mime.encoding.column0000644000175000017500000003354112627041214023325 0ustar balasankarcbalasankarcbase64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit 8bit 8bit base64 8bit base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 7bit 7bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 7bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 7bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit 8bit base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 8bit base64 8bit 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit 8bit base64 8bit base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 7bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 8bit 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 7bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 7bit 7bit base64 8bit base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 8bit 8bit 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 quoted-printable base64 base64 base64 base64 base64 base64 base64 base64 8bit 8bit base64 8bit base64 base64 base64 base64 8bit 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 quoted-printable quoted-printable quoted-printable 8bit 8bit 8bit quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable 8bit quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable 8bit 8bit quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable 8bit quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable 8bit quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable 8bit 8bit quoted-printable quoted-printable quoted-printable quoted-printable quoted-printable 8bit quoted-printable quoted-printable quoted-printable 8bit 8bit quoted-printable 8bit 8bit quoted-printable base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 8bit base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 base64 mime-types-data-3.2015.1120/data/mime.xrefs.column0000644000175000017500000026107312627041214022671 0ustar balasankarcbalasankarcrfc^rfc6015|template^application/1d-interleaved-parityfec person^Ozgur_Oyman^ThreeGPP|template^application/3gpdash-qoe-report+xml person^John_M_Meredith|template^application/3gpp-ims+xml person^ASAM^Thomas_Thomsen|template^application/A2L - - person^Ehud_Shapiro|template^application/activemessage rfc^rfc7285|template^application/alto-costmap+json rfc^rfc7285|template^application/alto-costmapfilter+json rfc^rfc7285|template^application/alto-directory+json rfc^rfc7285|template^application/alto-endpointcost+json rfc^rfc7285|template^application/alto-endpointcostparams+json rfc^rfc7285|template^application/alto-endpointprop+json rfc^rfc7285|template^application/alto-endpointpropparams+json rfc^rfc7285|template^application/alto-error+json rfc^rfc7285|template^application/alto-networkmap+json rfc^rfc7285|template^application/alto-networkmapfilter+json person^ASAM^Thomas_Thomsen|template^application/AML person^Nathaniel_Borenstein|template^application/andrew-inset - person^Patrik_Faltstrom|template^application/applefile - person^ASAM^Thomas_Thomsen|template^application/ATF person^ASAM^Thomas_Thomsen|template^application/ATFX rfc^rfc4287^rfc5023|template^application/atom+xml rfc^rfc5023|template^application/atomcat+xml rfc^rfc6721|template^application/atomdeleted+xml person^Nathaniel_Borenstein|template^application/atomicmail rfc^rfc5023|template^application/atomsvc+xml person^ASAM^Thomas_Thomsen|template^application/ATXML rfc^rfc4745|template^application/auth-policy+xml person^ASHRAE^Dave_Robin|template^application/bacnet-xdd+zip rfc^rfc2442|template^application/batch-SMTP rfc^rfc3080|template^application/beep+xml - rfc^rfc7265|template^application/calendar+json rfc^rfc6321|template^application/calendar+xml rfc^rfc6910|template^application/call-completion rfc^rfc1895|template^application/CALS-1840 - rfc^rfc7049|template^application/cbor rfc^rfc6503|template^application/ccmp+xml rfc^rfc4267|template^application/ccxml+xml person^ASAM^Thomas_Thomsen|template^application/CDFX+XML rfc^rfc6208|template^application/cdmi-capability rfc^rfc6208|template^application/cdmi-container rfc^rfc6208|template^application/cdmi-domain rfc^rfc6208|template^application/cdmi-object rfc^rfc6208|template^application/cdmi-queue draft^RFC-ietf-cdni-media-type-06|template^application/cdni person^ASAM^Thomas_Thomsen|template^application/CEA person^Gottfried_Zimmermann|template^application/cea-2018+xml rfc^rfc4708|template^application/cellml+xml rfc^rfc6230|template^application/cfw - rfc^rfc7193|template^application/cms rfc^rfc3367|template^application/cnrp+xml rfc^rfc7390|template^application/coap-group+json person^David_Glazer|template^application/commonground rfc^rfc4575|template^application/conference-info+xml rfc^rfc3880|template^application/cpl+xml rfc^rfc7030|template^application/csrattrs person^Ecma_International_Helpdesk|template^application/csta+xml person^Ecma_International_Helpdesk|template^application/CSTAdata+xml person^W3C^Ivan_Herman|template^application/csvm+json - person^Donald_E._Eastlake_3rd|template^application/cybercash person^Thomas_Stockhammer^ISO-IEC_JTC1|template^application/dash+xml person^David_Furbeck|template^application/dashdelta rfc^rfc4709|template^application/davmount+xml person^Larry_Campbell|template^application/dca-rft person^ASAM^Thomas_Thomsen|template^application/DCD person^Larry_Campbell|template^application/dec-dx rfc^rfc4235|template^application/dialog-info+xml rfc^rfc3240|template^application/dicom person^ASAM^Thomas_Thomsen|template^application/DII person^ASAM^Thomas_Thomsen|template^application/DIT rfc^rfc4027|template^application/dns - - rfc^rfc6063|template^application/dskpp+xml rfc^rfc5698|template^application/dssc+der rfc^rfc5698|template^application/dssc+xml rfc^rfc3029|template^application/dvcs - rfc^rfc4329|template^application/ecmascript rfc^rfc1767|template^application/EDI-consent rfc^rfc1767|template^application/EDI-X12 rfc^rfc1767|template^application/EDIFACT person^W3C|uri^http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration person^W3C^Kazuyuki_Ashimura|template^application/emotionml+xml rfc^rfc6849|template^application/encaprtp rfc^rfc5730|template^application/epp+xml person^International_Digital_Publishing_Forum^William_McCoy|template^application/epub+zip person^Steve_Katz|template^application/eshop rfc^rfc4735|template^application/example - person^W3C|uri^http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration 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 rfc^rfc3073|template^application/font-tdpfr person^W3C|template^application/font-woff - rfc^rfc6230|template^application/framework-attributes+xml - - - - - rfc^rfc6713|template^application/gzip rfc^rfc4573|template^application/H224 rfc^rfc5985|template^application/held+xml - rfc^rfc7230|template^application/http person^Michael_Domino|template^application/hyperstudio - rfc^rfc5408|template^application/ibe-key-request+xml rfc^rfc5408|template^application/ibe-pkg-reply+xml rfc^rfc5408|template^application/ibe-pp-data person^Curtis_Parks|template^application/iges rfc^rfc3994|template^application/im-iscomposing+xml - rfc^rfc2652|template^application/index rfc^rfc2652|template^application/index.cmd rfc^rfc2652|template^application/index-obj rfc^rfc2652|template^application/index.response rfc^rfc2652|template^application/index.vnd person^Kazuyuki_Ashimura|template^application/inkml+xml rfc^rfc2935|template^application/IOTP rfc^rfc5655|template^application/ipfix rfc^rfc2910|template^application/ipp rfc^rfc3204|template^application/ISUP person^W3C^ITS-IG-W3C|template^application/its+xml - - - rfc^rfc4329|template^application/javascript 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 - 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^W3C^Ivan_Herman|template^application/ld+json rfc^rfc6690|template^application/link-format rfc^rfc7200|template^application/load-control+xml rfc^rfc5222|template^application/lost+xml rfc^rfc6739|template^application/lostsync+xml - person^ASAM^Thomas_Thomsen|template^application/LXF person^Patrik_Faltstrom|template^application/mac-binhex40 - - person^Paul_Lindner|template^application/macwriteii rfc^rfc6207|template^application/mads+xml rfc^rfc2220|template^application/marc rfc^rfc6207|template^application/marcxml+xml - person^Wolfram|template^application/mathematica - person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html person^W3C|uri^http://www.w3.org/TR/MathML3/appendixb.html person^ThreeGPP|template^application/mbms-associated-procedure-description+xml person^ThreeGPP|template^application/mbms-deregister+xml person^ThreeGPP|template^application/mbms-envelope+xml person^ThreeGPP|template^application/mbms-msk+xml person^ThreeGPP|template^application/mbms-msk-response+xml person^ThreeGPP|template^application/mbms-protection-description+xml person^ThreeGPP|template^application/mbms-reception-report+xml person^ThreeGPP|template^application/mbms-register+xml person^ThreeGPP|template^application/mbms-register-response+xml person^ThreeGPP^Eric_Turcotte|template^application/mbms-schedule+xml person^ThreeGPP|template^application/mbms-user-service-description+xml rfc^rfc4155|template^application/mbox rfc^rfc6796|template^application/media-policy-dataset+xml rfc^rfc5168|template^application/media_control+xml rfc^rfc5022|template^application/mediaservercontrol+xml rfc^rfc7396|template^application/merge-patch+json - rfc^rfc5854|template^application/metalink4+xml rfc^rfc6207|template^application/mets+xml person^ASAM^Thomas_Thomsen|template^application/MF4 rfc^rfc3830|template^application/mikey rfc^rfc6207|template^application/mods+xml rfc^rfc1848|template^application/moss-keys rfc^rfc1848|template^application/moss-signature rfc^rfc1848|template^application/mosskey-data rfc^rfc1848|template^application/mosskey-request person^David_Singer|rfc^rfc6381|template^application/mp21 rfc^rfc4337^rfc6381|template^application/mp4 rfc^rfc3640|template^application/mpeg4-generic rfc^rfc4337|template^application/mpeg4-iod rfc^rfc4337|template^application/mpeg4-iod-xmt rfc^rfc6917|template^application/mrb-consumer+xml rfc^rfc6917|template^application/mrb-publish+xml rfc^rfc6231|template^application/msc-ivr+xml rfc^rfc6505|template^application/msc-mixer+xml person^Paul_Lindner|template^application/msword rfc^rfc4539|template^application/mxf rfc^rfc4707|template^application/nasdata - rfc^rfc5537|template^application/news-checkgroups rfc^rfc5537|template^application/news-groupinfo - rfc^rfc5537|template^application/news-transmission rfc^rfc6787|template^application/nlsml+xml person^Michael_Hammer|template^application/nss rfc^rfc6960|template^application/ocsp-request rfc^rfc6960|template^application/ocsp-response rfc^rfc2045^rfc2046|template^application/octet-stream rfc^rfc2045^rfc2046|template^application/ODA person^ASAM^Thomas_Thomsen|template^application/ODX rfc^rfc4839|template^application/oebps-package+xml rfc^rfc5334|template^application/ogg - - person^Ecma_International_Helpdesk|template^application/oxps rfc^rfc6940|template^application/p2p-overlay+xml rfc^rfc5109 rfc^rfc5261|template^application/patch-ops-error+xml rfc^rfc3778|template^application/pdf person^ASAM^Thomas_Thomsen|template^application/PDX rfc^rfc3156|template^application/pgp-encrypted rfc^rfc3156 rfc^rfc3156|template^application/pgp-signature - rfc^rfc3863|template^application/pidf+xml rfc^rfc5262|template^application/pidf-diff+xml rfc^rfc5967|template^application/pkcs10 person^IETF|template^application/pkcs12 rfc^rfc5751^rfc7114|template^application/pkcs7-mime rfc^rfc5751|template^application/pkcs7-signature rfc^rfc5958|template^application/pkcs8 rfc^rfc5877|template^application/pkix-attr-cert rfc^rfc2585|template^application/pkix-cert rfc^rfc2585|template^application/pkix-crl rfc^rfc6066|template^application/pkix-pkipath rfc^rfc2510|template^application/pkixcmp rfc^rfc4267|template^application/pls+xml rfc^rfc4354|template^application/poc-settings+xml rfc^rfc2045^rfc2046|template^application/postscript - - person^W3C^Ivan_Herman|template^application/provenance+xml person^Harald_T._Alvestrand|template^application/prs.alvestrand.titrax-sheet person^Khemchart_Rungchavalnont|template^application/prs.cww person^Giulio_Zambon|template^application/prs.hpub+zip person^Jay_Doggett|template^application/prs.nprend person^Bill_Janssen|template^application/prs.plucker person^Toby_Inkster|template^application/prs.rdf-xml-crypt person^Maik_Stührenberg|template^application/prs.xsf+xml rfc^rfc6030|template^application/pskc+xml rfc^rfc3204|template^application/QSIG - rfc^rfc6682|template^application/raptorfec rfc^rfc7483|template^application/rdap+json rfc^rfc3870|template^application/rdf+xml rfc^rfc3680|template^application/reginfo+xml template^application/relax-ng-compact-syntax|uri^http://www.jtc1sc34.org/repository/0661.pdf person^Marshall_Rose|rfc^rfc1486|template^application/remote-printing - rfc^rfc7071|template^application/reputon+json rfc^rfc4826|template^application/resource-lists+xml rfc^rfc5362|template^application/resource-lists-diff+xml draft^RFC-iab-xml2rfcv2-02|template^application/rfc+xml person^Nick_Smith|template^application/riscos rfc^rfc4662|template^application/rlmi+xml rfc^rfc4826|template^application/rls-services+xml rfc^rfc6493|template^application/rpki-ghostbusters rfc^rfc6481|template^application/rpki-manifest rfc^rfc6481|template^application/rpki-roa rfc^rfc6492|template^application/rpki-updown - - person^Paul_Lindner|template^application/rtf rfc^rfc6849|template^application/rtploopback rfc^rfc4588|template^application/rtx person^OASIS_Security_Services_Technical_Committee_SSTC|template^application/samlassertion+xml person^OASIS_Security_Services_Technical_Committee_SSTC|template^application/samlmetadata+xml rfc^rfc3823|template^application/sbml+xml person^SIS^Oskar_Jonsson|template^application/scaip+xml rfc^rfc7644|template^application/scim+json rfc^rfc5055|template^application/scvp-cv-request rfc^rfc5055|template^application/scvp-cv-response rfc^rfc5055|template^application/scvp-vp-request rfc^rfc5055|template^application/scvp-vp-response rfc^rfc4566|template^application/sdp person^Robby_Simpson^ZigBee|template^application/sep+xml person^Robby_Simpson^ZigBee|template^application/sep-exi person^ThreeGPP^Frederic_Firmin|template^application/session-info - person^Brian_Korver|template^application/set-payment person^Brian_Korver|template^application/set-payment-initiation person^Brian_Korver|template^application/set-registration person^Brian_Korver|template^application/set-registration-initiation rfc^rfc1874|template^application/SGML person^Paul_Grosso|template^application/sgml-open-catalog rfc^rfc4194|template^application/shf+xml rfc^rfc5228|template^application/sieve rfc^rfc4661|template^application/simple-filter+xml rfc^rfc3842|template^application/simple-message-summary person^ThreeGPP|template^application/simpleSymbolContainer - person^Terry_Crowley|template^application/slate notes^- OBSOLETED in favor of application/smil+xml|rfc^rfc4536|template^application/smil rfc^rfc4536|template^application/smil+xml rfc^rfc6597|template^application/smpte336m person^ITU-T_ASN.1_Rapporteur|template^application/soap+fastinfoset rfc^rfc3902|template^application/soap+xml - person^W3C|uri^http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType person^W3C|uri^http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime rfc^rfc3910|template^application/spirits-event+xml rfc^rfc6922|template^application/sql rfc^rfc4267|template^application/srgs rfc^rfc4267|template^application/srgs+xml rfc^rfc6207|template^application/sru+xml - rfc^rfc4267|template^application/ssml+xml - rfc^rfc5934|template^application/tamp-apex-update rfc^rfc5934|template^application/tamp-apex-update-confirm rfc^rfc5934|template^application/tamp-community-update rfc^rfc5934|template^application/tamp-community-update-confirm rfc^rfc5934|template^application/tamp-error rfc^rfc5934|template^application/tamp-sequence-adjust rfc^rfc5934|template^application/tamp-sequence-adjust-confirm rfc^rfc5934|template^application/tamp-status-query rfc^rfc5934|template^application/tamp-status-response rfc^rfc5934|template^application/tamp-update rfc^rfc5934|template^application/tamp-update-confirm rfc^rfc6129|template^application/tei+xml rfc^rfc5941|template^application/thraud+xml rfc^rfc3161|template^application/timestamp-query rfc^rfc3161|template^application/timestamp-reply 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 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 - rfc^rfc2122|template^application/vemmi - person^Frederic_Firmin|template^application/vnd.3gpp-prose+xml person^Frederic_Firmin|template^application/vnd.3gpp-prose-pc3ch+xml person^Frederic_Firmin|template^application/vnd.3gpp.access-transfer-events+xml person^John_M_Meredith|template^application/vnd.3gpp.bsf+xml person^Frederic_Firmin|template^application/vnd.3gpp.mid-call+xml person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-large person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-small person^John_M_Meredith|template^application/vnd.3gpp.pic-bw-var person^John_M_Meredith|template^application/vnd.3gpp.sms person^Frederic_Firmin|template^application/vnd.3gpp.srvcc-ext+xml person^Frederic_Firmin|template^application/vnd.3gpp.SRVCC-info+xml person^Frederic_Firmin|template^application/vnd.3gpp.state-and-event-info+xml person^Frederic_Firmin|template^application/vnd.3gpp.ussd+xml person^Andy_Dryden|template^application/vnd.3gpp2.bcmcsinfo+xml person^AC_Mahendran|template^application/vnd.3gpp2.sms person^AC_Mahendran|template^application/vnd.3gpp2.tcap person^Michael_OBrien|template^application/vnd.3M.Post-it-Notes person^Steve_Leow|template^application/vnd.accpac.simply.aso person^Steve_Leow|template^application/vnd.accpac.simply.imp person^Dovid_Lubin|template^application/vnd-acucobol person^Dovid_Lubin|template^application/vnd.acucorp - person^Henrik_Andersson|template^application/vnd.adobe.flash-movie person^Chris_Solc|template^application/vnd.adobe.formscentral.fcdt person^Robert_Brambley^Steven_Heintz|template^application/vnd.adobe.fxp person^Tapani_Otala|template^application/vnd.adobe.partial-upload person^John_Brinkman|template^application/vnd.adobe.xdp+xml person^Roberto_Perelman|template^application/vnd.adobe.xfdf person^Jay_Moskowitz|template^application/vnd.aether.imp person^Katsuhiko_Ichinose|template^application/vnd.ah-barcode person^Tor_Kristensen|template^application/vnd.ahead.space person^Daniel_Mould^Gary_Clueit|template^application/vnd.airzip.filesecure.azf person^Daniel_Mould^Gary_Clueit|template^application/vnd.airzip.filesecure.azs - person^Gary_Sands|template^application/vnd.americandynamics.acc person^Kevin_Blumberg|template^application/vnd.amiga.ami person^Mike_Amundsen|template^application/vnd.amundsen.maze+xml - person^Kerrick_Staley|template^application/vnd.anki person^Hiroyoshi_Mori|template^application/vnd.anser-web-certificate-issue-initiation - person^Daniel_Shelton|template^application/vnd.antix.game-component person^Roger_Meier|template^application/vnd.apache.thrift.binary person^Roger_Meier|template^application/vnd.apache.thrift.compact person^Roger_Meier|template^application/vnd.apache.thrift.json person^Steve_Klabnik|template^application/vnd.api+json person^Peter_Bierman|template^application/vnd.apple.installer+xml person^David_Singer^Roger_Pantos|template^application/vnd.apple.mpegurl - notes^- OBSOLETED in favor of application/vnd.aristanetworks.swi|person^Bill_Fenner|template^application/vnd.arastra.swi person^Bill_Fenner|template^application/vnd.aristanetworks.swi person^Christopher_Smith|template^application/vnd.artsquare person^Christopher_Snazell|template^application/vnd.astraea-software.iota 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^Pathway_Commons|template^application/vnd.biopax.rdf+xml person^Thomas_Holmstrom|template^application/vnd.blueice.multipass person^Mike_Foley|template^application/vnd.bluetooth.ep.oob person^Mark_Powell|template^application/vnd.bluetooth.le.oob person^Tadashi_Gotoh|template^application/vnd.bmi person^Philippe_Imoucha|template^application/vnd.businessobjects person^Joerg_Falkenberg|template^application/vnd.cab-jscript person^Shin_Muto|template^application/vnd.canon-cpdl person^Shin_Muto|template^application/vnd.canon-lips person^Peter_Astrand|template^application/vnd.cendio.thinlinc.clientconf person^Shuji_Fujii|template^application/vnd.century-systems.tcp_stream person^Glenn_Howes|template^application/vnd.chemdraw+xml person^Chunyun_Xiong|template^application/vnd.chipnuts.karaoke-mmd person^Ulrich_Kortenkamp|template^application/vnd.cinderella person^Pascal_Mayeux|template^application/vnd.cirpack.isdn-ext person^Rintze_M._Zelle|template^application/vnd.citationstyles.style+xml person^Ray_Simpson|template^application/vnd.claymore person^Mike_Labatt|template^application/vnd.cloanto.rp9 person^Guenther_Brammer|template^application/vnd.clonk.c4group person^Gaige_Paulsen|template^application/vnd.cluetrust.cartomobile-config person^Gaige_Paulsen|template^application/vnd.cluetrust.cartomobile-config-pkg person^Devyn_Collier_Johnson|template^application/vnd.coffeescript person^Mike_Amundsen|template^application/vnd.collection+json person^Irakli_Nadareishvili|template^application/vnd.collection.doc+json person^Ioseb_Dzmanashvili|template^application/vnd.collection.next+json person^David_Applebaum|template^application/vnd.commerce-battelle person^Ravinder_Chandhok|template^application/vnd.commonspace person^Frank_Patz|template^application/vnd.contact.cmsg person^Steve_Dellutri|template^application/vnd.cosmocaller person^Andrew_Burt|template^application/vnd.crick.clicker person^Andrew_Burt|template^application/vnd.crick.clicker.keyboard person^Andrew_Burt|template^application/vnd.crick.clicker.palette person^Andrew_Burt|template^application/vnd.crick.clicker.template person^Andrew_Burt|template^application/vnd.crick.clicker.wordbank person^Jim_Spiller|template^application/vnd.criticaltools.wbs+xml person^Bayard_Kohlhepp|template^application/vnd.ctc-posml person^Jim_Ancona|template^application/vnd.ctct.ws+xml person^Michael_Sweet|template^application/vnd.cups-pdf person^Michael_Sweet|template^application/vnd.cups-postscript person^Michael_Sweet|template^application/vnd.cups-ppd person^Michael_Sweet|template^application/vnd.cups-raster person^Michael_Sweet|template^application/vnd.cups-raw person^Robert_Byrnes|template^application/vnd-curl - - person^Matt_Kern|template^application/vnd.cyan.dean.root+xml person^Nor_Helmee|template^application/vnd.cybank person^Anders_Sandholm|template^application/vnd-dart person^James_Fields|template^application/vnd.data-vision.rdz person^Charles_Plessy|template^application/vnd.debian.binary-package person^Michael_A_Dolan|template^application/vnd.dece.data person^Michael_A_Dolan|template^application/vnd.dece.ttml+xml person^Michael_A_Dolan|template^application/vnd.dece.unspecified person^Michael_A_Dolan|template^application/vnd.dece-zip person^Michael_Dixon|template^application/vnd.denovo.fcselayout-link person^Henrik_Andersson|template^application/vnd.desmume-movie person^Yamanaka|template^application/vnd.dir-bi.plate-dl-nosuffix person^Axel_Ferrazzini|template^application/vnd.dm.delegation+xml person^Meredith_Searcy|template^application/vnd.dna person^Tom_Christie|template^application/vnd.document+json - person^Steve_Hattersley|template^application/vnd.dolby.mobile.1 person^Steve_Hattersley|template^application/vnd.dolby.mobile.2 person^Erik_Ronström|template^application/vnd.doremir.scorecloud-binary-document person^David_Parker|template^application/vnd.dpgraph person^William_C._Appleton|template^application/vnd.dreamfactory person^Keith_Kester|template^application/vnd.drive+json - person^Ali_Teffahi|template^application/vnd.dtg.local person^Ali_Teffahi|template^application/vnd.dtg.local.flash person^Ali_Teffahi|template^application/vnd.dtg.local-html person^Peter_Siebert^Michael_Lagally|template^application/vnd.dvb.ait person^Peter_Siebert^Michael_Lagally|template^application/vnd.dvb.dvbj person^Joerg_Heuer|template^application/vnd.dvb.esgcontainer person^Roy_Yue|template^application/vnd.dvb.ipdcdftnotifaccess person^Joerg_Heuer|template^application/vnd.dvb.ipdcesgaccess person^Jerome_Marcon|template^application/vnd.dvb.ipdcesgaccess2 person^Jerome_Marcon|template^application/vnd.dvb.ipdcesgpdd person^Yiling_Xu|template^application/vnd.dvb.ipdcroaming person^Jean-Baptiste_Henry|template^application/vnd.dvb.iptv.alfec-base person^Jean-Baptiste_Henry|template^application/vnd.dvb.iptv.alfec-enhancement person^Roy_Yue|template^application/vnd.dvb.notif-aggregate-root+xml person^Roy_Yue|template^application/vnd.dvb.notif-container+xml person^Roy_Yue|template^application/vnd.dvb.notif-generic+xml person^Roy_Yue|template^application/vnd.dvb.notif-ia-msglist+xml person^Roy_Yue|template^application/vnd.dvb.notif-ia-registration-request+xml person^Roy_Yue|template^application/vnd.dvb.notif-ia-registration-response+xml person^Roy_Yue|template^application/vnd.dvb.notif-init+xml person^Peter_Siebert^Michael_Lagally|template^application/vnd.dvb.pfr person^Peter_Siebert^Michael_Lagally|template^application/vnd.dvb_service person^Michael_Duffy|template^application/vnd-dxr person^Roland_Mechling|template^application/vnd.dynageo person^Carl_Anderson|template^application/vnd.dzr person^Iain_Downs|template^application/vnd.easykaraoke.cdgdownload person^Gert_Buettgenbach|template^application/vnd.ecdis-update person^Thomas_Olsson|template^application/vnd.ecowin.chart person^Thomas_Olsson|template^application/vnd.ecowin.filerequest person^Thomas_Olsson|template^application/vnd.ecowin.fileupdate person^Thomas_Olsson|template^application/vnd.ecowin.series person^Thomas_Olsson|template^application/vnd.ecowin.seriesrequest person^Thomas_Olsson|template^application/vnd.ecowin.seriesupdate person^Filip_Navara|template^application/vnd.emclient.accessrequest+xml person^Paul_Santinelli_Jr.|template^application/vnd.enliven person^Chris_Eich|template^application/vnd.enphase.envoy person^Tim_Brody|template^application/vnd.eprints.data+xml person^Shoji_Hoshina|template^application/vnd.epson.esf person^Shoji_Hoshina|template^application/vnd.epson.msf person^Yu_Gu|template^application/vnd.epson.quickanime person^Yasuhito_Nagatomo|template^application/vnd.epson.salt person^Shoji_Hoshina|template^application/vnd.epson.ssf person^Paul_Tidwell|template^application/vnd.ericsson.quickcall person^Szilveszter_Tóth|template^application/vnd.eszigno3+xml person^Shicheng_Hu|template^application/vnd.etsi.aoc+xml person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.asic-e+zip person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.asic-s+zip person^Shicheng_Hu|template^application/vnd.etsi.cug+xml person^Shicheng_Hu|template^application/vnd.etsi.iptvcommand+xml person^Shicheng_Hu|template^application/vnd.etsi.iptvdiscovery+xml person^Shicheng_Hu|template^application/vnd.etsi.iptvprofile+xml person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-bc+xml person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-cod+xml person^Shicheng_Hu|template^application/vnd.etsi.iptvsad-npvr+xml person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.iptvservice+xml person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.iptvsync+xml person^Shicheng_Hu|template^application/vnd.etsi.iptvueprofile+xml person^Shicheng_Hu|template^application/vnd.etsi.mcid+xml person^Miguel_Angel_Reina_Ortega^Ian_Medland|template^application/vnd.etsi.mheg5 person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.overload-control-policy-dataset+xml person^Jiwan_Han^Thomas_Belling|template^application/vnd.etsi.pstn+xml person^Shicheng_Hu|template^application/vnd.etsi.sci+xml person^Shicheng_Hu|template^application/vnd.etsi.simservs+xml person^Miguel_Angel_Reina_Ortega|template^application/vnd.etsi.timestamp-token person^Shicheng_Hu|template^application/vnd.etsi.tsl+xml person^Shicheng_Hu|template^application/vnd.etsi.tsl.der person^Pete_Resnick|template^application/vnd.eudora.data person^ElectronicZombieCorp|template^application/vnd.ezpix-album person^ElectronicZombieCorp|template^application/vnd.ezpix-package person^Samu_Sarivaara|template^application/vnd.f-secure.mobile person^Thomas_Huth|template^application/vnd.fastcopy-disk-image person^Steve_Zilles|template^application/vnd-fdf person^Chad_Trabant|template^application/vnd.fdsn.mseed person^Chad_Trabant|template^application/vnd.fdsn.seed person^Holstage|template^application/vnd.ffsns person^Ingo_Hammann|template^application/vnd.fints person^Alex_Dubov|template^application/vnd.firemonkeys.cloudcell person^Dick_Floersch|template^application/vnd.FloGraphIt person^Marc_Winter|template^application/vnd.fluxtime.clip person^George_Williams|template^application/vnd.font-fontforge-sfd person^Mike_Wexler|template^application/vnd.framemaker person^Alexis_Tamas|template^application/vnd.frogans.fnc person^Alexis_Tamas|template^application/vnd.frogans.ltf person^Derek_Smith|template^application/vnd.fsc.weblaunch person^Nobukazu_Togashi|template^application/vnd.fujitsu.oasys person^Nobukazu_Togashi|template^application/vnd.fujitsu.oasys2 person^Seiji_Okudaira|template^application/vnd.fujitsu.oasys3 person^Masahiko_Sugimoto|template^application/vnd.fujitsu.oasysgp person^Masumi_Ogita|template^application/vnd.fujitsu.oasysprs person^Fumio_Tanabe|template^application/vnd.fujixerox.ART-EX person^Fumio_Tanabe|template^application/vnd.fujixerox.ART4 person^Masanori_Onda|template^application/vnd.fujixerox.ddd person^Yasuo_Taguchi|template^application/vnd.fujixerox.docuworks person^Takashi_Matsumoto|template^application/vnd.fujixerox.docuworks.binder person^Kiyoshi_Tashiro|template^application/vnd.fujixerox.docuworks.container person^Fumio_Tanabe|template^application/vnd.fujixerox.HBPL person^Jann_Pruulman|template^application/vnd.fut-misnet person^Simon_Birtwistle|template^application/vnd.fuzzysheet person^Torben_Frey|template^application/vnd.genomatix.tuxedo person^Sean_Gillies|template^application/vnd.geo+json notes^- OBSOLETED by request|person^Francois_Pirsch|template^application/vnd.geocube+xml person^GeoGebra^Yves_Kreis|template^application/vnd.geogebra.file person^GeoGebra^Yves_Kreis|template^application/vnd.geogebra.tool person^Michael_Hvidsten|template^application/vnd.geometry-explorer person^Matthias_Ehmann|template^application/vnd.geonext person^Christian_Mercat|template^application/vnd.geoplan person^Christian_Mercat|template^application/vnd.geospace person^Thomas_Weyn|template^application/vnd.gerber person^Gil_Bernabeu|template^application/vnd.globalplatform.card-content-mgt person^Gil_Bernabeu|template^application/vnd.globalplatform.card-content-mgt-response notes^- DEPRECATED|person^Christian_V._Sciberras|template^application/vnd.gmx person^Michael_Ashbridge|template^application/vnd.google-earth.kml+xml person^Michael_Ashbridge|template^application/vnd.google-earth.kmz person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.e-form+xml person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.e-form+zip person^Peter_Biro^Stefan_Szilva|template^application/vnd.gov.sk.xmldatacontainer+xml person^Jeff_Tupper|template^application/vnd.grafeq person^Jeff_Lawson|template^application/vnd.gridmp person^Todd_Joseph|template^application/vnd.groove-account person^Todd_Joseph|template^application/vnd.groove-help person^Todd_Joseph|template^application/vnd.groove-identity-message person^Todd_Joseph|template^application/vnd.groove-injector person^Todd_Joseph|template^application/vnd.groove-tool-message person^Todd_Joseph|template^application/vnd.groove-tool-template person^Todd_Joseph|template^application/vnd.groove-vcard person^Mike_Kelly|template^application/vnd.hal+json person^Mike_Kelly|template^application/vnd.hal+xml person^Eric_Hamilton|template^application/vnd.HandHeld-Entertainment+xml person^Ingo_Hammann|template^application/vnd.hbci person^Doug_R._Serres|template^application/vnd.hcl-bireports person^Wesley_Beary|template^application/vnd.heroku+json person^Randy_Jones|template^application/vnd.hhe.lesson-player person^Bob_Pentecost|template^application/vnd.hp-HPGL person^Aloke_Gupta|template^application/vnd.hp-hpid person^Steve_Aubrey|template^application/vnd.hp-hps person^Amir_Gaash|template^application/vnd.hp-jlyt person^Bob_Pentecost|template^application/vnd.hp-PCL person^Bob_Pentecost|template^application/vnd.hp-PCLXL person^Franck_Lefevre|template^application/vnd.httphone person^Allen_Gillam|template^application/vnd.hydrostatix.sof-data person^Daniel_Sims|template^application/vnd.hyperdrive+json person^James_Minnis|template^application/vnd.hzn-3d-crossword person^Roger_Buis|template^application/vnd.ibm.afplinedata person^Bruce_Tantlinger|template^application/vnd.ibm.electronic-media person^Amir_Herzberg|template^application/vnd.ibm.MiniPay person^Reinhard_Hohensee|template^application/vnd.ibm.modcap person^Bruce_Tantlinger|template^application/vnd.ibm.rights-management person^Bruce_Tantlinger|template^application/vnd.ibm.secure-container person^Phil_Green|template^application/vnd.iccprofile person^Purva_R_Rajkotia|template^application/vnd.ieee.1905 person^Tim_Fisher|template^application/vnd.igloader person^Mathieu_Villegas|template^application/vnd.immervision-ivp person^Mathieu_Villegas|template^application/vnd.immervision-ivu person^Lisa_Mattson|template^application/vnd.ims.imsccv1p1 person^Lisa_Mattson|template^application/vnd.ims.imsccv1p2 person^Lisa_Mattson|template^application/vnd.ims.imsccv1p3 person^Lisa_Mattson|template^application/vnd.ims.lis.v2.result+json person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolconsumerprofile+json person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolproxy+json person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolproxy.id+json person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolsettings+json person^Lisa_Mattson|template^application/vnd.ims.lti.v2.toolsettings.simple+json person^Mark_Wahl|template^application/vnd.informedcontrol.rms+xml notes^- OBSOLETED in favor of application/vnd.visionary|person^Christopher_Gales|template^application/vnd.informix-visionary person^Charles_Engelke|template^application/vnd.infotech.project person^Charles_Engelke|template^application/vnd.infotech.project+xml person^Takanori_Sudo|template^application/vnd.innopath.wamp.notification person^Jon_Swanson|template^application/vnd.insors.igm person^Tom_Gurak|template^application/vnd.intercon.formnet person^Yves_Kreis_2|template^application/vnd.intergeo person^Luke_Tomasello|template^application/vnd.intertrust.digibox person^Luke_Tomasello|template^application/vnd.intertrust.nncp person^Greg_Scratchley|template^application/vnd.intu.qbo person^Greg_Scratchley|template^application/vnd.intu.qfx person^Michael_Steidl|template^application/vnd.iptc.g2.catalogitem+xml person^Michael_Steidl|template^application/vnd.iptc.g2.conceptitem+xml person^Michael_Steidl|template^application/vnd.iptc.g2.knowledgeitem+xml person^Michael_Steidl|template^application/vnd.iptc.g2.newsitem+xml person^Michael_Steidl|template^application/vnd.iptc.g2.newsmessage+xml person^Michael_Steidl|template^application/vnd.iptc.g2.packageitem+xml person^Michael_Steidl|template^application/vnd.iptc.g2.planningitem+xml person^Per_Ersson|template^application/vnd.ipunplugged.rcprofile person^Martin_Knowles|template^application/vnd.irepository.package+xml person^Satish_Navarajan|template^application/vnd.is-xpr person^Ryan_Brinkman|template^application/vnd.isac.fcs person^Brijesh_Kumar|template^application/vnd.jam person^Kiyofusa_Fujii|template^application/vnd.japannet-directory-service person^Jun_Yoshitake|template^application/vnd.japannet-jpnstore-wakeup person^Kiyofusa_Fujii|template^application/vnd.japannet-payment-wakeup person^Jun_Yoshitake|template^application/vnd.japannet-registration person^Kiyofusa_Fujii|template^application/vnd.japannet-registration-wakeup person^Jun_Yoshitake|template^application/vnd.japannet-setstore-wakeup person^Jun_Yoshitake|template^application/vnd.japannet-verification person^Kiyofusa_Fujii|template^application/vnd.japannet-verification-wakeup person^Mikhail_Gorshenev|template^application/vnd.jcp.javame.midlet-rms person^Sebastiaan_Deckers|template^application/vnd.jisp person^Joost|template^application/vnd.joost.joda-archive person^Yokoyama_Kiyonobu|template^application/vnd.jsk.isdn-ngn person^Tim_Macdonald|template^application/vnd.kahootz person^David_Faure|template^application/vnd.kde.karbon person^David_Faure|template^application/vnd.kde.kchart person^David_Faure|template^application/vnd.kde.kformula person^David_Faure|template^application/vnd.kde.kivio person^David_Faure|template^application/vnd.kde.kontour person^David_Faure|template^application/vnd.kde.kpresenter person^David_Faure|template^application/vnd.kde.kspread person^David_Faure|template^application/vnd.kde.kword person^Dirk_DiGiorgio-Haag|template^application/vnd.kenameaapp person^Jack_Bennett|template^application/vnd.kidspiration person^Hemant_Thakkar|template^application/vnd.Kinar person^Pete_Cole|template^application/vnd.koan person^Michael_J._Donahue|template^application/vnd.kodak-descriptor person^Rob_Bailey|template^application/vnd.las.las+xml person^Brett_McDowell|template^application/vnd.liberty-request+xml person^Catherine_E._White|template^application/vnd.llamagraphics.life-balance.desktop person^Catherine_E._White|template^application/vnd.llamagraphics.life-balance.exchange+xml person^Paul_Wattenberger|template^application/vnd.lotus-1-2-3 person^Paul_Wattenberger|template^application/vnd.lotus-approach person^Paul_Wattenberger|template^application/vnd.lotus-freelance person^Michael_Laramie|template^application/vnd.lotus-notes person^Paul_Wattenberger|template^application/vnd.lotus-organizer person^Paul_Wattenberger|template^application/vnd.lotus-screencam person^Paul_Wattenberger|template^application/vnd.lotus-wordpro person^James_Berry|template^application/vnd.macports.portpkg person^Gary_Ellison|template^application/vnd.marlin.drm.actiontoken+xml person^Gary_Ellison|template^application/vnd.marlin.drm.conftoken+xml person^Gary_Ellison|template^application/vnd.marlin.drm.license+xml person^Gary_Ellison|template^application/vnd.marlin.drm.mdcf person^Jorn_Wildt|template^application/vnd.mason+json person^William_Stevenson|template^application/vnd.maxmind.maxmind-db person^Tadashi_Gotoh|template^application/vnd.mcd person^Frank_Schoonjans|template^application/vnd.medcalcdata person^Henry_Flurry|template^application/vnd.mediastation.cdkey person^Eric_Wedel|template^application/vnd.meridian-slingshot person^Masaaki_Hirai|template^application/vnd.MFER person^Yukari_Ikeda|template^application/vnd.mfmp person^Dali_Zheng|template^application/vnd.micro+json person^Joe_Prevo|template^application/vnd.micrografx.flo person^Joe_Prevo|template^application/vnd.micrografx-igx person^Henrik_Andersson|template^application/vnd.microsoft.portable-executable person^Nils_Langhammer|template^application/vnd.miele+json person^Mike_Wexler|template^application/vnd-mif person^Chris_Bartram|template^application/vnd.minisoft-hp3000-save person^Tanaka|template^application/vnd.mitsubishi.misty-guard.trustweb person^Allen_K._Kabayama|template^application/vnd.Mobius.DAF person^Allen_K._Kabayama|template^application/vnd.Mobius.DIS person^Alex_Devasia|template^application/vnd.Mobius.MBK person^Alex_Devasia|template^application/vnd.Mobius.MQY person^Allen_K._Kabayama|template^application/vnd.Mobius.MSL person^Allen_K._Kabayama|template^application/vnd.Mobius.PLC person^Allen_K._Kabayama|template^application/vnd.Mobius.TXF person^Bjorn_Wennerstrom|template^application/vnd.mophun.application person^Bjorn_Wennerstrom|template^application/vnd.mophun.certificate person^Mark_Patton|template^application/vnd.motorola.flexsuite person^Mark_Patton|template^application/vnd.motorola.flexsuite.adsi person^Mark_Patton|template^application/vnd.motorola.flexsuite.fis person^Mark_Patton|template^application/vnd.motorola.flexsuite.gotap person^Mark_Patton|template^application/vnd.motorola.flexsuite.kmr person^Mark_Patton|template^application/vnd.motorola.flexsuite.ttc person^Mark_Patton|template^application/vnd.motorola.flexsuite.wem person^Rafie_Shamsaasef|template^application/vnd.motorola.iprm person^Braden_N_McDaniel|template^application/vnd.mozilla.xul+xml person^Shawn_Maloney|template^application/vnd.ms-3mfdocument person^Dean_Slawson|template^application/vnd.ms-artgalry person^Eric_Fleischman|template^application/vnd.ms-asf person^Kim_Scarborough|template^application/vnd.ms-cab-compressed person^Sukvinder_S._Gill|template^application/vnd.ms-excel person^Chris_Rae|template^application/vnd.ms-excel.addin.macroEnabled.12 person^Chris_Rae|template^application/vnd.ms-excel.sheet.binary.macroEnabled.12 person^Chris_Rae|template^application/vnd.ms-excel.sheet.macroEnabled.12 person^Chris_Rae|template^application/vnd.ms-excel.template.macroEnabled.12 person^Kim_Scarborough|template^application/vnd.ms-fontobject person^Anatoly_Techtonik|template^application/vnd.ms-htmlhelp person^Eric_Ledoux|template^application/vnd.ms-ims person^Eric_Ledoux|template^application/vnd.ms-lrm person^Chris_Rae|template^application/vnd.ms-office.activeX+xml person^Chris_Rae|template^application/vnd.ms-officetheme - - - person^Daniel_Schneider|template^application/vnd.ms-playready.initiator+xml person^Sukvinder_S._Gill|template^application/vnd.ms-powerpoint person^Chris_Rae|template^application/vnd.ms-powerpoint.addin.macroEnabled.12 person^Chris_Rae|template^application/vnd.ms-powerpoint.presentation.macroEnabled.12 person^Chris_Rae|template^application/vnd.ms-powerpoint.slide.macroEnabled.12 person^Chris_Rae|template^application/vnd.ms-powerpoint.slideshow.macroEnabled.12 person^Chris_Rae|template^application/vnd.ms-powerpoint.template.macroEnabled.12 person^Sukvinder_S._Gill|template^application/vnd.ms-project person^Sukvinder_S._Gill|template^application/vnd.ms-tnef person^Justin_Hutchings|template^application/vnd.ms-windows.devicepairing person^Justin_Hutchings|template^application/vnd.ms-windows.printerpairing person^Justin_Hutchings|template^application/vnd.ms-windows.wsd.oob person^Kevin_Lau|template^application/vnd.ms-wmdrm.lic-chlg-req person^Kevin_Lau|template^application/vnd.ms-wmdrm.lic-resp person^Kevin_Lau|template^application/vnd.ms-wmdrm.meter-chlg-req person^Kevin_Lau|template^application/vnd.ms-wmdrm.meter-resp person^Chris_Rae|template^application/vnd.ms-word.document.macroEnabled.12 person^Chris_Rae|template^application/vnd.ms-word.template.macroEnabled.12 person^Sukvinder_S._Gill|template^application/vnd.ms-works person^Dan_Plastina|template^application/vnd.ms-wpl person^Jesse_McGatha|template^application/vnd.ms-xpsdocument person^Thomas_Huth|template^application/vnd.msa-disk-image person^Gwenael_Le_Bodic|template^application/vnd.mseq person^Malte_Borcherding|template^application/vnd.msign person^Steve_Mills|template^application/vnd.multiad.creator person^Steve_Mills|template^application/vnd.multiad.creator.cif person^Tim_Butler|template^application/vnd.music-niff person^Greg_Adams|template^application/vnd.musician person^Chandrashekhara_Anantharamu|template^application/vnd.muvee.style person^Franck_Lefevre|template^application/vnd.mynfc person^Lauri_Tarkkala|template^application/vnd.ncd.control person^Lauri_Tarkkala|template^application/vnd.ncd.reference person^Steve_Judkins|template^application/vnd.nervana person^Andy_Mutz|template^application/vnd.netfpx person^Dan_DuFeu|template^application/vnd.neurolanguage.nlu person^Henrik_Andersson|template^application/vnd.nintendo.nitro.rom person^Henrik_Andersson|template^application/vnd.nintendo.snes.rom person^Steve_Rogan|template^application/vnd.nitf person^Monty_Solomon|template^application/vnd.noblenet-directory person^Monty_Solomon|template^application/vnd.noblenet-sealer person^Monty_Solomon|template^application/vnd.noblenet-web person^Nokia|template^application/vnd.nokia.catalogs person^Nokia|template^application/vnd.nokia.conml+wbxml person^Nokia|template^application/vnd.nokia.conml+xml person^Nokia|template^application/vnd.nokia.iptv.config+xml person^Nokia|template^application/vnd.nokia.iSDS-radio-presets person^Nokia|template^application/vnd.nokia.landmark+wbxml person^Nokia|template^application/vnd.nokia.landmark+xml person^Nokia|template^application/vnd.nokia.landmarkcollection+xml person^Nokia|template^application/vnd.nokia.n-gage.ac+xml person^Nokia|template^application/vnd.nokia.n-gage.data notes^- OBSOLETE; no replacement given|person^Nokia|template^application/vnd.nokia.n-gage.symbian.install person^Nokia|template^application/vnd.nokia.ncd - person^Nokia|template^application/vnd.nokia.pcd+wbxml person^Nokia|template^application/vnd.nokia.pcd+xml person^Nokia|template^application/vnd.nokia.radio-preset person^Nokia|template^application/vnd.nokia.radio-presets person^Janine_Swenson|template^application/vnd.novadigm.EDM person^Janine_Swenson|template^application/vnd.novadigm.EDX person^Janine_Swenson|template^application/vnd.novadigm.EXT person^Akinori_Taya|template^application/vnd.ntt-local.content-share person^NTT-local|template^application/vnd.ntt-local.file-transfer person^NTT-local|template^application/vnd.ntt-local.ogw_remote-access person^NTT-local|template^application/vnd.ntt-local.sip-ta_remote person^NTT-local|template^application/vnd.ntt-local.sip-ta_tcp_stream person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.chart person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.chart-template person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.database person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.formula person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.formula-template person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.graphics person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.graphics-template person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.image person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.image-template person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.presentation person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.presentation-template person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.spreadsheet person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.spreadsheet-template person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.text person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.text-master person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.text-template person^Svante_Schubert^OASIS|template^application/vnd.oasis.opendocument.text-web person^Matthias_Hessling|template^application/vnd.obn person^Eli_Grey|template^application/vnd.oftn.l10n+json person^Claire_DEsclercs|template^application/vnd.oipf.contentaccessdownload+xml person^Claire_DEsclercs|template^application/vnd.oipf.contentaccessstreaming+xml person^Claire_DEsclercs|template^application/vnd.oipf.cspg-hexbinary person^Claire_DEsclercs|template^application/vnd.oipf.dae.svg+xml person^Claire_DEsclercs|template^application/vnd.oipf.dae.xhtml+xml person^Claire_DEsclercs|template^application/vnd.oipf.mippvcontrolmessage+xml person^Claire_DEsclercs|template^application/vnd.oipf.pae.gem person^Claire_DEsclercs|template^application/vnd.oipf.spdiscovery+xml person^Claire_DEsclercs|template^application/vnd.oipf.spdlist+xml person^Claire_DEsclercs|template^application/vnd.oipf.ueprofile+xml person^Claire_DEsclercs|template^application/vnd.oipf.userprofile+xml person^John_Palmieri|template^application/vnd.olpc-sugar person^Ilan_Mahalal|template^application/vnd.oma-scws-config person^Ilan_Mahalal|template^application/vnd.oma-scws-http-request person^Ilan_Mahalal|template^application/vnd.oma-scws-http-response person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.associated-procedure-parameter+xml person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.drm-trigger+xml person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.imd+xml person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.ltkm person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.notification+xml person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.provisioningtrigger person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.sgboot person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.sgdd+xml person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.sgdu person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.simple-symbol-container person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.smartcard-trigger+xml person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.sprov+xml person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.bcast.stkm person^Hao_Wang^OMA|template^application/vnd.oma.cab-address-book+xml person^Hao_Wang^OMA|template^application/vnd.oma.cab-feature-handler+xml person^Hao_Wang^OMA|template^application/vnd.oma.cab-pcc+xml person^Hao_Wang^OMA|template^application/vnd.oma.cab-subs-invite+xml person^Hao_Wang^OMA|template^application/vnd.oma.cab-user-prefs+xml person^Avi_Primo^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.dcd person^Avi_Primo^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.dcdc person^Jun_Sato^Open_Mobile_Alliance_BAC_DLDRM_Working_Group|template^application/vnd.oma.dd2+xml person^Uwe_Rauschenbach^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.drm.risd+xml person^Sean_Kelley^OMA_Presence_and_Availability_PAG_Working_Group|template^application/vnd.oma.group-usage-list+xml person^Brian_McColgan^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.pal+xml person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.detailed-progress-report+xml person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.final-report+xml person^Sean_Kelley^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.groups+xml person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.invocation-descriptor+xml person^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.oma.poc.optimized-progress-report+xml person^Bryan_Sullivan^OMA|template^application/vnd.oma.push person^Wenjun_Zeng^OMNA-Open_Mobile_Naming_Authority|template^application/vnd.oma.scidm.messages+xml person^Sean_Kelley^OMA_Presence_and_Availability_PAG_Working_Group|template^application/vnd.oma.xcap-directory+xml person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-email+xml person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-file+xml person^OMA_Data_Synchronization_Working_Group|template^application/vnd.omads-folder+xml person^Julien_Grange|template^application/vnd.omaloc-supl-init person^Mark_Otaris|template^application/vnd.openblox.game+xml person^Mark_Otaris|template^application/vnd.openblox.game-binary person^Craig_Bruce|template^application/vnd.openeye.oeb - person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.custom-properties+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.customXmlProperties+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawing+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.chart+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.extended-properties+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.comments+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presentation person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.presProps+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slide person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slide+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideshow person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.tags+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml-template person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.template.main+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheet person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml-template person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.theme+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.themeOverride+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.vmlDrawing person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml-template person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml person^Makoto_Murata|template^application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml person^Makoto_Murata|template^application/vnd.openxmlformats-package.core-properties+xml person^Makoto_Murata|template^application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml person^Makoto_Murata|template^application/vnd.openxmlformats-package.relationships+xml person^Ning_Dong|template^application/vnd.oracle.resource+json person^CHATRAS_Bruno|template^application/vnd.orange.indata person^Steven_Klos|template^application/vnd.osa.netdeploy person^Jason_Birch|template^application/vnd.osgeo.mapguide.package person^Peter_Kriens|template^application/vnd.osgi.bundle person^Peter_Kriens|template^application/vnd.osgi.dp person^Peter_Kriens|template^application/vnd.osgi.subsystem person^Magnus_Nystrom|template^application/vnd.otps.ct-kip+xml person^C._Titus_Brown|template^application/vnd.oxli.countgraph person^Steve_Rice|template^application/vnd.pagerduty+json person^Gavin_Peacock|template^application/vnd.palm person^Natarajan_Balasundara|template^application/vnd.panoply person^John_Kemp|template^application/vnd.paos+xml person^Prakash_Baskaran|template^application/vnd.pawaafile person^Slawomir_Lisznianski|template^application/vnd.pcos person^April_Gandert|template^application/vnd.pg.format person^April_Gandert|template^application/vnd.pg.osasli person^Lucas_Maneos|template^application/vnd.piaccess.application-licence person^Giuseppe_Naccarato|template^application/vnd.picsel person^Rhys_Lewis|template^application/vnd.pmi.widget person^Sean_Kelley^OMA_Push_to_Talk_over_Cellular_POC_Working_Group|template^application/vnd.poc.group-advertisement+xml person^Jorge_Pando|template^application/vnd.pocketlearn person^David_Guy|template^application/vnd.powerbuilder6 person^David_Guy|template^application/vnd.powerbuilder6-s person^Reed_Shilts|template^application/vnd.powerbuilder7 person^Reed_Shilts|template^application/vnd.powerbuilder7-s person^Reed_Shilts|template^application/vnd.powerbuilder75 person^Reed_Shilts|template^application/vnd.powerbuilder75-s person^Juoko_Tenhunen|template^application/vnd.preminet person^Roman_Smolgovsky|template^application/vnd.previewsystems.box person^Pete_Hoch|template^application/vnd.proteus.magazine person^Oren_Ben-Kiki|template^application/vnd.publishare-delta-tree person^Charles_P._Lamb|template^application/vnd.pvi.ptid1 rfc^rfc3391|template^application/vnd.pwg-multiplexed person^Don_Wright|template^application/vnd.pwg-xhtml-print+xml person^Glenn_Forrester|template^application/vnd.qualcomm.brew-app-res person^Hannes_Scheidler|template^application/vnd.Quark.QuarkXPress person^Matthias_Ludwig|template^application/vnd.quobject-quoxdocument rfc^rfc5707|template^application/vnd.radisys.moml+xml rfc^rfc5707|template^application/vnd.radisys.msml+xml rfc^rfc5707|template^application/vnd.radisys.msml-audit+xml rfc^rfc5707|template^application/vnd.radisys.msml-audit-conf+xml rfc^rfc5707|template^application/vnd.radisys.msml-audit-conn+xml rfc^rfc5707|template^application/vnd.radisys.msml-audit-dialog+xml rfc^rfc5707|template^application/vnd.radisys.msml-audit-stream+xml rfc^rfc5707|template^application/vnd.radisys.msml-conf+xml rfc^rfc5707|template^application/vnd.radisys.msml-dialog+xml rfc^rfc5707|template^application/vnd.radisys.msml-dialog-base+xml rfc^rfc5707|template^application/vnd.radisys.msml-dialog-fax-detect+xml rfc^rfc5707|template^application/vnd.radisys.msml-dialog-fax-sendrecv+xml rfc^rfc5707|template^application/vnd.radisys.msml-dialog-group+xml rfc^rfc5707|template^application/vnd.radisys.msml-dialog-speech+xml rfc^rfc5707|template^application/vnd.radisys.msml-dialog-transform+xml person^Kevin_Crook|template^application/vnd.rainstor.data person^Etay_Szekely|template^application/vnd.rapid person^Nick_Reeves|template^application/vnd.realvnc.bed person^Michael_Good|template^application/vnd.recordare.musicxml person^Michael_Good|template^application/vnd.recordare.musicxml+xml person^James_Wick|template^application/vnd.renlearn.rlprint person^Ken_Jibiki|template^application/vnd.rig.cryptonote - - - person^Sybren_Kikstra|template^application/vnd.route66.link66+xml person^Lee_Harding|template^application/vnd.rs-274x person^Jerry_Harris|template^application/vnd.ruckus.download person^Lauri_Tarkkala|template^application/vnd.s3sms person^Heikki_Vesalainen|template^application/vnd.sailingtracker.track person^Shinji_Kusakari|template^application/vnd.sbm.cid person^Masanori_Murai|template^application/vnd.sbm.mid2 person^Craig_Bradney|template^application/vnd.scribus person^John_Kwan|template^application/vnd.sealed.3df person^John_Kwan|template^application/vnd.sealed.csf person^David_Petersen|template^application/vnd.sealed-doc person^David_Petersen|template^application/vnd.sealed-eml person^David_Petersen|template^application/vnd.sealed-mht person^Martin_Lambert|template^application/vnd.sealed.net person^David_Petersen|template^application/vnd.sealed-ppt person^John_Kwan^Martin_Lambert|template^application/vnd.sealed-tiff person^David_Petersen|template^application/vnd.sealed-xls person^David_Petersen|template^application/vnd.sealedmedia.softseal-html person^David_Petersen|template^application/vnd.sealedmedia.softseal-pdf person^Steve_Webb|template^application/vnd.seemail person^Anders_Hansson|template^application/vnd-sema person^Anders_Hansson|template^application/vnd.semd person^Anders_Hansson|template^application/vnd.semf person^Guy_Selzler|template^application/vnd.shana.informed.formdata person^Guy_Selzler|template^application/vnd.shana.informed.formtemplate person^Guy_Selzler|template^application/vnd.shana.informed.interchange person^Guy_Selzler|template^application/vnd.shana.informed.package person^Patrick_Koh|template^application/vnd.SimTech-MindMapper person^Kevin_Swiber|template^application/vnd.siren+json person^Hiroaki_Takahashi|template^application/vnd.smaf person^Jonathan_Neitz|template^application/vnd.smart.notebook person^Michael_Boyle|template^application/vnd.smart.teacher person^Jakub_Hytka^Martin_Vondrous|template^application/vnd.software602.filler.form+xml person^Jakub_Hytka^Martin_Vondrous|template^application/vnd.software602.filler.form-xml-zip person^Cliff_Gauntlett|template^application/vnd.solent.sdkm+xml person^Stefan_Jernberg|template^application/vnd.spotfire.dxp person^Stefan_Jernberg|template^application/vnd.spotfire.sfs person^Asang_Dani|template^application/vnd.sss-cod person^Eric_Bruno|template^application/vnd.sss-dtf person^Eric_Bruno|template^application/vnd.sss-ntf - - - - - - - person^Henrik_Andersson|template^application/vnd.stepmania.package person^Henrik_Andersson|template^application/vnd.stepmania.stepchart person^Glenn_Levitt|template^application/vnd.street-stream person^Marc_Hadley|template^application/vnd.sun.wadl+xml - - - - - - - - - - person^Jonathan_Niedfeldt|template^application/vnd.sus-calendar person^Scott_Becker|template^application/vnd.svd person^Glenn_Widener|template^application/vnd.swiftview-ics - person^OMA_Data_Synchronization_Working_Group|template^application/vnd.syncml+xml person^OMA-DM_Work_Group|template^application/vnd.syncml.dm+wbxml person^Bindu_Rama_Rao^OMA-DM_Work_Group|template^application/vnd.syncml.dm+xml person^Peter_Thompson^OMA-DM_Work_Group|template^application/vnd.syncml.dm.notification person^OMA-DM_Work_Group|template^application/vnd.syncml.dmddf+wbxml person^OMA-DM_Work_Group|template^application/vnd.syncml.dmddf+xml person^OMA-DM_Work_Group|template^application/vnd.syncml.dmtnds+wbxml person^OMA-DM_Work_Group|template^application/vnd.syncml.dmtnds+xml person^OMA_Data_Synchronization_Working_Group|template^application/vnd.syncml.ds.notification person^Daniel_Shelton|template^application/vnd.tao.intent-module-archive person^Guy_Harris^Glen_Turner|template^application/vnd.tcpdump.pcap person^Alex_Sibilev|template^application/vnd.tmd.mediaflex.api+xml person^Nicolas_Helin|template^application/vnd.tmobile-livetv person^Frank_Cusack|template^application/vnd.trid.tpt person^Steven_Simonoff|template^application/vnd.triscape.mxs person^J._Scott_Hepler|template^application/vnd.trueapp person^Brad_Chase|template^application/vnd.truedoc person^Martin_Talbot|template^application/vnd.ubisoft.webplayer person^Dave_Manning|template^application/vnd.ufdl person^Tim_Ocock|template^application/vnd.uiq.theme person^Jamie_Riden|template^application/vnd.umajin person^Unity3d|template^application/vnd.unity person^Arne_Gerdes|template^application/vnd.uoml+xml person^Bruce_Martin|template^application/vnd.uplanet.alert person^Bruce_Martin|template^application/vnd.uplanet.alert-wbxml person^Bruce_Martin|template^application/vnd.uplanet.bearer-choice person^Bruce_Martin|template^application/vnd.uplanet.bearer-choice-wbxml person^Bruce_Martin|template^application/vnd.uplanet.cacheop person^Bruce_Martin|template^application/vnd.uplanet.cacheop-wbxml person^Bruce_Martin|template^application/vnd.uplanet.channel person^Bruce_Martin|template^application/vnd.uplanet.channel-wbxml person^Bruce_Martin|template^application/vnd.uplanet.list person^Bruce_Martin|template^application/vnd.uplanet.list-wbxml person^Bruce_Martin|template^application/vnd.uplanet.listcmd person^Bruce_Martin|template^application/vnd.uplanet.listcmd-wbxml person^Bruce_Martin|template^application/vnd.uplanet.signal person^Sebastian_Baer|template^application/vnd.uri-map person^Henrik_Andersson|template^application/vnd.valve.source.material person^Taisuke_Sugimoto|template^application/vnd.vcx person^Luc_Rogge|template^application/vnd.vd-study person^Lyndsey_Ferguson^Biplab_Sarkar|template^application/vnd.vectorworks person^Petr_Peterka|template^application/vnd.verimatrix.vcas person^Robert_Hess|template^application/vnd.vidsoft.vidconference person^Troy_Sandal|template^application/vnd.visio person^Gayatri_Aravindakumar|template^application/vnd.visionary person^Mark_Risher|template^application/vnd.vividence.scriptfile person^Delton_Rowe|template^application/vnd.vsf person^WAP-Forum|template^application/vnd.wap.sic person^WAP-Forum|template^application/vnd.wap-slc person^Peter_Stark|template^application/vnd.wap-wbxml person^Peter_Stark|template^application/vnd-wap-wmlc person^Peter_Stark|template^application/vnd.wap.wmlscriptc person^Yaser_Rehem|template^application/vnd.webturbo person^Mick_Conley|template^application/vnd.wfa.p2p person^Wi-Fi_Alliance|template^application/vnd.wfa.wsc person^Priya_Dandawate|template^application/vnd.windows.devicepairing person^Thomas_Kjornes|template^application/vnd.wmc person^Thinh_Nguyenphu^Prakash_Iyer|template^application/vnd.wmf.bootstrap person^Wolfram|template^application/vnd.wolfram.mathematica person^Wolfram|template^application/vnd.wolfram.mathematica.package person^Wolfram|template^application/vnd.wolfram.player person^Kim_Scarborough|template^application/vnd.wordperfect person^Jan_Bostrom|template^application/vnd.wqd person^Chris_Bartram|template^application/vnd.wrq-hp3000-labelled person^Bill_Wohler|template^application/vnd.wt.stf person^Matti_Salmi|template^application/vnd.wv.csp+wbxml person^John_Ingi_Ingimundarson|template^application/vnd.wv.csp+xml person^John_Ingi_Ingimundarson|template^application/vnd.wv.ssp+xml person^David_Brossard|template^application/vnd.xacml+json person^David_Matthewman|template^application/vnd.xara person^Dave_Manning|template^application/vnd.xfdl person^Michael_Mansell|template^application/vnd.xfdl.webform person^Fred_Waskiewicz|template^application/vnd.xmi+xml person^Reuven_Sherwin|template^application/vnd.xmpie.cpkg person^Reuven_Sherwin|template^application/vnd.xmpie.dpkg person^Reuven_Sherwin|template^application/vnd.xmpie.plan person^Reuven_Sherwin|template^application/vnd.xmpie.ppkg person^Reuven_Sherwin|template^application/vnd.xmpie.xlim person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-dic person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-script person^Tomohiro_Yamamoto|template^application/vnd.yamaha.hv-voice person^Mark_Olleson|template^application/vnd.yamaha.openscoreformat person^Mark_Olleson|template^application/vnd.yamaha.openscoreformat.osfpvg+xml person^Takehiro_Sukizaki|template^application/vnd.yamaha.remote-setup person^Keiichi_Shinoda|template^application/vnd.yamaha.smaf-audio person^Keiichi_Shinoda|template^application/vnd.yamaha.smaf-phrase person^Takehiro_Sukizaki|template^application/vnd.yamaha.through-ngn person^Takehiro_Sukizaki|template^application/vnd.yamaha.tunnel-udpencap person^Jens_Jorgensen|template^application/vnd.yaoweme person^Mr._Yellow|template^application/vnd.yellowriver-custom-menu person^Rene_Grothmann|template^application/vnd.zul person^Micheal_Hewett|template^application/vnd.zzazz.deck+xml rfc^rfc4267|template^application/voicexml+xml rfc^rfc6035|template^application/vq-rtcpxr rfc^rfc3858|template^application/watcherinfo+xml rfc^rfc2957|template^application/whoispp-query rfc^rfc2958|template^application/whoispp-response person^W3C^Steven_Pemberton|uri^http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw - person^Larry_Campbell|template^application/wita - - person^Paul_Lindner|template^application/wordperfect5.1 - - person^W3C|template^application/wsdl+xml person^W3C|template^application/wspolicy+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - person^W3C^Robin_Berjon|template^application/x-www-form-urlencoded - - - - - - rfc^rfc1494|template^application/x400-bp - rfc^rfc7061|template^application/xacml+xml - rfc^rfc4825|template^application/xcap-att+xml rfc^rfc4825|template^application/xcap-caps+xml rfc^rfc5874|template^application/xcap-diff+xml rfc^rfc4825|template^application/xcap-el+xml rfc^rfc4825|template^application/xcap-error+xml rfc^rfc4825|template^application/xcap-ns+xml rfc^rfc6502|template^application/xcon-conference-info+xml rfc^rfc6502|template^application/xcon-conference-info-diff+xml person^Joseph_Reagle^XENC_Working_Group|template^application/xenc+xml person^W3C^Robin_Berjon|template^application/xhtml+xml draft^draft-mccobb-xplusv-media-type|notes^- OBSOLETE; no replacement given|template^application/xhtml-voice+xml rfc^rfc7303|template^application/xml rfc^rfc7303|template^application/xml-dtd rfc^rfc7303|template^application/xml-external-parsed-entity rfc^rfc7351|template^application/xml-patch+xml rfc^rfc3923|template^application/xmpp+xml person^Mark_Nottingham|template^application/xop+xml - person^W3C|uri^http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration - rfc^rfc4374|template^application/xv+xml rfc^rfc6020|template^application/yang rfc^rfc6020|template^application/yin+xml person^Paul_Lindner|template^application/zip rfc^rfc6713|template^application/zlib rfc^rfc6015|template^audio/1d-interleaved-parityfec rfc^rfc3802^rfc2421|template^audio/32kadpcm rfc^rfc3839^rfc6381|template^audio/3gpp rfc^rfc4393^rfc6381|template^audio/3gpp2 rfc^rfc4184|template^audio/ac3 - rfc^rfc4867|template^audio/AMR rfc^rfc4867|template^audio/AMR-WB rfc^rfc4352|template^audio/amr-wb+ rfc^rfc7310|template^audio/aptx rfc^rfc6295|template^audio/asc rfc^rfc5584|template^audio/ATRAC-ADVANCED-LOSSLESS rfc^rfc5584|template^audio/ATRAC-X rfc^rfc5584|template^audio/ATRAC3 rfc^rfc2045^rfc2046|template^audio/basic rfc^rfc4298|template^audio/BV16 rfc^rfc4298|template^audio/BV32 rfc^rfc4040|template^audio/clearmode rfc^rfc3389|template^audio/CN rfc^rfc3190|template^audio/DAT12 rfc^rfc4613|template^audio/dls rfc^rfc3557|template^audio/dsr-es201108 rfc^rfc4060|template^audio/dsr-es202050 rfc^rfc4060|template^audio/dsr-es202211 rfc^rfc4060|template^audio/dsr-es202212 rfc^rfc6469|template^audio/DV rfc^rfc4856|template^audio/DVI4 rfc^rfc4598|template^audio/eac3 rfc^rfc6849|template^audio/encaprtp rfc^rfc4788|template^audio/EVRC rfc^rfc3625|template^audio/EVRC-QCP rfc^rfc4788|template^audio/EVRC0 rfc^rfc4788|template^audio/EVRC1 rfc^rfc5188|template^audio/EVRCB rfc^rfc5188|template^audio/EVRCB0 rfc^rfc4788|template^audio/EVRCB1 rfc^rfc6884|template^audio/EVRCNW rfc^rfc6884|template^audio/EVRCNW0 rfc^rfc6884|template^audio/EVRCNW1 rfc^rfc5188|template^audio/EVRCWB rfc^rfc5188|template^audio/EVRCWB0 rfc^rfc5188|template^audio/EVRCWB1 rfc^rfc4735|template^audio/example rfc^rfc6354|template^audio/fwdred rfc^rfc7655|template^audio/G711-0 rfc^rfc5404|rfc-errata^3245|template^audio/G719 rfc^rfc4856|template^audio/G722 rfc^rfc5577|template^audio/G7221 rfc^rfc4856|template^audio/G723 rfc^rfc4856|template^audio/G726-16 rfc^rfc4856|template^audio/G726-24 rfc^rfc4856|template^audio/G726-32 rfc^rfc4856|template^audio/G726-40 rfc^rfc4856|template^audio/G728 rfc^rfc4856|template^audio/G729 rfc^rfc4749^rfc5459 rfc^rfc4856|template^audio/G729D rfc^rfc4856|template^audio/G729E rfc^rfc4856|template^audio/GSM rfc^rfc4856|template^audio/GSM-EFR rfc^rfc5993|template^audio/GSM-HR-08 rfc^rfc3952|template^audio/iLBC rfc^rfc6262|template^audio/ip-mr_v2.5 rfc^rfc4856|template^audio/L16 rfc^rfc3190|template^audio/L20 rfc^rfc3190|template^audio/L24 rfc^rfc4856|template^audio/L8 rfc^rfc4856|template^audio/LPC - rfc^rfc4723|template^audio/mobile-xmf rfc^rfc4337^rfc6381|template^audio/mp4 rfc^rfc6416|template^audio/MP4A-LATM rfc^rfc3555|template^audio/MPA rfc^rfc5219|template^audio/mpa-robust rfc^rfc3003|template^audio/mpeg rfc^rfc3640^rfc5691^rfc6295|template^audio/mpeg4-generic rfc^rfc5334|template^audio/ogg rfc^rfc7587|template^audio/opus rfc^rfc5109 rfc^rfc4856|template^audio/PCMA rfc^rfc5391|template^audio/PCMA-WB rfc^rfc4856|template^audio/PCMU rfc^rfc5391|template^audio/PCMU-WB person^Linus_Walleij|template^audio/prs.sid rfc^rfc3555^rfc3625 rfc^rfc6682|template^audio/raptorfec rfc^rfc3555|template^audio/RED person^ThreeGPP|template^audio/rtp-enc-aescm128 rfc^rfc6295|template^audio/rtp-midi rfc^rfc6849|template^audio/rtploopback rfc^rfc4588|template^audio/rtx - - rfc^rfc3558|template^audio/SMV rfc^rfc3625|template^audio/SMV-QCP rfc^rfc3558|template^audio/SMV0 person^Timo_Kosonen^Tom_White|template^audio/sp-midi rfc^rfc5574|template^audio/speex rfc^rfc4351|template^audio/t140c rfc^rfc4612|template^audio/t38 rfc^rfc4733|template^audio/telephone-event rfc^rfc4733|template^audio/tone rfc^rfc5686|template^audio/UEMCLIP rfc^rfc5109|template^audio/ulpfec rfc^rfc4856|template^audio/VDVI rfc^rfc4348^rfc4424|template^audio/VMR-WB person^Thomas_Belling|template^audio/vnd.3gpp.iufp person^Serge_De_Jaham|template^audio/vnd.4SB person^Vicki_DeBarros|template^audio/vnd.audiokoz person^Serge_De_Jaham|template^audio/vnd.CELP person^Rajesh_Kumar|template^audio/vnd.cisco.nse person^Jean-Philippe_Goulet|template^audio/vnd.cmles.radio-events person^Ann_McLaughlin|template^audio/vnd.cns.anp1 person^Ann_McLaughlin|template^audio/vnd.cns.inf1 person^Michael_A_Dolan|template^audio/vnd.dece.audio person^Armands_Strazds|template^audio/vnd.digital-winds person^Edwin_Heredia|template^audio/vnd.dlna.adts person^Steve_Hattersley|template^audio/vnd.dolby.heaac.1 person^Steve_Hattersley|template^audio/vnd.dolby.heaac.2 person^Mike_Ward|template^audio/vnd.dolby.mlp person^Steve_Hattersley|template^audio/vnd.dolby.mps person^Steve_Hattersley|template^audio/vnd.dolby.pl2 person^Steve_Hattersley|template^audio/vnd.dolby.pl2x person^Steve_Hattersley|template^audio/vnd.dolby.pl2z person^Steve_Hattersley|template^audio/vnd.dolby.pulse.1 person^Jiang_Tian|template^audio/vnd.dra person^William_Zou|template^audio/vnd.dts person^William_Zou|template^audio/vnd.dts.hd person^Peter_Siebert|template^audio/vnd.dvb.file person^Shay_Cicelsky|template^audio/vnd.everad.plj person^Swaminathan|template^audio/vnd.hns.audio person^Greg_Vaudreuil|template^audio/vnd.lucent.voice person^Steve_DiAcetis|template^audio/vnd.ms-playready.media.pya person^Nokia|template^audio/vnd.nokia.mobile-xmf person^Glenn_Parsons|template^audio/vnd.nortel.vbk person^Michael_Fox|template^audio/vnd.nuera.ecelp4800 person^Michael_Fox|template^audio/vnd.nuera.ecelp7470 person^Michael_Fox|template^audio/vnd.nuera.ecelp9600 person^Greg_Vaudreuil|template^audio/vnd.octel.sbc notes^- DEPRECATED in favor of audio/qcelp|rfc^rfc3625|template^audio/vnd.qcelp person^Greg_Vaudreuil|template^audio/vnd.rhetorex.32kadpcm person^Martin_Dawe|template^audio/vnd.rip person^David_Petersen|template^audio/vnd.sealedmedia.softseal-mpeg person^Greg_Vaudreuil|template^audio/vnd.vmx.cvsd rfc^rfc5215|template^audio/vorbis rfc^rfc5215|template^audio/vorbis-config - - - - - - - - - - - - - - - - - - - - - - - - - person^Alan_Francis|template^image/cgm - rfc^rfc4735|template^image/example rfc^rfc4047|template^image/fits rfc^rfc1494|template^image/g3fax rfc^rfc2045^rfc2046 rfc^rfc1314 rfc^rfc3745|template^image/jp2 rfc^rfc2045^rfc2046 rfc^rfc3745|template^image/jpm rfc^rfc3745|template^image/jpx person^Mark_Callow^Khronos|uri^http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration person^Ilya_Ferber|template^image/naplps - person^Glenn_Randers-Pehrson|template^image/png person^Ben_Simon|template^image/prs.btif person^Juern_Laun|template^image/prs.pti person^Michael_Sweet|template^image/pwg-raster - person^W3C|uri^http://www.w3.org/TR/SVG/mimereg.html rfc^rfc3362|template^image/t38 - rfc^rfc3302|template^image/tiff rfc^rfc3950|template^image/tiff-fx person^Kim_Scarborough|template^image/vnd.adobe.photoshop person^Gary_Clueit|template^image/vnd.airzip.accelerator.azv person^Ann_McLaughlin|template^image/vnd.cns.inf2 person^Michael_A_Dolan|template^image/vnd.dece.graphic - person^Leon_Bottou|template^image/vnd-djvu person^Peter_Siebert^Michael_Lagally|template^image/vnd.dvb.subtitle person^Jodi_Moline|template^image/vnd.dwg person^Jodi_Moline|template^image/vnd.dxf person^Scott_Becker|template^image/vnd.fastbidsheet person^Marc_Douglas_Spencer|template^image/vnd.fpx person^Arild_Fuldseth|template^image/vnd.fst person^Masanori_Onda|template^image/vnd.fujixerox.edmics-mmr person^Masanori_Onda|template^image/vnd.fujixerox.edmics-rlc person^Martin_Bailey|template^image/vnd.globalgraphics.pgb person^Simon_Butcher|template^image/vnd.microsoft.icon person^Saveen_Reddy|template^image/vnd.mix person^Stuart_Parmenter|template^image/vnd.mozilla.apng person^Gregory_Vaughan|template^image/vnd.ms-modi - person^Marc_Douglas_Spencer|template^image/vnd.net-fpx - person^Randolph_Fritz^Greg_Ward|template^image/vnd.radiance person^David_Petersen|template^image/vnd.sealed-png person^David_Petersen|template^image/vnd.sealedmedia.softseal-gif person^David_Petersen|template^image/vnd.sealedmedia.softseal-jpg person^Jodi_Moline|template^image/vnd-svf person^Ni_Hui|template^image/vnd.tencent.tap person^Henrik_Andersson|template^image/vnd.valve.source.texture person^Peter_Stark|template^image/vnd-wap-wbmp person^Steven_Martin|template^image/vnd.xiff person^Chris_Charabaruk|template^image/vnd.zbrush.pcx - - - - - - - - - - - - - - - - - - - - - - - - - - - - rfc^rfc3862|template^message/CPIM rfc^rfc1894|template^message/delivery-status rfc^rfc3798|template^message/disposition-notification rfc^rfc4735|template^message/example rfc^rfc2045^rfc2046 rfc^rfc5965|template^message/feedback-report rfc^rfc6532|template^message/global rfc^rfc6533|template^message/global-delivery-status rfc^rfc6533|template^message/global-disposition-notification rfc^rfc6533|template^message/global-headers rfc^rfc7230|template^message/http rfc^rfc5438|template^message/imdn+xml notes^- OBSOLETED by RFC5537|person^Henry_Spencer|rfc^rfc5537|template^message/news rfc^rfc2045^rfc2046 rfc^rfc2045^rfc2046 rfc^rfc2660|template^message/s-http rfc^rfc3261|template^message/sip rfc^rfc3420|template^message/sipfrag rfc^rfc3886|template^message/tracking-status notes^- OBSOLETED by request|person^Nicholas_Parks_Young|template^message/vnd.si.simp person^Mick_Conley|template^message/vnd.wfa.wsc rfc^rfc4735|template^model/example person^Curtis_Parks|template^model/iges rfc^rfc2077 person^James_Riordon|template^model/vnd.collada+xml person^Jason_Pratt|template^model/vnd-dwf person^Michael_Powers|template^model/vnd.flatland.3dml person^Attila_Babits|template^model/vnd.gdl person^Attila_Babits|template^model/vnd.gs-gdl person^Yutaka_Ozaki|template^model/vnd.gtw person^Christopher_Brooks|template^model/vnd.moml+xml person^Boris_Rabinovitch|template^model/vnd.mts person^Eric_Lengyel|template^model/vnd.opengex person^Parasolid|template^model/vnd.parasolid.transmit-binary person^Parasolid|template^model/vnd.parasolid.transmit-text person^Henrik_Andersson|template^model/vnd.valve.source.compiled-map person^Boris_Rabinovitch|template^model/vnd.vtu rfc^rfc2077 - person^Web3D_X3D|template^model/x3d+fastinfoset - person^Web3D^Web3D_X3D|template^model/x3d+xml person^Web3D^Web3D_X3D|template^model/x3d-vrml rfc^rfc2046^rfc2045 person^Patrik_Faltstrom|template^multipart/appledouble rfc^rfc7233|template^multipart/byteranges rfc^rfc2046^rfc2045 rfc^rfc1847|template^multipart/encrypted rfc^rfc4735|template^multipart/example rfc^rfc7578|template^multipart/form-data person^Dave_Crocker|template^multipart/header-set rfc^rfc2046^rfc2045 rfc^rfc2046^rfc2045 rfc^rfc2387|template^multipart/related rfc^rfc6522|template^multipart/report rfc^rfc1847|template^multipart/signed rfc^rfc2421^rfc2423|template^multipart/voice-message - person^W3C^Robin_Berjon|template^multipart/x-mixed-replace - - - - - rfc^rfc6015|template^text/1d-interleaved-parityfec person^W3C^Robin_Berjon|template^text/cache-manifest rfc^rfc5545|template^text/calendar - rfc^rfc2318|template^text/css rfc^rfc4180^rfc7111|template^text/csv person^National_Archives_UK^David_Underdown|template^text/csv-schema notes^- DEPRECATED by RFC6350|rfc^rfc2425^rfc6350|template^text/directory rfc^rfc4027|template^text/dns notes^- OBSOLETED in favor of application/ecmascript|rfc^rfc4329|template^text/ecmascript rfc^rfc6849|template^text/encaprtp rfc^rfc1896 rfc^rfc4735|template^text/example rfc^rfc6354|template^text/fwdred rfc^rfc6787|template^text/grammar-ref-list person^W3C^Robin_Berjon|template^text/html notes^- OBSOLETED in favor of application/javascript|rfc^rfc4329|template^text/javascript person^Peeter_Piegaze|template^text/jcr-cnd draft^RFC-ietf-appsawg-text-markdown-12|template^text/markdown person^Jesse_Alama|template^text/mizar person^W3C^Eric_Prudhommeaux|template^text/n3 draft^RFC-ietf-mmusic-rfc2326bis-40|template^text/parameters rfc^rfc5109 rfc^rfc2046^rfc3676^rfc5147 person^W3C^Ivan_Herman|template^text/provenance-notation person^Benja_Fallenstein|template^text/prs.fallenstein.rst person^John_Lines|template^text/prs.lines.tag rfc^rfc6682|template^text/raptorfec rfc^rfc4102|template^text/RED rfc^rfc6522|template^text/rfc822-headers rfc^rfc2045^rfc2046 person^Paul_Lindner|template^text/rtf person^ThreeGPP|template^text/rtp-enc-aescm128 rfc^rfc6849|template^text/rtploopback rfc^rfc4588|template^text/rtx rfc^rfc1874|template^text/SGML rfc^rfc4103|template^text/t140 person^Paul_Lindner|template^text/tab-separated-values rfc^rfc4263|template^text/troff person^W3C^Eric_Prudhommeaux|template^text/turtle rfc^rfc5109|template^text/ulpfec rfc^rfc2483|template^text/uri-list rfc^rfc6350|template^text/vcard person^Regis_Dehoux|template^text/vnd-a person^Steve_Allen|template^text/vnd.abc person^Robert_Byrnes|template^text/vnd-curl - - - person^Charles_Plessy|template^text/vnd.debian.copyright person^Dan_Bradley|template^text/vnd.DMClientScript person^Peter_Siebert^Michael_Lagally|template^text/vnd.dvb.subtitle person^Stefan_Eilemann|template^text/vnd.esmertec.theme-descriptor - person^John-Mark_Gurney|template^text/vnd.fly person^Kari_E._Hurtta|template^text/vnd.fmi.flexstor person^John_Ellson|template^text/vnd.graphviz person^Michael_Powers|template^text/vnd.in3d.3dml person^Michael_Powers|template^text/vnd.in3d.spot person^IPTC|template^text/vnd.IPTC.NewsML person^IPTC|template^text/vnd.IPTC.NITF person^Mikusiak_Lubos|template^text/vnd.latex-z person^Mark_Patton|template^text/vnd.motorola.reflex person^Jan_Nelson|template^text/vnd.ms-mediapackage person^Feiyu_Xie|template^text/vnd.net2phone.commcenter.command rfc^rfc5707|template^text/vnd.radisys.msml-basic-layout notes^- OBSOLETED by request|person^Nicholas_Parks_Young|template^text/vnd.si.uricatalogue person^Gary_Adams|template^text/vnd.sun.j2me.app-descriptor person^David_Lee_Lambert|template^text/vnd.trolltech.linguist person^WAP-Forum|template^text/vnd.wap.si person^WAP-Forum|template^text/vnd.wap.sl person^Peter_Stark|template^text/vnd.wap-wml person^Peter_Stark|template^text/vnd.wap.wmlscript - - - - - - - - - - - - - - - - - rfc^rfc7303|template^text/xml rfc^rfc7303|template^text/xml-external-parsed-entity rfc^rfc6015|template^video/1d-interleaved-parityfec rfc^rfc3839^rfc6381|template^video/3gpp rfc^rfc4396|template^video/3gpp-tt rfc^rfc4393^rfc6381|template^video/3gpp2 rfc^rfc3555|template^video/BMPEG rfc^rfc3555|template^video/BT656 rfc^rfc3555|template^video/CelB - rfc^rfc6469|template^video/DV rfc^rfc6849|template^video/encaprtp rfc^rfc4735|template^video/example - rfc^rfc4587|template^video/H261 rfc^rfc3555|template^video/H263 rfc^rfc4629|template^video/H263-1998 rfc^rfc4629|template^video/H263-2000 rfc^rfc6184|template^video/H264 rfc^rfc6185|template^video/H264-RCDO rfc^rfc6190|template^video/H264-SVC person^David_Singer^ISO-IEC_JTC1|template^video/iso.segment rfc^rfc3555|template^video/JPEG rfc^rfc5371^rfc5372|template^video/jpeg2000 - rfc^rfc3745|template^video/mj2 rfc^rfc3555|template^video/MP1S rfc^rfc3555|template^video/MP2P rfc^rfc3555|template^video/MP2T rfc^rfc4337^rfc6381|template^video/mp4 rfc^rfc6416|template^video/MP4V-ES rfc^rfc2045^rfc2046 rfc^rfc3640|template^video/mpeg4-generic rfc^rfc3555|template^video/MPV rfc^rfc4856|template^video/nv rfc^rfc5334|template^video/ogg rfc^rfc5109 rfc^rfc2862|template^video/pointer person^Paul_Lindner|rfc^rfc6381|template^video/quicktime rfc^rfc6682|template^video/raptorfec rfc^rfc4175 person^ThreeGPP|template^video/rtp-enc-aescm128 rfc^rfc6849|template^video/rtploopback rfc^rfc4588|template^video/rtx rfc^rfc3497|template^video/SMPTE292M rfc^rfc5109|template^video/ulpfec rfc^rfc4425|template^video/vc1 person^Frank_Rottmann|template^video/vnd.CCTV person^Michael_A_Dolan|template^video/vnd.dece.hd person^Michael_A_Dolan|template^video/vnd.dece.mobile person^Michael_A_Dolan|template^video/vnd.dece-mp4 person^Michael_A_Dolan|template^video/vnd.dece.pd person^Michael_A_Dolan|template^video/vnd.dece.sd person^Michael_A_Dolan|template^video/vnd.dece.video person^Nathan_Zerbe|template^video/vnd.directv-mpeg person^Nathan_Zerbe|template^video/vnd.directv.mpeg-tts person^Edwin_Heredia|template^video/vnd.dlna.mpeg-tts person^Peter_Siebert^Kevin_Murray|template^video/vnd.dvb.file person^Arild_Fuldseth|template^video/vnd.fvt person^Swaminathan|template^video/vnd.hns.video person^Shuji_Nakamura|template^video/vnd.iptvforum.1dparityfec-1010 person^Shuji_Nakamura|template^video/vnd.iptvforum.1dparityfec-2005 person^Shuji_Nakamura|template^video/vnd.iptvforum.2dparityfec-1010 person^Shuji_Nakamura|template^video/vnd.iptvforum.2dparityfec-2005 person^Shuji_Nakamura|template^video/vnd.iptvforum.ttsavc person^Shuji_Nakamura|template^video/vnd.iptvforum.ttsmpeg2 person^Tom_McGinty|template^video/vnd.motorola.video person^Tom_McGinty|template^video/vnd.motorola.videop person^Heiko_Recktenwald|template^video/vnd-mpegurl person^Steve_DiAcetis|template^video/vnd.ms-playready.media.pyv person^Petteri_Kangaslampi|template^video/vnd.nokia.interleaved-multimedia person^Nokia|template^video/vnd.nokia.videovoip person^John_Clark|template^video/vnd.objectvideo person^Henrik_Andersson|template^video/vnd.radgamettools.bink person^Henrik_Andersson|template^video/vnd.radgamettools.smacker person^David_Petersen|template^video/vnd.sealed.mpeg1 person^David_Petersen|template^video/vnd.sealed.mpeg4 person^David_Petersen|template^video/vnd.sealed-swf person^David_Petersen|template^video/vnd.sealedmedia.softseal-mov person^Michael_A_Dolan|template^video/vnd.uvvu-mp4 person^John_Wolfe|template^video/vnd-vivo draft^RFC-ietf-payload-vp8-17|template^video/VP8 - - - - - - - - - - - - - - - - - - - - - - - - - - mime-types-data-3.2015.1120/data/mime.docs.column0000644000175000017500000000753212627041214022470 0ustar balasankarcbalasankarc- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Fixes a bug with IE6 and progressive JPEGs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - see-also:image/x-xcf - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - mime-types-data-3.2015.1120/data/mime.friendly.column0000644000175000017500000005117012627041214023351 0ustar balasankarcbalasankarc- - - - - - - - - - - - - - - - - - en^Andrew Toolkit - - en^Applixware - - en^Atom Syndication Format en^Atom Publishing Protocol - - en^Atom Publishing Protocol Service Document - - - - - - - - - - - - - en^Voice Browser Call Control - en^Cloud Data Management Interface (CDMI) - Capability en^Cloud Data Management Interface (CDMI) - Contaimer en^Cloud Data Management Interface (CDMI) - Domain en^Cloud Data Management Interface (CDMI) - Object en^Cloud Data Management Interface (CDMI) - Queue - - - - - - - - - - - - - - - - en^CU-SeeMe - - - en^Web Distributed Authoring and Versioning - - - - - - - - - - - en^Data Structure for the Security Suitability of Cryptographic Algorithms en^Data Structure for the Security Suitability of Cryptographic Algorithms - - en^ECMAScript - - - en^Extensible MultiModal Annotation - - - en^Electronic Publication - - - en^Efficient XML Interchange - - - - - en^Portable Font Resource en^Web Open Font Format - - - - - - - - - - - - en^Hyperstudio - - - - - - - - - - - - - - en^Internet Protocol Flow Information Export - - - en^Java Archive en^Java Serialized Object en^Java Bytecode File en^JavaScript - - - en^JavaScript Object Notation (JSON) - - - - - - - - - - - - - - - en^Macintosh BinHex 4.0 en^Compact Pro - - en^Metadata Authority Description Schema en^MARC Formats en^MARC21 XML Schema - en^Mathematica Notebooks - en^Mathematical Markup Language - - - - - - - - - - - - - en^Mbox database files - - en^Media Server Control Markup Language - - en^Metalink en^Metadata Encoding and Transmission Standard - - en^Metadata Object Description Schema - - - - en^MPEG-21 en^MPEG4 - - - - - - - en^Microsoft Word en^Material Exchange Format - - - - - - - - - - en^Binary Data en^Office Document Architecture - en^Open eBook Publication Structure en^Ogg - en^Microsoft OneNote - - - en^XML Patch Framework en^Adobe Portable Document Format - en^Pretty Good Privacy - en^Pretty Good Privacy - Signature en^PICSRules - - en^PKCS #10 - Certification Request Standard - en^PKCS #7 - Cryptographic Message Syntax Standard en^PKCS #7 - Cryptographic Message Syntax Standard en^PKCS #8 - Private-Key Information Syntax Standard en^Attribute Certificate en^Internet Public Key Infrastructure - Certificate en^Internet Public Key Infrastructure - Certificate Revocation Lists en^Internet Public Key Infrastructure - Certification Path en^Internet Public Key Infrastructure - Certificate Management Protocole en^Pronunciation Lexicon Specification - en^PostScript - - - - en^CU-Writer - - - - - en^Portable Symmetric Key Container - - - - en^Resource Description Framework en^IMS Networks en^Relax NG Compact Syntax - - - en^XML Resource Lists en^XML Resource Lists Diff - - - en^XML Resource Lists - - - - en^Really Simple Discovery en^RSS - Really Simple Syndication en^Rich Text Format - - - - en^Systems Biology Markup Language - - en^Server-Based Certificate Validation Protocol - Validation Request en^Server-Based Certificate Validation Protocol - Validation Response en^Server-Based Certificate Validation Protocol - Validation Policies - Request en^Server-Based Certificate Validation Protocol - Validation Policies - Response en^Session Description Protocol - - - - - en^Secure Electronic Transaction - Payment - en^Secure Electronic Transaction - Registration - - en^S Hexdump Format - - - - - - - en^Synchronized Multimedia Integration Language - - - - en^SPARQL - Query en^SPARQL - Results - - en^Speech Recognition Grammar Specification en^Speech Recognition Grammar Specification - XML en^Search/Retrieve via URL Response Format - en^Speech Synthesis Markup Language - - - - - - - - - - - - en^Text Encoding and Interchange en^Sharing Transaction Fraud Data - - en^Time Stamped Data Envelope - - - - - - - - - - - - - - - - - - en^3rd Generation Partnership Project - Pic Large en^3rd Generation Partnership Project - Pic Small en^3rd Generation Partnership Project - Pic Var - - - - - - - en^3rd Generation Partnership Project - Transaction Capabilities Application Part en^3M Post It Notes en^Simply Accounting en^Simply Accounting - Data Import en^ACU Cobol en^ACU Cobol en^Adobe AIR Application - - en^Adobe Flex Project - en^Adobe XML Data Package en^Adobe XML Forms Data Format - - en^Ahead AIR Application en^AirZip FileSECURE en^AirZip FileSECURE en^Amazon Kindle eBook format en^Active Content Compression en^AmigaDE - en^Android Package Archive - en^ANSER-WEB Terminal Client - Certificate Issue en^ANSER-WEB Terminal Client - Web Funds Transfer en^Antix Game Player - - - - en^Apple Installer Package en^Multimedia Playlist Unicode - - en^Arista Networks Software Image - - en^Audiograph - - - - - - en^Blueice Research Multipass - - en^BMI Drawing Data Interchange en^BusinessObjects - - - - - en^CambridgeSoft Chem Draw en^Karaoke on Chipnuts Chipsets en^Interactive Geometry Software Cinderella - - en^Claymore Data Files en^RetroPlatform Player en^Clonk Game en^ClueTrust CartoMobile - Config en^ClueTrust CartoMobile - Config Package - - - - - en^Sixth Floor Media - CommonSpace en^CIM Database en^CosmoCaller en^CrickSoftware - Clicker en^CrickSoftware - Clicker - Keyboard en^CrickSoftware - Clicker - Palette en^CrickSoftware - Clicker - Template en^CrickSoftware - Clicker - Wordbank en^Critical Tools - PERT Chart EXPERT en^PosML - - - en^Adobe PostScript Printer Description File Format - - - en^CURL Applet en^CURL Applet - - - en^RemoteDocs R-Viewer - - - - - en^FCS Express Layout Link - - - en^New Moon Liftoff/DNA - en^Dolby Meridian Lossless Packing - - - en^DPGraph en^DreamFactory - - - - - en^Digital Video Broadcasting - - - - - - - - - - - - - - - - - en^Digital Video Broadcasting - en^DynaGeo - - - en^EcoWin Chart - - - - - - en^Enliven Viewer - - en^QUASS Stream Player en^QUASS Stream Player en^QuickAnime Player en^SimpleAnimeLite Player en^QUASS Stream Player - en^MICROSEC e-Szign¢ - - - - - - - - - - - - - - - - - - - - - - - en^EZPix Secure Photo Album en^EZPix Secure Photo Album - - en^Forms Data Format - en^Digital Siesmograph Networks - SEED Datafiles - - - en^NpGraphIt en^FluxTime Clip - en^FrameMaker Normal Format en^Frogans Player en^Frogans Player en^Friendly Software Corporation en^Fujitsu Oasys en^Fujitsu Oasys en^Fujitsu Oasys en^Fujitsu Oasys en^Fujitsu Oasys - - en^Fujitsu - Xerox 2D CAD Data en^Fujitsu - Xerox DocuWorks en^Fujitsu - Xerox DocuWorks Binder - - - en^FuzzySheet en^Genomatix Tuxedo Framework - - en^GeoGebra en^GeoGebra en^GeoMetry Explorer en^GEONExT and JSXGraph en^GeoplanW en^GeospacW - - - en^GameMaker ActiveX en^Google Earth - KML en^Google Earth - Zipped KML - - - en^GrafEq - en^Groove - Account en^Groove - Help en^Groove - Identity Message en^Groove - Injector en^Groove - Tool Message en^Groove - Tool Template en^Groove - Vcard - en^Hypertext Application Language en^ZVUE Media Manager en^Homebanking Computer Interface (HBCI) - - en^Archipelago Lesson Player en^HP-GL/2 and HP RTL en^Hewlett Packard Instant Delivery en^Hewlett-Packard's WebPrintSmart en^HP Indigo Digital Press - Job Layout Languate en^HP Printer Command Language en^PCL 6 Enhanced (Formely PCL XL) - en^Hydrostatix Master Suite - en^3D Crossword Plugin - - en^MiniPay en^MO:DCA-P en^IBM DB2 Rights Manager en^IBM Electronic Media Management System - Secure Container en^ICC profile - en^igLoader en^ImmerVision PURE Players en^ImmerVision PURE Players - - - - - - - - - - - - - - en^IOCOM Visimeet en^Intercon FormNet en^Interactive Geometry Software - - en^Open Financial Exchange en^Quicken - - - - - - - en^IP Unplugged Roaming Client en^iRepository / Lucidoc Editor en^Express by Infoseek en^International Society for Advancement of Cytometry en^Lightspeed Audio Lab - - - - - - - - en^Mobile Information Device Profile en^RhymBox en^Joda Archive - en^Kahootz en^KDE KOffice Office Suite - Karbon en^KDE KOffice Office Suite - KChart en^KDE KOffice Office Suite - Kformula en^KDE KOffice Office Suite - Kivio en^KDE KOffice Office Suite - Kontour en^KDE KOffice Office Suite - Kpresenter en^KDE KOffice Office Suite - Kspread en^KDE KOffice Office Suite - Kword en^Kenamea App en^Kidspiration en^Kinar Applications en^SSEYO Koan Play File en^Kodak Storyshare en^Laser App Enterprise - en^Life Balance - Desktop Edition en^Life Balance - Exchange Format en^Lotus 1-2-3 en^Lotus Approach en^Lotus Freelance en^Lotus Notes en^Lotus Organizer en^Lotus Screencam en^Lotus Wordpro en^MacPorts Port System - - - - - - en^Micro CADAM Helix D&D en^MedCalc en^MediaRemote - en^Medical Waveform Encoding Format en^Melody Format for Mobile Platform - en^Micrografx en^Micrografx iGrafx Professional - - en^FrameMaker Interchange Format - - en^Mobius Management Systems - UniversalArchive en^Mobius Management Systems - Distribution Database en^Mobius Management Systems - Basket file en^Mobius Management Systems - Query File en^Mobius Management Systems - Script Language en^Mobius Management Systems - Policy Definition Language File en^Mobius Management Systems - Topic Index File en^Mophun VM en^Mophun Certificate - - - - - - - - en^XUL - XML User Interface Language - en^Microsoft Artgalry - en^Microsoft Cabinet File en^Microsoft Excel en^Microsoft Excel - Add-In File en^Microsoft Excel - Binary Workbook en^Microsoft Excel - Macro-Enabled Workbook en^Microsoft Excel - Macro-Enabled Template File en^Microsoft Embedded OpenType en^Microsoft Html Help File en^Microsoft Class Server en^Microsoft Learning Resource Module - en^Microsoft Office System Release Theme - en^Microsoft Trust UI Provider - Security Catalog en^Microsoft Trust UI Provider - Certificate Trust Link - en^Microsoft PowerPoint en^Microsoft PowerPoint - Add-in file en^Microsoft PowerPoint - Macro-Enabled Presentation File en^Microsoft PowerPoint - Macro-Enabled Open XML Slide en^Microsoft PowerPoint - Macro-Enabled Slide Show File en^Micosoft PowerPoint - Macro-Enabled Template File en^Microsoft Project - - - - - - - - en^Micosoft Word - Macro-Enabled Document en^Micosoft Word - Macro-Enabled Template en^Microsoft Works en^Microsoft Windows Media Player Playlist en^Microsoft XML Paper Specification - en^3GPP MSEQ File - - - - en^MUsical Score Interpreted Code Invented for the ASCII designation of Notation en^Muvee Automatic Video Editing - - - - - en^neuroLanguage - - - en^NobleNet Directory en^NobleNet Sealer en^NobleNet Web - - - - - - - - - en^N-Gage Game Data en^N-Gage Game Installer - - - - en^Nokia Radio Application - Preset en^Nokia Radio Application - Preset en^Novadigm's RADIA and EDM products en^Novadigm's RADIA and EDM products en^Novadigm's RADIA and EDM products - - - - - en^OpenDocument Chart en^OpenDocument Chart Template en^OpenDocument Database en^OpenDocument Formula en^OpenDocument Formula Template en^OpenDocument Graphics en^OpenDocument Graphics Template en^OpenDocument Image en^OpenDocument Image Template en^OpenDocument Presentation en^OpenDocument Presentation Template en^OpenDocument Spreadsheet en^OpenDocument Spreadsheet Template en^OpenDocument Text en^OpenDocument Text Master en^OpenDocument Text Template en^Open Document Text Web - - - - - - - - - - - - - en^Sugar Linux Application Bundle - - - - - - - - - - - - - - - - - - - - - - - en^OMA Download Agents - - - - - - - - - - - - - - - - - - en^Open Office Extension - - - - - - - - - - - - - - - en^Microsoft Office - OOXML - Presentation - - en^Microsoft Office - OOXML - Presentation (Slide) - - - en^Microsoft Office - OOXML - Presentation (Slideshow) - - - - en^Microsoft Office - OOXML - Presentation Template - - - - - - - - - - - - - - - en^Microsoft Office - OOXML - Spreadsheet - - - - - en^Microsoft Office - OOXML - Spreadsheet Teplate - - - - - - - - en^Microsoft Office - OOXML - Word Document - - - - - - - - - en^Microsoft Office - OOXML - Word Document Template - - - - - - - - en^MapGuide DBXML - en^OSGi Deployment Package - - - - en^PalmOS Data - - en^PawaaFILE - en^Proprietary P&G Standard Reporting System en^Proprietary P&G Standard Reporting System - en^Pcsel eFIF File en^Qualcomm's Plaza Mobile Internet - en^PocketLearn Viewers en^PowerBuilder - - - - - - en^Preview Systems ZipLock/VBox en^EFI Proteus en^PubliShare Objects en^Princeton Video Image - - - en^QuarkXPress - - - - - - - - - - - - - - - - - - en^RealVNC en^Recordare Applications en^Recordare Applications - en^CryptoNote en^Blackberry COD File en^RealMedia - en^ROUTE 66 Location Based Services - - - en^SailingTracker - - - - - - - - - - - - - - en^SeeMail en^Secured eMail en^Secured eMail en^Secured eMail en^Shana Informed Filler en^Shana Informed Filler en^Shana Informed Filler en^Shana Informed Filler en^SimTech MindMapper - en^SMAF File - en^SMART Technologies Apps - - en^SudokuMagic en^TIBCO Spotfire en^TIBCO Spotfire - - - en^StarOffice - Calc - en^StarOffice - Draw en^StarOffice - Impress en^StarOffice - Math en^StarOffice - Writer en^StarOffice - Writer (Global) - en^StepMania - - en^OpenOffice - Calc (Spreadsheet) en^OpenOffice - Calc Template (Spreadsheet) en^OpenOffice - Draw (Graphics) en^OpenOffice - Draw Template (Graphics) en^OpenOffice - Impress (Presentation) en^OpenOffice - Impress Template (Presentation) en^OpenOffice - Math (Formula) en^OpenOffice - Writer (Text - HTML) en^OpenOffice - Writer (Text - HTML) en^OpenOffice - Writer Template (Text - HTML) en^ScheduleUs en^SourceView Document - en^Symbian Install Package en^SyncML en^SyncML - Device Management en^SyncML - Device Management - - - - - - en^Tao Intent - - en^MobileTV en^TRI Systems Config en^Triscape Map Explorer en^True BASIC - - en^Universal Forms Description Language en^User Interface Quartz - Theme (Symbian) en^UMAJIN en^Unity 3d en^Unique Object Markup Language - - - - - - - - - - - - - - - en^VirtualCatalog - - - - en^Microsoft Visio en^Visionary - en^Viewport+ - - en^WAP Binary XML (WBXML) en^Compiled Wireless Markup Language (WMLC) en^WMLScript en^WebTurbo - - - - - - - en^Mathematica Notebook Player en^Wordperfect en^SundaHus WQ - en^Worldtalk - - - - en^CorelXARA en^Extensible Forms Description Language - - - - - - - en^HV Voice Dictionary en^HV Script en^HV Voice Parameter en^Open Score Format en^OSFPVG - en^SMAF Audio en^SMAF Phrase - - - en^CustomMenu en^Z.U.L. Geometry en^Zzazz Deck en^VoiceXML - - - - en^Widget Packaging and XML Configuration en^WinHelp - - - - - - en^WSDL - Web Services Description Language en^Web Services Policy - en^7-Zip en^AbiWord - en^Ace Archive - en^Adobe (Macropedia) Authorware - Binary File en^Adobe (Macropedia) Authorware - Map en^Adobe (Macropedia) Authorware - Segment File en^Binary CPIO Archive en^BitTorrent - - en^Bzip Archive en^Bzip2 Archive - en^Video CD - en^pIRCh en^Portable Game Notation (Chess Games) - - - - - en^CPIO Archive en^C Shell Script - en^Debian Package - en^Adobe Shockwave Player en^Doom Video Game - en^Navigation Control file for XML (for ePub) en^Digital Talking Book en^Digital Talking Book - Resource File en^Device Independent File Format (DVI) - - - - en^Glyph Bitmap Distribution Format en^Ghostscript Font en^PSF Fonts - en^OpenType Font File en^Portable Compiled Format en^Server Normal Format - en^TrueType Font en^PostScript Fonts - - en^FutureSplash Animator - - - en^Gnumeric - en^GNU Tar Files - en^Hierarchical Data Format - - - - - - - - - - - - - en^Java Network Launching Protocol - - - - en^LaTeX - - - - - - - - - - - en^Mobipocket en^Microsoft ClickOnce - en^Microsoft Windows Media Player Download Package en^Microsoft Windows Media Player Skin Package en^Microsoft XAML Browser Application en^Microsoft Access en^Microsoft Office Binder en^Microsoft Information Card en^Microsoft Clipboard Clip - en^Microsoft Application en^Microsoft MediaView en^Microsoft Windows Metafile en^Microsoft Money en^Microsoft Publisher en^Microsoft Schedule+ en^Microsoft Windows Terminal Services - en^Microsoft Wordpad en^Network Common Data Form (NetCDF) - - - - - - en^PKCS #12 - Personal Information Exchange Syntax Standard en^PKCS #7 - Cryptographic Message Syntax Standard (Certificates) en^PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response) - - en^RAR Archive - - - - - en^Bourne Shell Script en^Shell Archive en^Adobe Flash en^Microsoft Silverlight - - - - - en^Stuffit Archive en^Stuffit Archive - en^System V Release 4 CPIO Archive en^System V Release 4 CPIO Checksum Data - - en^Tar File (Tape Archive) en^Tcl Script en^TeX en^TeX Font Metric en^GNU Texinfo Document - - - - - - - en^Ustar (Uniform Standard Tape Archive) - en^WAIS Source - - - - - - - en^X.509 Certificate en^Xfig - en^XPInstall - Mozilla - - - - - - - - en^XML Configuration Access Protocol - XCAP Diff - - - - - en^XML Encryption Syntax and Processing en^XHTML - The Extensible HyperText Markup Language - en^XML - Extensible Markup Language en^Document Type Definition - - - en^XML-Binary Optimized Packaging - en^XML Transformations en^XSPF - XML Shareable Playlist Format en^MXML en^YANG Data Modeling Language en^YIN (YANG - XML) en^Zip Archive - - - - - - en^Adaptive differential pulse-code modulation - - - - - - - - en^Sun Audio - Au file format - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - en^MIDI - Musical Instrument Digital Interface - en^MPEG-4 Audio - - - en^MPEG Audio - en^Ogg Audio - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - en^DECE Audio en^Digital Winds Music - - - - - - - - - en^DRA Audio en^DTS Audio en^DTS High Definition Audio - - - en^Lucent Voice en^Microsoft PlayReady Ecosystem - - en^Nuera ECELP 4800 en^Nuera ECELP 7470 en^Nuera ECELP 9600 - - - en^Hit'n'Mix - - - - en^Open Web Media Project - Audio en^Advanced Audio Coding (AAC) en^Audio Interchange File Format - - - - en^M3U (Multimedia Playlist) en^Microsoft Windows Media Audio Redirector en^Microsoft Windows Media Audio - en^Real Audio Sound en^Real Audio Sound - en^Waveform Audio File Format (WAV) - en^ChemDraw eXchange file en^Crystallographic Interchange Format en^CrystalMaker Data Format en^Chemical Markup Language en^Chemical Style Markup Language - en^XYZ File Format - en^Bitmap Image File en^Computer Graphics Metafile - - - en^G3 Fax Image en^Graphics Interchange Format en^Image Exchange Format - en^JPEG Image - - en^OpenGL Textures (KTX) - - en^Portable Network Graphics (PNG) en^BTIF - - - en^Scalable Vector Graphics (SVG) - - en^Tagged Image File Format - en^Photoshop Document - - en^DECE Graphic - en^DjVu en^Close Captioning - Subtitle en^DWG Drawing en^AutoCAD DXF en^FastBid Sheet en^FlashPix en^FAST Search & Transfer ASA en^EDMICS 2000 en^EDMICS 2000 - - - - en^Microsoft Document Imaging Format - en^FlashPix - - - - - - - - en^WAP Bitamp (WBMP) en^eXtended Image File Format (XIFF) - en^WebP Image - - en^CMU Image en^Corel Metafile Exchange (CMX) - en^FreeHand MX - en^Icon Image - en^Bitmap Image File - en^PCX Image en^PICT Image en^Portable Anymap Image en^Portable Bitmap Format en^Portable Graymap Format en^Portable Pixmap Format en^Silicon Graphics RGB Bitmap - - - - en^X BitMap - - en^X PixMap en^X Window Dump - - - - - - - - - - - - - - en^Email Message - - - - - - - en^Initial Graphics Exchange Specification (IGES) en^Mesh Data Type en^COLLADA en^Autodesk Design Web Format (DWF) - en^Geometric Description Language (GDL) - en^Gen-Trix Studio - en^Virtue MTS - - - - en^Virtue VTU en^Virtual Reality Modeling Language - - - - - - - - - - - - - - - - - - - - - - - - - - - - en^iCalendar - en^Cascading Style Sheets (CSS) en^Comma-Separated Values - - - - - - - - - en^HyperText Markup Language (HTML) - - - - en^Notation3 - - en^Text File - - en^PRS Lines Tag - - - en^Rich Text Format (RTF) - - - - en^Standard Generalized Markup Language (SGML) - en^Tab Separated Values en^troff en^Turtle (Terse RDF Triple Language) - en^URI Resolution Services - - - en^Curl - Applet en^Curl - Detached Applet en^Curl - Manifest File en^Curl - Source Code - - - - - en^mod_fly / fly.cgi en^FLEXSTOR en^Graphviz en^In3D - 3DML en^In3D - 3DML - - - - - - - - en^J2ME App Descriptor - - - en^Wireless Markup Language (WML) en^Wireless Markup Language Script (WMLScript) en^Assembler Source File en^C Source File - - en^Fortran Source File en^Java Source File - - en^Pascal Source File - en^Setext - en^UUEncode en^vCalendar en^vCard - - - - - en^3GP - en^3GP2 - - - - - - - - en^H.261 en^H.263 - - en^H.264 - - - en^JPGVideo - en^JPEG 2000 Compound Image File Format en^Motion JPEG 2000 - - - en^MPEG-4 Video - en^MPEG Video - - - en^Ogg Video - - en^Quicktime Video - - - - - - - - - en^DECE High Definition Video en^DECE Mobile Video - en^DECE PD Video en^DECE SD Video en^DECE Video - - - - en^FAST Search & Transfer ASA - - - - - - - - - en^MPEG Url en^Microsoft PlayReady Ecosystem Video - - - - - - - - - en^DECE MP4 en^Vivo - en^Open Web Media Project - Video - - en^Flash Video en^FLI/FLC Animation Format en^Flash Video - - en^M4v - - - en^Microsoft Advanced Systems Format (ASF) - en^Microsoft Windows Media en^Microsoft Windows Media Video en^Microsoft Windows Media Audio/Video Playlist en^Microsoft Windows Media Video Playlist en^Audio Video Interleave (AVI) en^SGI Movie - - - en^CoolTalk - - mime-types-data-3.2015.1120/data/mime.use_instead.column0000644000175000017500000001167312627041214024044 0ustar balasankarcbalasankarc- - - - - application/x-msaccess - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/x-bleeper - - - - application/cals-1840 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/vnd.ms-excel - - - - - - - - - - application/x-futuresplash application/x-ghostview - - - - - - application/x-hep - - - - - - - - application/x-imagemap - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/vnd.lotus-1-2-3 - - application/x-mac-compactpro - - - - - application/vnd.mcd - application/x-mathematica-old - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/x-quicktimeplayer - - - - - - application/remote-printing - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/smil+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/x-toolbook - - - - - - - - - - - application/x-VMSBACKUP - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/vnd.aristanetworks.swi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/vnd.visionary - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/vnd.nokia.ncd - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - application/vnd.wordperfect - application/x-wordperfect6.1 application/vnd.wordperfect - - application/vnd.lotus-1-2-3 - - application/x-msaccess - - - - - - - - - - - - - - - - - - application/x-compressed - - - - - - - - - - - - - - - - - application/vnd.ms-excel - - - - - - - - - - - - - - - - - - - application/gzip - - - - - - - - - - - - - - - - - application/javascript - - application/vnd.lotus-1-2-3 - - - - - application/vnd.framemaker application/vnd.mcd - - - - - - - - - - - - - - - - - - - - - application/msword - - - - - - - - - - - - - - - - application/rtf - - - - - - - - - - - - - - - - - - - - - - - - - text/troff - - - application/x-ustar - - - - - application/msword application/vnd.wordperfect - application/vnd.wordperfect - - - - - - - - application/x400-bp - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - audio/qcelp - - - - - - - - - - - - - - - - - - - - - - - - - - - x-chemical/x-pdb x-chemical/x-xyz x-drawing/dwf image/x-bmp - image/x-cmu-raster - - - - - - - - - - - - - - - - - - - image/x-targa - - - - - - image/x-vnd.dgn - - - - - - - - - - - - - - - - image/vnd.net-fpx - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - multipart/parallel - - application/x-www-form-urlencoded - - - - text/csv - - - - - application/ecmascript - - - - - - application/javascript - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - model/vnd.flatland.3dml - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/rtf - - - - - model/vnd.flatland.3dml - - - - - - - - - - video/x-dl - - - video/x-gl - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - video/DV - - - - - - - - - - - - - - - - - - - - - - - mime-types-data-3.2015.1120/data/mime.pext.column0000644000175000017500000000743612627041214022523 0ustar balasankarcbalasankarc- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - mime-types-data-3.2015.1120/support/0000755000175000017500000000000012627041214020167 5ustar balasankarcbalasankarcmime-types-data-3.2015.1120/support/iana_registry.rb0000644000175000017500000000667112627041214023366 0ustar balasankarcbalasankarc# -*- ruby encoding: utf-8 -*- $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'open-uri' require 'nokogiri' require 'cgi' require 'pathname' 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), to: Pathname(__FILE__).join('../../types') }.freeze.each_value(&:freeze) def self.download(options = {}) dest = Pathname(options[:to] || DEFAULTS[:to]).expand_path url = options.fetch(:url, DEFAULTS[:url]) puts 'Downloading IANA MIME type assignments.' puts "\t#{url}" xml = Nokogiri::XML(open(url) { |f| f.read }) xml.css('registry registry').each do |registry| next if registry.at_css('title').text == 'example' new(registry: registry, to: dest) do |parser| puts "Extracting #{parser.type}/*." parser.parse parser.save end end end attr_reader :type def initialize(options = {}) @registry = options.fetch(:registry) @to = Pathname(options.fetch(:to)).expand_path @type = @registry.at_css('title').text @name = "#{@type}.yaml" @file = @to.join(@name) @types = mime_types_for(@file) yield self if block_given? end ASSIGNMENT_FILE_REF = '{%s=http://www.iana.org/assignments/media-types/%s}' def parse @registry.css('record').each do |record| subtype = record.at_css('name').text obsolete = record.at_css('obsolete').text rescue nil use_instead = record.at_css('deprecated').text rescue nil if subtype =~ /OBSOLETE|DEPRECATE/i use_instead ||= $1 if subtype =~ /in favou?r of (.*)/ obsolete = true end subtype, notes = subtype.split(/ /, 2) xrefs = parse_refs_and_files( record.css('xref'), record.css('file'), subtype ) xrefs['notes'] << notes if notes content_type = [ @type, subtype ].join('/') types = @types.select { |t| (t.content_type.downcase == content_type.downcase) } if types.empty? MIME::Type.new(content_type) do |mt| mt.xrefs = xrefs mt.registered = true mt.obsolete = obsolete if obsolete mt.use_instead = use_instead if use_instead @types << mt end else types.each { |mt| mt.registered = true mt.xrefs = xrefs mt.obsolete = obsolete if obsolete mt.use_instead = use_instead if use_instead } end end end def save @to.mkpath File.open(@file, 'wb') { |f| f.puts @types.map.to_a.sort.uniq.to_yaml } end private def mime_types_for(file) if file.exist? MIME::Types::Loader.load_from_yaml(file) else MIME::Types.new end end def parse_refs_and_files(refs, files, subtype) xr = MIME::Types::Container.new refs.each do |xref| type = xref['type'] data = xref['data'] next if data.nil? || data.empty? xr[type] << data end files.each do |file| file_name = if file.text == subtype [ @type, subtype ].join('/') else file.text end xr[file['type']] << file_name end xr end end mime-types-data-3.2015.1120/support/convert.rb0000644000175000017500000000736612627041214022210 0ustar balasankarcbalasankarc# -*- ruby encoding: utf-8 -*- $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 # Create a Convert instance that converts from YAML. def from_yaml(path = nil) new(path: path, from: :yaml) end # Create a Convert instance that converts from JSON. def from_json(path = nil) new(path: path, from: :json) end # Create a Convert instance that converts from the mime-types 1.x file # format. def from_v1(path = nil) new(path: path, from: :v1) end # Converts from YAML to JSON. Defaults to converting to a single file. def from_yaml_to_json(args) from_yaml(yaml_path(args.source)). 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. def from_json_to_yaml(args) from_json(json_path(args.source)). 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, 'types'.freeze) end def json_path(path) path_or_default(path, 'data'.freeze) end def path_or_default(path, default) if path.nil? or path.empty? default else path end end def multiple_files(flag) case flag.to_s.downcase when 'true', 'yes', 'multiple' true else false end end end def initialize(options = {}) if options[:path].nil? or options[:path].empty? 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]) load_from(options[:from]) end # Convert the data to JSON. def to_json(options = {}) options[:destination] or require_destination! write_types(options.merge(format: :json)) end # Convert the data to YAML. def to_yaml(options = {}) options[:destination] or require_destination! write_types(options.merge(format: :yaml)) end private def load_from(source_type) method = :"load_#{source_type}" @loader.send(method) end def write_types(options) if options[:multiple_files] write_multiple_files(options) else write_one_file(options) end end def write_one_file(options) d = options[:destination] d = File.join(d, "mime-types.#{options[:format]}") if File.directory?(d) File.open(d, 'wb') { |f| f.puts convert(@loader.container.map.sort, options[:format]) } end def write_multiple_files(options) d = options[:destination] must_be_directory!(d) media_types = MIME::Types.map(&:media_type).uniq media_types.each { |media_type| n = File.join(d, "#{media_type}.#{options[:format]}") t = @loader.container.select { |e| e.media_type == media_type } File.open(n, 'wb') { |f| f.puts convert(t.sort, options[:format]) } } end def convert(data, format) data.send(:"to_#{format}") end def require_destination! fail ArgumentError, 'Destination path is required.' end def must_be_directory!(path) 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) path end end mime-types-data-3.2015.1120/support/apache_mime_types.rb0000644000175000017500000000461412627041214024175 0ustar balasankarcbalasankarc# -*- ruby encoding: utf-8 -*- $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require 'open-uri' require 'nokogiri' require 'cgi' require 'pathname' 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 ApacheMIMETypes DEFAULTS = { url: %q(http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types), to: Pathname(__FILE__).join('../../types') }.freeze.each_value(&:freeze) X_PREFIX_RE = /^x-/ def self.download(options = {}) dest = Pathname(options[:to] || DEFAULTS[:to]).expand_path url = options.fetch(:url, DEFAULTS[:url]) puts 'Downloading Apache MIME type list.' puts "\t#{url}" data = open(url) { |f| f.read }.split($/) data.delete_if { |line| line =~ /\A#/ } conf = MIME::Types::Container.new data.each do |line| type = line.split(/\t+/) key = type.first.split(%r{/}).first.gsub(X_PREFIX_RE, '') conf[key] << type end conf.each do |type, types| next if type == 'example' new(type: type, registry: types, to: dest) do |parser| puts "Extracting #{parser.type}/*." parser.parse parser.save end end end attr_reader :type def initialize(options = {}) @registry = options.fetch(:registry) @to = Pathname(options.fetch(:to)).expand_path @type = options.fetch(:type) @name = "#{@type}.yaml" @file = @to.join(@name) @types = mime_types_for(@file) yield self if block_given? end def parse @registry.each do |record| content_type = record.first extensions = record.last.split(/\s+/) types = @types.select { |t| (t.content_type.downcase == content_type.downcase) } if types.empty? MIME::Type.new(content_type) do |mt| mt.extensions = extensions mt.registered = false @types.add(mt) end else types.each { |mt| mt.extensions = (mt.extensions + extensions) } end end end def save @to.mkpath File.open(@file, 'wb') { |f| f.puts @types.map.to_a.sort.to_yaml } end private def mime_types_for(file) if file.exist? MIME::Types::Loader.load_from_yaml(file) else MIME::Types.new end end end mime-types-data-3.2015.1120/support/convert/0000755000175000017500000000000012627041214021647 5ustar balasankarcbalasankarcmime-types-data-3.2015.1120/support/convert/columnar.rb0000644000175000017500000000375212627041214024023 0ustar balasankarcbalasankarcrequire 'convert' class Convert::Columnar < Convert class << self # Converts from YAML to Columnar format. This *always* converts to multiple # files. def from_yaml_to_columnar(args) from_yaml(yaml_path(args.source)). to_columnar(destination: columnar_path(args.destination)) end private def columnar_path(path) path_or_default(path, 'data') end end # Convert the data to multiple text files. def to_columnar(options = {}) root = options[:destination] or require_destination! @root = must_be_directory!(root) @data = @loader.container.sort.map(&:to_h) column_file('content_type') do |type| [ type['content-type'], Array(type['extensions']).join(' ') ]. flatten.join(' ').strip end required_file('encoding') optional_file('pext', 'preferred-extension') optional_file('docs') bool_file('flags', 'obsolete', 'registered', 'signature') dict_file('xrefs') dict_file('friendly') optional_file('use_instead', 'use-instead') end def column_file(name, &block) File.open(File.join(@root, "mime.#{name}.column"), 'wb') do |f| f.puts @data.map(&block) end end def bool_file(name, *fields) fields = [ name ] if fields.empty? column_file(name) do |type| fields.map { |field| type[field] ? 1 : 0 }.join(' ') end end def required_file(name, field = name) column_file(name) { |type| type[field] } end def optional_file(name, field = name) column_file(name) { |type| opt(type[field]) } end def array_file(name, field = name) column_file(name) { |type| arr(type[field]) } end def dict_file(name, field = name) column_file(name) { |type| dict(type[field]) } end def opt(value) value || '-' end def arr(value) Array(opt(value)).join('|') end def dict(value) if value value.sort.map { |k, v| [ k, Array(v).compact.join('^') ].join('^') }.join('|') else '-' end end end mime-types-data-3.2015.1120/.hoerc0000644000175000017500000000025512627041214017556 0ustar balasankarcbalasankarc--- exclude: !ruby/regexp '/ \.(tmp|swp)$ | (?i:TAGS) | \.(git|DS_Store|hoerc)\/ | ^Gemfile(?:\.lock)?$ | ^support\/ | ^types\/ | \.gemspec$ /x' mime-types-data-3.2015.1120/History.md0000644000175000017500000004041412627041214020441 0ustar balasankarcbalasankarc# MIME Types Changes by Version ## 3.2015.1120 / 2015-11-20 * Extracted from [ruby-mime-types][rmt]. * Added a [Code of Conduct][]. * The versioning has changed to be semantic on format plus date in two parts. * All registry formats have been updated to remove deprecated data. * The columnar format has been updated to store three boolean flags in a single flags file. * Updated the conversion and management utilities to work with ruby-mime-types 3.x. * Updated the IANA media registry entries as of release date: * Updated metadata for application/scim+json, audio/G711-0, text/markdown. * Added application/cdni, application/csvm+json, application/rfc+xml, application/vnd.3gpp.access-transfer-events+xml, application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml, application/vnd.ms-windows.devicepairing, application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph, application/vnd.pagerduty+json, video/VP8. ## 2.6.2 / 2015-09-13 * Updated the IANA media registry entries as of release date: * Updated metadata for application/cals-1840, application/index.obj, application/ocsp-response, application/vnd.dtg.local.html, application/vnd.pwg-multiplexed, audio/G7221, audio/opus. * Added application/pkcs12, application/scim+json, multipart/form-data. application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml, application/vnd.3gpp.mid-call+xml, application/vnd.3gpp-state-and-event-info+xml, application.3gpp.ussd+xml, application/vnd.anki, application/vnd.biopax.rdf+xml, application/vnd.drive+json, application/vnd.firemonkeys.cloudcell, application/vnd.hyperdrive+json, application/vnd.openblox.game+xml, application/vnd.openblox.game-binary, application/vnd.uri-map, audio/G711-0, image/vnd.mozilla.apng. ## 2.6 / 2015-05-25 * Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension to application/font-woff, [ruby-mime-types#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, application/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: * Added MIME types: application/A2L, application/AML, application/ATFX, application/ATXML, application/CDFX+XML, application/CEA, application/DII, application/DIT, application/jose, application/jose+json, application/json-seq, application/jwk+json, application/jwk-set+json, application/jwt, application/LXF, application/MF4, application/rdap+json, application/vnd.apache.thrift.compact, vnd.apache.thrift.json, application/vnd.citationstyles.style+xml, application/vnd.coffeescript, application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image, application/vnd.gerber, application/vnd.gov.sk.e-form+xml, application/vnd.gov.sk.e-form+zip, application/vnd.gov.sk.xmldatacontainer+xml, application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2, application/vnd.ims.imsccv1p3, application/vnd.micro+json, application/vnd.microsoft.portable-executable, application/vnd.msa-disk-image, application/vnd.oracle.resource+json, application/vnd.tmd.mediaflex.api+xml, audio/opus, image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as TEMPORARY). * Updated metadata for application/coap-group+json (RFC7390), application/epub+zip (now registered), application/merge-patch+json (RFC7396), application/smil, application/vnd.arastra.swi, application/vnd.geocube+xml, application/vnd.gmx, application/xhtml+xml, text/directory. * Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and text/tab-separated-values, [ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89). * Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type image/x-ms-bmp with the extension `bmp`, [ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90). ## 2.4.2 / 2014-10-15 * Added application/vnd.ms-outlook as an unregistered MIME type with the extension `msg`. Provided by @keerthisiv in [ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72). ## 2.4.1 / 2014-10-07 * Changed the sort order of many of the extensions to restore behaviour from mime-types 1.25.1. * Added `friendly` MIME::Type descriptions where known. * Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and application/x-msdownload. * Updated the IANA media registry entries as of release date. * Several MIME types had updated metadata (application/alto-*, RFC7285; application/calendar+json, RFC7265; application/http, RFC7230; application/xml, RFC7303; application/xml-dtd, RFC7303; application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867; audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges, RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303) * MIME::Type application/EDI-Consent was renamed to application/EDI-consent. * Obsoleted application/vnd.informix-visionary in favour of application/vnd.visionary. Obsoleted application/vnd.nokia.n-gage.symbian.install with no replacement. * Added MIME types: application/ATF, application/coap-group+json, application/DCD, application/merge-patch+json, application/scaip+xml, application/vnd.apache.thrift.binary, application/vnd.artsquare, application/vnd.doremir.scorecloud-binary-document, application/vnd.dzr, application/vnd.maxmind.maxmind-db, application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml, image/vnd.tencent.tap. ## 2.3 / 2014-05-23 * Updated the IANA media registry entries as of release date. * Several MIME types had additional metadata added on the most recent import. * MIME::Type application/pidfxml was renamed to application/pidf+xml. * Added MIME types: application/3gpdash-qoe-report+xml, 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/calendar+json, application/vnd.debian.binary-package, application/vnd.geo+json, 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.mason+json, application/vnd.miele+json, application/vnd.ms-3mfdocument, application/vnd.panoply, application/vnd.valve.source.material, application/vnd.yaoweme, audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex, model/vnd.valve.source.compiled-map, model/x3d+fastinfoset, text/cache-manifest ## 2.2 / 2014-03-14 * Added .sj to `application/javascript` as provided by Brandon Galbraith (@brandongalbraith) in [ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58). * Marked application/excel and application/x-excel as obsolete in favour of application/vnd.ms-excel per [ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60). * Merged duplicate MIME types into the registered MIME type. The only difference between the MIME types was capitalization; the MIME type registry is case-preserving. * Affected MIME types: application/vnd.3M.Post-it-Notes, application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml, application/vnd.hp-HPGL, application/vnd.hp-PCL, application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay, application/vnd.Kinar, application/vnd.MFER, application/vnd.Mobius.DAF, application/vnd.Mobius.DIS, application/vnd.Mobius.MBK, application/vnd.Mobius.MSL, application/vnd.Mobius.MQY, application/vnd.Mobius.PLC, application/vnd.Mobius.TXF, application/vnd.ms-excel.addin.macroEnabled.12, application/vnd.ms-excel.sheet.binary.macroEnabled.12, application/vnd.ms-excel.sheet.macroEnabled.12, application/vnd.ms-excel.template.macroEnabled.12, application/vnd.ms-powerpoint.addin.macroEnabled.12, application/vnd.ms-powerpoint.presentation.macroEnabled.12, application/vnd.ms-powerpoint.slide.macroEnabled.12, application/vnd.ms-powerpoint.slideshow.macroEnabled.12, application/vnd.ms-powerpoint.template.macroEnabled.12, application/vnd.ms-word.document.macroEnabled.12, application/vnd.ms-word.template.macroEnabled.12, application/vnd.novadigm.EDM, application/vnd.novadigm.EDX, application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress, application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261, video/H263, video/H264, video/JPEG, video/MJ2. * Updated the IANA media registry entries as of release date. * Registered type person names have been updated from surname only to full name. * Several types had updated RFC or draft RFC references. * Added application/bacnet-xdd+zip, application/cms, application/load-control+xml, application/PDX, application/ttml+xml, application/vnd.collection.doc+json, application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos, text/parameters, text/vnd.a, video/iso.segment ## 2.1 / 2014-01-25 * The IANA media type registry format changed, resulting in updates to most of the 1,427 registered MIME types. * Many registered MIME types have had some metadata updates due to the change in the IANA registry format. * MIME types having a publicly available registry application now include a link to that file in references. * Added `xrefs` data as discovered (see the API changes noted above). * The Apache mime types configuration has been added to track additional common but unregistered MIME types and known extensions for those MIME types. This has affected many of the available MIME types. * Added newly registered MIME types: * application/emotionml+xml, application/ODX, application/prs.hpub+zip, application/vcard+json, application/vnd.bekitzur-stech+json, application/vnd.etsi.timestamp-token, application/vnd.oma.cab-feature-handler+xml, application/vnd.openeye.oeb, application/vnd.tcpdump.pcap, audio/amr-wb, model/x3d+xml, model/x3d-vrml * Added 180 unregistered MIME types from the Apache list: * application/applixware, application/cu-seeme, application/docbook+xml, application/gml+xml, application/gpx+xml, application/gxf, application/java-archive, application/java-serialized-object, application/java-vm, application/jsonml+json, application/metalink+xml, application/omdoc+xml, application/onenote, application/pics-rules, application/rsd+xml, application/ssdl+xml, application/vnd.3m.post-it-notes, application/vnd.amazon.ebook, application/vnd.anser-web-funds-transfer-initiation, application/vnd.curl.car, application/vnd.curl.pcurl, application/vnd.dolby.mlp, application/vnd.ds-keypoint, application/vnd.flographit, application/vnd.handheld-entertainment+xml, application/vnd.hp-hpgl, application/vnd.hp-pcl, application/vnd.hp-pclxl, application/vnd.ibm.minipay, application/vnd.kinar, application/vnd.mfer, application/vnd.mobius.daf, application/vnd.mobius.dis, application/vnd.mobius.mbk, application/vnd.mobius.mqy, application/vnd.mobius.msl, application/vnd.mobius.plc, application/vnd.mobius.txf, application/vnd.ms-excel.addin.macroenabled.12, application/vnd.ms-excel.sheet.binary.macroenabled.12, application/vnd.ms-excel.sheet.macroenabled.12, application/vnd.ms-excel.template.macroenabled.12, application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl, application/vnd.ms-powerpoint.addin.macroenabled.12, application/vnd.ms-powerpoint.presentation.macroenabled.12, application/vnd.ms-powerpoint.slide.macroenabled.12, application/vnd.ms-powerpoint.slideshow.macroenabled.12, application/vnd.ms-powerpoint.template.macroenabled.12, application/vnd.ms-word.document.macroenabled.12, application/vnd.ms-word.template.macroenabled.12, application/vnd.novadigm.edm, application/vnd.novadigm.edx, application/vnd.novadigm.ext, application/vnd.quark.quarkxpress, application/vnd.rim.cod, application/vnd.rn-realmedia-vbr, application/vnd.simtech-mindmapper, application/vnd.symbian.install, application/winhlp, application/x-abiword, application/x-ace-compressed, application/x-authorware-bin, application/x-authorware-map, application/x-authorware-seg, application/x-bittorrent, application/x-blorb, application/x-bzip, application/x-cbr, application/x-cfs-compressed, application/x-chat, application/x-conference, application/x-dgc-compressed, application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml, application/x-dtbresource+xml, application/x-envoy, application/x-eva, application/x-font-bdf, application/x-font-ghostscript, application/x-font-linux-psf, application/x-font-otf, application/x-font-pcf, application/x-font-snf, application/x-font-ttf, application/x-font-type1, application/x-freearc, application/x-gca-compressed, application/x-glulx, application/x-gnumeric, application/x-gramps-xml, application/x-install-instructions, application/x-iso9660-image, application/x-lzh-compressed, application/x-mie, application/x-ms-application, application/x-ms-shortcut, application/x-ms-xbap, application/x-msbinder, application/x-mscardfile, application/x-msclip, application/x-msmediaview, application/x-msmetafile, application/x-msmoney, application/x-mspublisher, application/x-msschedule, application/x-msterminal, application/x-mswrite, application/x-nzb, application/x-pkcs12, application/x-pkcs7-certificates, application/x-pkcs7-certreqresp, application/x-research-info-systems, application/x-silverlight-app, application/x-sql, application/x-stuffitx, application/x-subrip, application/x-t3vm-image, application/x-tads, application/x-tex-tfm, application/x-tgif, application/x-xfig, application/x-xliff+xml, application/x-xz, application/x-zmachine, application/xaml+xml, application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb, audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf, audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm, chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml, chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds, image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image, image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain, text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl, text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo, text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261, video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v, video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv * Merged the non-standard VMS platform text/plain with the standard text/plain. [rmt]: https://github.com/mime-types/ruby-mime-types [Code of Conduct]: Code-of-Conduct.md mime-types-data-3.2015.1120/types/0000755000175000017500000000000012627041214017617 5ustar balasankarcbalasankarcmime-types-data-3.2015.1120/types/video.yaml0000644000175000017500000005154012627041214021616 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: video/1d-interleaved-parityfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6015 template: - video/1d-interleaved-parityfec registered: true - !ruby/object:MIME::Type content-type: video/3gpp friendly: en: 3GP encoding: base64 extensions: - 3gp - 3gpp xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3839 - rfc6381 template: - video/3gpp registered: true - !ruby/object:MIME::Type content-type: video/3gpp-tt encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4396 template: - video/3gpp-tt registered: true - !ruby/object:MIME::Type content-type: video/3gpp2 friendly: en: 3GP2 encoding: base64 extensions: - 3g2 - 3gpp2 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4393 - rfc6381 template: - video/3gpp2 registered: true - !ruby/object:MIME::Type content-type: video/BMPEG encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/BMPEG registered: true - !ruby/object:MIME::Type content-type: video/BT656 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/BT656 registered: true - !ruby/object:MIME::Type content-type: video/CelB encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/CelB registered: true - !ruby/object:MIME::Type content-type: video/dl encoding: base64 extensions: - dl obsolete: true use-instead: video/x-dl registered: false - !ruby/object:MIME::Type content-type: video/DV encoding: base64 extensions: - dv xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6469 template: - video/DV registered: true - !ruby/object:MIME::Type content-type: video/encaprtp encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6849 template: - video/encaprtp registered: true - !ruby/object:MIME::Type content-type: video/example encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4735 template: - video/example registered: true - !ruby/object:MIME::Type content-type: video/gl encoding: base64 extensions: - gl obsolete: true use-instead: video/x-gl registered: false - !ruby/object:MIME::Type content-type: video/H261 friendly: en: H.261 encoding: base64 extensions: - h261 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4587 template: - video/H261 registered: true - !ruby/object:MIME::Type content-type: video/H263 friendly: en: H.263 encoding: base64 extensions: - h263 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/H263 registered: true - !ruby/object:MIME::Type content-type: video/H263-1998 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4629 template: - video/H263-1998 registered: true - !ruby/object:MIME::Type content-type: video/H263-2000 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4629 template: - video/H263-2000 registered: true - !ruby/object:MIME::Type content-type: video/H264 friendly: en: H.264 encoding: base64 extensions: - h264 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6184 template: - video/H264 registered: true - !ruby/object:MIME::Type content-type: video/H264-RCDO encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6185 template: - video/H264-RCDO registered: true - !ruby/object:MIME::Type content-type: video/H264-SVC encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6190 template: - video/H264-SVC registered: true - !ruby/object:MIME::Type content-type: video/iso.segment encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Singer - ISO-IEC_JTC1 template: - video/iso.segment registered: true - !ruby/object:MIME::Type content-type: video/JPEG friendly: en: JPGVideo encoding: base64 extensions: - jpgv xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/JPEG registered: true - !ruby/object:MIME::Type content-type: video/jpeg2000 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5371 - rfc5372 template: - video/jpeg2000 registered: true - !ruby/object:MIME::Type content-type: video/jpm friendly: en: JPEG 2000 Compound Image File Format encoding: base64 extensions: - jpgm - jpm registered: false - !ruby/object:MIME::Type content-type: video/MJ2 friendly: en: Motion JPEG 2000 encoding: base64 extensions: - mj2 - mjp2 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3745 template: - video/mj2 registered: true - !ruby/object:MIME::Type content-type: video/MP1S encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/MP1S registered: true - !ruby/object:MIME::Type content-type: video/MP2P encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/MP2P registered: true - !ruby/object:MIME::Type content-type: video/MP2T encoding: base64 extensions: - ts xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/MP2T registered: true - !ruby/object:MIME::Type content-type: video/mp4 friendly: en: MPEG-4 Video encoding: base64 extensions: - mp4 - mpg4 - f4v - f4p - mp4v xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4337 - rfc6381 template: - video/mp4 registered: true - !ruby/object:MIME::Type content-type: video/MP4V-ES encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6416 template: - video/MP4V-ES registered: true - !ruby/object:MIME::Type content-type: video/mpeg friendly: en: MPEG Video encoding: base64 extensions: - mp2 - mp3g - mpe - mpeg - mpg - m1v - m2v xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 registered: true - !ruby/object:MIME::Type content-type: video/mpeg4-generic encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3640 template: - video/mpeg4-generic registered: true - !ruby/object:MIME::Type content-type: video/MPV encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - video/MPV registered: true - !ruby/object:MIME::Type content-type: video/nv encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - video/nv registered: true - !ruby/object:MIME::Type content-type: video/ogg friendly: en: Ogg Video encoding: base64 extensions: - ogg - ogv xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5334 template: - video/ogg registered: true - !ruby/object:MIME::Type content-type: video/parityfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5109 registered: true - !ruby/object:MIME::Type content-type: video/pointer encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2862 template: - video/pointer registered: true - !ruby/object:MIME::Type content-type: video/quicktime friendly: en: Quicktime Video encoding: base64 extensions: - qt - mov xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6381 person: - Paul_Lindner template: - video/quicktime registered: true - !ruby/object:MIME::Type content-type: video/raptorfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6682 template: - video/raptorfec registered: true - !ruby/object:MIME::Type content-type: video/raw encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4175 registered: true - !ruby/object:MIME::Type content-type: video/rtp-enc-aescm128 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - video/rtp-enc-aescm128 registered: true - !ruby/object:MIME::Type content-type: video/rtploopback encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6849 template: - video/rtploopback registered: true - !ruby/object:MIME::Type content-type: video/rtx encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4588 template: - video/rtx registered: true - !ruby/object:MIME::Type content-type: video/SMPTE292M encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3497 template: - video/SMPTE292M registered: true - !ruby/object:MIME::Type content-type: video/ulpfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5109 template: - video/ulpfec registered: true - !ruby/object:MIME::Type content-type: video/vc1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4425 template: - video/vc1 registered: true - !ruby/object:MIME::Type content-type: video/vnd.CCTV encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frank_Rottmann template: - video/vnd.CCTV registered: true - !ruby/object:MIME::Type content-type: video/vnd.dece.hd friendly: en: DECE High Definition Video encoding: base64 extensions: - uvh - uvvh xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - video/vnd.dece.hd registered: true - !ruby/object:MIME::Type content-type: video/vnd.dece.mobile friendly: en: DECE Mobile Video encoding: base64 extensions: - uvm - uvvm xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - video/vnd.dece.mobile registered: true - !ruby/object:MIME::Type content-type: video/vnd.dece.mp4 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - video/vnd.dece-mp4 registered: true - !ruby/object:MIME::Type content-type: video/vnd.dece.pd friendly: en: DECE PD Video encoding: base64 extensions: - uvp - uvvp xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - video/vnd.dece.pd registered: true - !ruby/object:MIME::Type content-type: video/vnd.dece.sd friendly: en: DECE SD Video encoding: base64 extensions: - uvs - uvvs xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - video/vnd.dece.sd registered: true - !ruby/object:MIME::Type content-type: video/vnd.dece.video friendly: en: DECE Video encoding: base64 extensions: - uvv - uvvv xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - video/vnd.dece.video registered: true - !ruby/object:MIME::Type content-type: video/vnd.directv.mpeg encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nathan_Zerbe template: - video/vnd.directv-mpeg registered: true - !ruby/object:MIME::Type content-type: video/vnd.directv.mpeg-tts encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nathan_Zerbe template: - video/vnd.directv.mpeg-tts registered: true - !ruby/object:MIME::Type content-type: video/vnd.dlna.mpeg-tts encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Edwin_Heredia template: - video/vnd.dlna.mpeg-tts registered: true - !ruby/object:MIME::Type content-type: video/vnd.dvb.file encoding: base64 extensions: - dvb xrefs: !ruby/object:MIME::Types::Container person: - Peter_Siebert - Kevin_Murray template: - video/vnd.dvb.file registered: true - !ruby/object:MIME::Type content-type: video/vnd.fvt friendly: en: FAST Search & Transfer ASA encoding: base64 extensions: - fvt xrefs: !ruby/object:MIME::Types::Container person: - Arild_Fuldseth template: - video/vnd.fvt registered: true - !ruby/object:MIME::Type content-type: video/vnd.hns.video encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Swaminathan template: - video/vnd.hns.video registered: true - !ruby/object:MIME::Type content-type: video/vnd.iptvforum.1dparityfec-1010 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shuji_Nakamura template: - video/vnd.iptvforum.1dparityfec-1010 registered: true - !ruby/object:MIME::Type content-type: video/vnd.iptvforum.1dparityfec-2005 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shuji_Nakamura template: - video/vnd.iptvforum.1dparityfec-2005 registered: true - !ruby/object:MIME::Type content-type: video/vnd.iptvforum.2dparityfec-1010 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shuji_Nakamura template: - video/vnd.iptvforum.2dparityfec-1010 registered: true - !ruby/object:MIME::Type content-type: video/vnd.iptvforum.2dparityfec-2005 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shuji_Nakamura template: - video/vnd.iptvforum.2dparityfec-2005 registered: true - !ruby/object:MIME::Type content-type: video/vnd.iptvforum.ttsavc encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shuji_Nakamura template: - video/vnd.iptvforum.ttsavc registered: true - !ruby/object:MIME::Type content-type: video/vnd.iptvforum.ttsmpeg2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shuji_Nakamura template: - video/vnd.iptvforum.ttsmpeg2 registered: true - !ruby/object:MIME::Type content-type: video/vnd.motorola.video encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Tom_McGinty template: - video/vnd.motorola.video registered: true - !ruby/object:MIME::Type content-type: video/vnd.motorola.videop encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Tom_McGinty template: - video/vnd.motorola.videop registered: true - !ruby/object:MIME::Type content-type: video/vnd.mpegurl friendly: en: MPEG Url encoding: 8bit extensions: - mxu - m4u xrefs: !ruby/object:MIME::Types::Container person: - Heiko_Recktenwald template: - video/vnd-mpegurl registered: true - !ruby/object:MIME::Type content-type: video/vnd.ms-playready.media.pyv friendly: en: Microsoft PlayReady Ecosystem Video encoding: base64 extensions: - pyv xrefs: !ruby/object:MIME::Types::Container person: - Steve_DiAcetis template: - video/vnd.ms-playready.media.pyv registered: true - !ruby/object:MIME::Type content-type: video/vnd.nokia.interleaved-multimedia encoding: base64 extensions: - nim xrefs: !ruby/object:MIME::Types::Container person: - Petteri_Kangaslampi template: - video/vnd.nokia.interleaved-multimedia registered: true - !ruby/object:MIME::Type content-type: video/vnd.nokia.videovoip encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - video/vnd.nokia.videovoip registered: true - !ruby/object:MIME::Type content-type: video/vnd.objectvideo encoding: base64 extensions: - mp4 - m4v xrefs: !ruby/object:MIME::Types::Container person: - John_Clark template: - video/vnd.objectvideo registered: true - !ruby/object:MIME::Type content-type: video/vnd.radgamettools.bink encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - video/vnd.radgamettools.bink registered: true - !ruby/object:MIME::Type content-type: video/vnd.radgamettools.smacker encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - video/vnd.radgamettools.smacker registered: true - !ruby/object:MIME::Type content-type: video/vnd.sealed.mpeg1 encoding: base64 extensions: - s11 xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - video/vnd.sealed.mpeg1 registered: true - !ruby/object:MIME::Type content-type: video/vnd.sealed.mpeg4 encoding: base64 extensions: - smpg - s14 xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - video/vnd.sealed.mpeg4 registered: true - !ruby/object:MIME::Type content-type: video/vnd.sealed.swf encoding: base64 extensions: - sswf - ssw xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - video/vnd.sealed-swf registered: true - !ruby/object:MIME::Type content-type: video/vnd.sealedmedia.softseal.mov encoding: base64 extensions: - smov - smo - s1q xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - video/vnd.sealedmedia.softseal-mov registered: true - !ruby/object:MIME::Type content-type: video/vnd.uvvu.mp4 friendly: en: DECE MP4 encoding: base64 extensions: - uvu - uvvu xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - video/vnd.uvvu-mp4 registered: true - !ruby/object:MIME::Type content-type: video/vnd.vivo friendly: en: Vivo encoding: base64 extensions: - viv - vivo xrefs: !ruby/object:MIME::Types::Container person: - John_Wolfe template: - video/vnd-vivo registered: true - !ruby/object:MIME::Type content-type: video/VP8 encoding: base64 xrefs: !ruby/object:MIME::Types::Container draft: - RFC-ietf-payload-vp8-17 template: - video/VP8 registered: true - !ruby/object:MIME::Type content-type: video/webm friendly: en: Open Web Media Project - Video encoding: base64 extensions: - webm registered: false - !ruby/object:MIME::Type content-type: video/x-dl encoding: base64 extensions: - dl registered: false - !ruby/object:MIME::Type content-type: video/x-dv encoding: base64 extensions: - dv obsolete: true use-instead: video/DV registered: false - !ruby/object:MIME::Type content-type: video/x-f4v friendly: en: Flash Video encoding: base64 extensions: - f4v registered: false - !ruby/object:MIME::Type content-type: video/x-fli friendly: en: FLI/FLC Animation Format encoding: base64 extensions: - fli registered: false - !ruby/object:MIME::Type content-type: video/x-flv friendly: en: Flash Video encoding: base64 extensions: - flv registered: false - !ruby/object:MIME::Type content-type: video/x-gl encoding: base64 extensions: - gl registered: false - !ruby/object:MIME::Type content-type: video/x-ivf encoding: base64 extensions: - ivf registered: false - !ruby/object:MIME::Type content-type: video/x-m4v friendly: en: M4v encoding: base64 extensions: - m4v registered: false - !ruby/object:MIME::Type content-type: video/x-matroska encoding: base64 extensions: - mk3d - mks - mkv registered: false - !ruby/object:MIME::Type content-type: video/x-mng encoding: base64 extensions: - mng registered: false - !ruby/object:MIME::Type content-type: video/x-motion-jpeg encoding: base64 extensions: - mjpg - mjpeg registered: false - !ruby/object:MIME::Type content-type: video/x-ms-asf friendly: en: Microsoft Advanced Systems Format (ASF) encoding: base64 extensions: - asf - asx registered: false - !ruby/object:MIME::Type content-type: video/x-ms-vob encoding: base64 extensions: - vob registered: false - !ruby/object:MIME::Type content-type: video/x-ms-wm friendly: en: Microsoft Windows Media encoding: base64 extensions: - wm registered: false - !ruby/object:MIME::Type content-type: video/x-ms-wmv friendly: en: Microsoft Windows Media Video encoding: base64 extensions: - wmv registered: false - !ruby/object:MIME::Type content-type: video/x-ms-wmx friendly: en: Microsoft Windows Media Audio/Video Playlist encoding: base64 extensions: - wmx registered: false - !ruby/object:MIME::Type content-type: video/x-ms-wvx friendly: en: Microsoft Windows Media Video Playlist encoding: base64 extensions: - wvx registered: false - !ruby/object:MIME::Type content-type: video/x-msvideo friendly: en: Audio Video Interleave (AVI) encoding: base64 extensions: - avi registered: false - !ruby/object:MIME::Type content-type: video/x-sgi-movie friendly: en: SGI Movie encoding: base64 extensions: - movie registered: false - !ruby/object:MIME::Type content-type: video/x-smv encoding: base64 extensions: - smv registered: false mime-types-data-3.2015.1120/types/conference.yaml0000644000175000017500000000024012627041214022606 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: x-conference/x-cooltalk friendly: en: CoolTalk encoding: base64 extensions: - ice registered: false mime-types-data-3.2015.1120/types/multipart.yaml0000644000175000017500000000731312627041214022530 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: multipart/alternative encoding: 8bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2046 - rfc2045 registered: true - !ruby/object:MIME::Type content-type: multipart/appledouble encoding: 8bit xrefs: !ruby/object:MIME::Types::Container person: - Patrik_Faltstrom template: - multipart/appledouble registered: true - !ruby/object:MIME::Type content-type: multipart/byteranges encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7233 template: - multipart/byteranges registered: true - !ruby/object:MIME::Type content-type: multipart/digest encoding: 8bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2046 - rfc2045 registered: true - !ruby/object:MIME::Type content-type: multipart/encrypted encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1847 template: - multipart/encrypted registered: true - !ruby/object:MIME::Type content-type: multipart/example encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4735 template: - multipart/example registered: true - !ruby/object:MIME::Type content-type: multipart/form-data encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7578 template: - multipart/form-data registered: true - !ruby/object:MIME::Type content-type: multipart/header-set encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Dave_Crocker template: - multipart/header-set registered: true - !ruby/object:MIME::Type content-type: multipart/mixed encoding: 8bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2046 - rfc2045 registered: true - !ruby/object:MIME::Type content-type: multipart/parallel encoding: 8bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2046 - rfc2045 registered: true - !ruby/object:MIME::Type content-type: multipart/related encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2387 template: - multipart/related registered: true - !ruby/object:MIME::Type content-type: multipart/report encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6522 template: - multipart/report registered: true - !ruby/object:MIME::Type content-type: multipart/signed encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1847 template: - multipart/signed registered: true - !ruby/object:MIME::Type content-type: multipart/voice-message encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2421 - rfc2423 template: - multipart/voice-message registered: true - !ruby/object:MIME::Type content-type: multipart/x-gzip encoding: base64 registered: false - !ruby/object:MIME::Type content-type: multipart/x-mixed-replace encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C - Robin_Berjon template: - multipart/x-mixed-replace registered: true - !ruby/object:MIME::Type content-type: multipart/x-parallel encoding: base64 obsolete: true use-instead: multipart/parallel registered: false - !ruby/object:MIME::Type content-type: multipart/x-tar encoding: base64 registered: false - !ruby/object:MIME::Type content-type: multipart/x-ustar encoding: base64 registered: false - !ruby/object:MIME::Type content-type: multipart/x-www-form-urlencoded encoding: base64 obsolete: true use-instead: application/x-www-form-urlencoded registered: false - !ruby/object:MIME::Type content-type: multipart/x-zip encoding: base64 registered: false mime-types-data-3.2015.1120/types/model.yaml0000644000175000017500000001213612627041214021606 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: model/example encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4735 template: - model/example registered: true - !ruby/object:MIME::Type content-type: model/iges friendly: en: Initial Graphics Exchange Specification (IGES) encoding: base64 extensions: - igs - iges xrefs: !ruby/object:MIME::Types::Container person: - Curtis_Parks template: - model/iges registered: true - !ruby/object:MIME::Type content-type: model/mesh friendly: en: Mesh Data Type encoding: base64 extensions: - msh - mesh - silo xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2077 registered: true - !ruby/object:MIME::Type content-type: model/vnd.collada+xml friendly: en: COLLADA encoding: base64 extensions: - dae xrefs: !ruby/object:MIME::Types::Container person: - James_Riordon template: - model/vnd.collada+xml registered: true - !ruby/object:MIME::Type content-type: model/vnd.dwf friendly: en: Autodesk Design Web Format (DWF) encoding: base64 extensions: - dwf xrefs: !ruby/object:MIME::Types::Container person: - Jason_Pratt template: - model/vnd-dwf registered: true - !ruby/object:MIME::Type content-type: model/vnd.flatland.3dml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Powers template: - model/vnd.flatland.3dml registered: true - !ruby/object:MIME::Type content-type: model/vnd.gdl friendly: en: Geometric Description Language (GDL) encoding: base64 extensions: - gdl xrefs: !ruby/object:MIME::Types::Container person: - Attila_Babits template: - model/vnd.gdl registered: true - !ruby/object:MIME::Type content-type: model/vnd.gs-gdl encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Attila_Babits template: - model/vnd.gs-gdl registered: true - !ruby/object:MIME::Type content-type: model/vnd.gtw friendly: en: Gen-Trix Studio encoding: base64 extensions: - gtw xrefs: !ruby/object:MIME::Types::Container person: - Yutaka_Ozaki template: - model/vnd.gtw registered: true - !ruby/object:MIME::Type content-type: model/vnd.moml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Christopher_Brooks template: - model/vnd.moml+xml registered: true - !ruby/object:MIME::Type content-type: model/vnd.mts friendly: en: Virtue MTS encoding: base64 extensions: - mts xrefs: !ruby/object:MIME::Types::Container person: - Boris_Rabinovitch template: - model/vnd.mts registered: true - !ruby/object:MIME::Type content-type: model/vnd.opengex encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Eric_Lengyel template: - model/vnd.opengex registered: true - !ruby/object:MIME::Type content-type: model/vnd.parasolid.transmit.binary encoding: base64 extensions: - x_b - xmt_bin xrefs: !ruby/object:MIME::Types::Container person: - Parasolid template: - model/vnd.parasolid.transmit-binary registered: true - !ruby/object:MIME::Type content-type: model/vnd.parasolid.transmit.text encoding: quoted-printable extensions: - x_t - xmt_txt xrefs: !ruby/object:MIME::Types::Container person: - Parasolid template: - model/vnd.parasolid.transmit-text registered: true - !ruby/object:MIME::Type content-type: model/vnd.valve.source.compiled-map encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - model/vnd.valve.source.compiled-map registered: true - !ruby/object:MIME::Type content-type: model/vnd.vtu friendly: en: Virtue VTU encoding: base64 extensions: - vtu xrefs: !ruby/object:MIME::Types::Container person: - Boris_Rabinovitch template: - model/vnd.vtu registered: true - !ruby/object:MIME::Type content-type: model/vrml friendly: en: Virtual Reality Modeling Language encoding: base64 extensions: - wrl - vrml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2077 registered: true - !ruby/object:MIME::Type content-type: model/x3d+binary encoding: base64 extensions: - x3db - x3dbz registered: false - !ruby/object:MIME::Type content-type: model/x3d+fastinfoset encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Web3D_X3D template: - model/x3d+fastinfoset registered: true - !ruby/object:MIME::Type content-type: model/x3d+vrml encoding: base64 extensions: - x3dv - x3dvz registered: false - !ruby/object:MIME::Type content-type: model/x3d+xml encoding: base64 extensions: - x3d - x3dz xrefs: !ruby/object:MIME::Types::Container person: - Web3D - Web3D_X3D template: - model/x3d+xml registered: true - !ruby/object:MIME::Type content-type: model/x3d-vrml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Web3D - Web3D_X3D template: - model/x3d-vrml registered: true mime-types-data-3.2015.1120/types/world.yaml0000644000175000017500000000020312627041214021625 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: x-world/x-vrml encoding: base64 extensions: - wrl - vrml registered: false mime-types-data-3.2015.1120/types/image.yaml0000644000175000017500000004167312627041214021600 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: image/bmp friendly: en: Bitmap Image File encoding: base64 extensions: - bmp obsolete: true use-instead: image/x-bmp registered: false - !ruby/object:MIME::Type content-type: image/cgm friendly: en: Computer Graphics Metafile encoding: base64 extensions: - cgm xrefs: !ruby/object:MIME::Types::Container person: - Alan_Francis template: - image/cgm registered: true - !ruby/object:MIME::Type content-type: image/cmu-raster encoding: base64 obsolete: true use-instead: image/x-cmu-raster registered: false - !ruby/object:MIME::Type content-type: image/example encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4735 template: - image/example registered: true - !ruby/object:MIME::Type content-type: image/fits encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4047 template: - image/fits registered: true - !ruby/object:MIME::Type content-type: image/g3fax friendly: en: G3 Fax Image encoding: base64 extensions: - g3 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1494 template: - image/g3fax registered: true - !ruby/object:MIME::Type content-type: image/gif friendly: en: Graphics Interchange Format encoding: base64 extensions: - gif xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 registered: true - !ruby/object:MIME::Type content-type: image/ief friendly: en: Image Exchange Format encoding: base64 extensions: - ief xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1314 registered: true - !ruby/object:MIME::Type content-type: image/jp2 encoding: base64 extensions: - jp2 - jpg2 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3745 template: - image/jp2 registered: true - !ruby/object:MIME::Type content-type: image/jpeg friendly: en: JPEG Image encoding: base64 extensions: - jpeg - jpg - jpe xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 registered: true - !ruby/object:MIME::Type content-type: image/jpm encoding: base64 extensions: - jpm - jpgm xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3745 template: - image/jpm registered: true - !ruby/object:MIME::Type content-type: image/jpx encoding: base64 extensions: - jpx - jpf xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3745 template: - image/jpx registered: true - !ruby/object:MIME::Type content-type: image/ktx friendly: en: OpenGL Textures (KTX) encoding: base64 extensions: - ktx xrefs: !ruby/object:MIME::Types::Container person: - Mark_Callow - Khronos uri: - http://www.khronos.org/opengles/sdk/tools/KTX/file_format_spec/#mimeregistration registered: true - !ruby/object:MIME::Type content-type: image/naplps encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ilya_Ferber template: - image/naplps registered: true - !ruby/object:MIME::Type content-type: image/pjpeg docs: Fixes a bug with IE6 and progressive JPEGs encoding: base64 registered: false - !ruby/object:MIME::Type content-type: image/png friendly: en: Portable Network Graphics (PNG) encoding: base64 extensions: - png xrefs: !ruby/object:MIME::Types::Container person: - Glenn_Randers-Pehrson template: - image/png registered: true - !ruby/object:MIME::Type content-type: image/prs.btif friendly: en: BTIF encoding: base64 extensions: - btif xrefs: !ruby/object:MIME::Types::Container person: - Ben_Simon template: - image/prs.btif registered: true - !ruby/object:MIME::Type content-type: image/prs.pti encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Juern_Laun template: - image/prs.pti registered: true - !ruby/object:MIME::Type content-type: image/pwg-raster encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Sweet template: - image/pwg-raster registered: true - !ruby/object:MIME::Type content-type: image/sgi encoding: base64 extensions: - sgi registered: false - !ruby/object:MIME::Type content-type: image/svg+xml friendly: en: Scalable Vector Graphics (SVG) encoding: 8bit extensions: - svg - svgz xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/SVG/mimereg.html registered: true - !ruby/object:MIME::Type content-type: image/t38 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3362 template: - image/t38 registered: true - !ruby/object:MIME::Type content-type: image/targa encoding: base64 extensions: - tga obsolete: true use-instead: image/x-targa registered: false - !ruby/object:MIME::Type content-type: image/tiff friendly: en: Tagged Image File Format encoding: base64 extensions: - tiff - tif xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3302 template: - image/tiff registered: true - !ruby/object:MIME::Type content-type: image/tiff-fx encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3950 template: - image/tiff-fx registered: true - !ruby/object:MIME::Type content-type: image/vnd.adobe.photoshop friendly: en: Photoshop Document encoding: base64 extensions: - psd xrefs: !ruby/object:MIME::Types::Container person: - Kim_Scarborough template: - image/vnd.adobe.photoshop registered: true - !ruby/object:MIME::Type content-type: image/vnd.airzip.accelerator.azv encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gary_Clueit template: - image/vnd.airzip.accelerator.azv registered: true - !ruby/object:MIME::Type content-type: image/vnd.cns.inf2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ann_McLaughlin template: - image/vnd.cns.inf2 registered: true - !ruby/object:MIME::Type content-type: image/vnd.dece.graphic friendly: en: DECE Graphic encoding: base64 extensions: - uvg - uvi - uvvg - uvvi xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - image/vnd.dece.graphic registered: true - !ruby/object:MIME::Type content-type: image/vnd.dgn encoding: base64 extensions: - dgn obsolete: true use-instead: image/x-vnd.dgn registered: false - !ruby/object:MIME::Type content-type: image/vnd.djvu friendly: en: DjVu encoding: base64 extensions: - djvu - djv xrefs: !ruby/object:MIME::Types::Container person: - Leon_Bottou template: - image/vnd-djvu registered: true - !ruby/object:MIME::Type content-type: image/vnd.dvb.subtitle friendly: en: Close Captioning - Subtitle encoding: base64 extensions: - sub xrefs: !ruby/object:MIME::Types::Container person: - Peter_Siebert - Michael_Lagally template: - image/vnd.dvb.subtitle registered: true - !ruby/object:MIME::Type content-type: image/vnd.dwg friendly: en: DWG Drawing encoding: base64 extensions: - dwg xrefs: !ruby/object:MIME::Types::Container person: - Jodi_Moline template: - image/vnd.dwg registered: true - !ruby/object:MIME::Type content-type: image/vnd.dxf friendly: en: AutoCAD DXF encoding: base64 extensions: - dxf xrefs: !ruby/object:MIME::Types::Container person: - Jodi_Moline template: - image/vnd.dxf registered: true - !ruby/object:MIME::Type content-type: image/vnd.fastbidsheet friendly: en: FastBid Sheet encoding: base64 extensions: - fbs xrefs: !ruby/object:MIME::Types::Container person: - Scott_Becker template: - image/vnd.fastbidsheet registered: true - !ruby/object:MIME::Type content-type: image/vnd.fpx friendly: en: FlashPix encoding: base64 extensions: - fpx xrefs: !ruby/object:MIME::Types::Container person: - Marc_Douglas_Spencer template: - image/vnd.fpx registered: true - !ruby/object:MIME::Type content-type: image/vnd.fst friendly: en: FAST Search & Transfer ASA encoding: base64 extensions: - fst xrefs: !ruby/object:MIME::Types::Container person: - Arild_Fuldseth template: - image/vnd.fst registered: true - !ruby/object:MIME::Type content-type: image/vnd.fujixerox.edmics-mmr friendly: en: EDMICS 2000 encoding: base64 extensions: - mmr xrefs: !ruby/object:MIME::Types::Container person: - Masanori_Onda template: - image/vnd.fujixerox.edmics-mmr registered: true - !ruby/object:MIME::Type content-type: image/vnd.fujixerox.edmics-rlc friendly: en: EDMICS 2000 encoding: base64 extensions: - rlc xrefs: !ruby/object:MIME::Types::Container person: - Masanori_Onda template: - image/vnd.fujixerox.edmics-rlc registered: true - !ruby/object:MIME::Type content-type: image/vnd.globalgraphics.pgb encoding: base64 extensions: - pgb xrefs: !ruby/object:MIME::Types::Container person: - Martin_Bailey template: - image/vnd.globalgraphics.pgb registered: true - !ruby/object:MIME::Type content-type: image/vnd.microsoft.icon encoding: base64 extensions: - ico xrefs: !ruby/object:MIME::Types::Container person: - Simon_Butcher template: - image/vnd.microsoft.icon registered: true - !ruby/object:MIME::Type content-type: image/vnd.mix encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Saveen_Reddy template: - image/vnd.mix registered: true - !ruby/object:MIME::Type content-type: image/vnd.mozilla.apng encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Stuart_Parmenter template: - image/vnd.mozilla.apng registered: true - !ruby/object:MIME::Type content-type: image/vnd.ms-modi friendly: en: Microsoft Document Imaging Format encoding: base64 extensions: - mdi xrefs: !ruby/object:MIME::Types::Container person: - Gregory_Vaughan template: - image/vnd.ms-modi registered: true - !ruby/object:MIME::Type content-type: image/vnd.ms-photo encoding: base64 extensions: - wdp registered: false - !ruby/object:MIME::Type content-type: image/vnd.net-fpx friendly: en: FlashPix encoding: base64 extensions: - npx xrefs: !ruby/object:MIME::Types::Container person: - Marc_Douglas_Spencer template: - image/vnd.net-fpx registered: true - !ruby/object:MIME::Type content-type: image/vnd.net.fpx encoding: base64 obsolete: true use-instead: image/vnd.net-fpx registered: false - !ruby/object:MIME::Type content-type: image/vnd.radiance encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Randolph_Fritz - Greg_Ward template: - image/vnd.radiance registered: true - !ruby/object:MIME::Type content-type: image/vnd.sealed.png encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - image/vnd.sealed-png registered: true - !ruby/object:MIME::Type content-type: image/vnd.sealedmedia.softseal.gif encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - image/vnd.sealedmedia.softseal-gif registered: true - !ruby/object:MIME::Type content-type: image/vnd.sealedmedia.softseal.jpg encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - image/vnd.sealedmedia.softseal-jpg registered: true - !ruby/object:MIME::Type content-type: image/vnd.svf encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jodi_Moline template: - image/vnd-svf registered: true - !ruby/object:MIME::Type content-type: image/vnd.tencent.tap encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ni_Hui template: - image/vnd.tencent.tap registered: true - !ruby/object:MIME::Type content-type: image/vnd.valve.source.texture encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - image/vnd.valve.source.texture registered: true - !ruby/object:MIME::Type content-type: image/vnd.wap.wbmp friendly: en: WAP Bitamp (WBMP) encoding: base64 extensions: - wbmp xrefs: !ruby/object:MIME::Types::Container person: - Peter_Stark template: - image/vnd-wap-wbmp registered: true - !ruby/object:MIME::Type content-type: image/vnd.xiff friendly: en: eXtended Image File Format (XIFF) encoding: base64 extensions: - xif xrefs: !ruby/object:MIME::Types::Container person: - Steven_Martin template: - image/vnd.xiff registered: true - !ruby/object:MIME::Type content-type: image/vnd.zbrush.pcx encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Chris_Charabaruk template: - image/vnd.zbrush.pcx registered: true - !ruby/object:MIME::Type content-type: image/webp friendly: en: WebP Image encoding: base64 extensions: - webp registered: false - !ruby/object:MIME::Type content-type: image/x-3ds encoding: base64 extensions: - 3ds registered: false - !ruby/object:MIME::Type content-type: image/x-bmp encoding: base64 extensions: - bmp registered: false - !ruby/object:MIME::Type content-type: image/x-cmu-raster friendly: en: CMU Image encoding: base64 extensions: - ras registered: false - !ruby/object:MIME::Type content-type: image/x-cmx friendly: en: Corel Metafile Exchange (CMX) encoding: base64 extensions: - cmx registered: false - !ruby/object:MIME::Type content-type: image/x-compressed-xcf docs: see-also:image/x-xcf encoding: base64 extensions: - xcfbz2 - xcfgz registered: false - !ruby/object:MIME::Type content-type: image/x-freehand friendly: en: FreeHand MX encoding: base64 extensions: - fh - fh4 - fh5 - fh7 - fhc registered: false - !ruby/object:MIME::Type content-type: image/x-hasselblad-3fr encoding: base64 extensions: - 3fr registered: false - !ruby/object:MIME::Type content-type: image/x-icon friendly: en: Icon Image encoding: base64 extensions: - ico registered: false - !ruby/object:MIME::Type content-type: image/x-mrsid-image encoding: base64 extensions: - sid registered: false - !ruby/object:MIME::Type content-type: image/x-ms-bmp friendly: en: Bitmap Image File encoding: base64 extensions: - bmp obsolete: true registered: false - !ruby/object:MIME::Type content-type: image/x-paintshoppro encoding: base64 extensions: - psp - pspimage registered: false - !ruby/object:MIME::Type content-type: image/x-pcx friendly: en: PCX Image encoding: base64 extensions: - pcx registered: false - !ruby/object:MIME::Type content-type: image/x-pict friendly: en: PICT Image encoding: base64 extensions: - pct - pic registered: false - !ruby/object:MIME::Type content-type: image/x-portable-anymap friendly: en: Portable Anymap Image encoding: base64 extensions: - pnm registered: false - !ruby/object:MIME::Type content-type: image/x-portable-bitmap friendly: en: Portable Bitmap Format encoding: base64 extensions: - pbm registered: false - !ruby/object:MIME::Type content-type: image/x-portable-graymap friendly: en: Portable Graymap Format encoding: base64 extensions: - pgm registered: false - !ruby/object:MIME::Type content-type: image/x-portable-pixmap friendly: en: Portable Pixmap Format encoding: base64 extensions: - ppm registered: false - !ruby/object:MIME::Type content-type: image/x-rgb friendly: en: Silicon Graphics RGB Bitmap encoding: base64 extensions: - rgb registered: false - !ruby/object:MIME::Type content-type: image/x-targa encoding: base64 extensions: - tga registered: false - !ruby/object:MIME::Type content-type: image/x-tga encoding: base64 extensions: - tga registered: false - !ruby/object:MIME::Type content-type: image/x-vnd.dgn encoding: base64 extensions: - dgn registered: false - !ruby/object:MIME::Type content-type: image/x-win-bmp encoding: base64 registered: false - !ruby/object:MIME::Type content-type: image/x-xbitmap friendly: en: X BitMap encoding: 7bit extensions: - xbm registered: false - !ruby/object:MIME::Type content-type: image/x-xbm encoding: 7bit extensions: - xbm registered: false - !ruby/object:MIME::Type content-type: image/x-xcf encoding: base64 extensions: - xcf registered: false - !ruby/object:MIME::Type content-type: image/x-xpixmap friendly: en: X PixMap encoding: 8bit extensions: - xpm registered: false - !ruby/object:MIME::Type content-type: image/x-xwindowdump friendly: en: X Window Dump encoding: base64 extensions: - xwd registered: false mime-types-data-3.2015.1120/types/drawing.yaml0000644000175000017500000000043212627041214022135 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: drawing/dwf encoding: base64 extensions: - dwf obsolete: true use-instead: x-drawing/dwf registered: false - !ruby/object:MIME::Type content-type: x-drawing/dwf encoding: base64 extensions: - dwf registered: false mime-types-data-3.2015.1120/types/message.yaml0000644000175000017500000001066712627041214022141 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: message/CPIM encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3862 template: - message/CPIM registered: true - !ruby/object:MIME::Type content-type: message/delivery-status encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1894 template: - message/delivery-status registered: true - !ruby/object:MIME::Type content-type: message/disposition-notification encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3798 template: - message/disposition-notification registered: true - !ruby/object:MIME::Type content-type: message/example encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4735 template: - message/example registered: true - !ruby/object:MIME::Type content-type: message/external-body encoding: 8bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 registered: true - !ruby/object:MIME::Type content-type: message/feedback-report encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5965 template: - message/feedback-report registered: true - !ruby/object:MIME::Type content-type: message/global encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6532 template: - message/global registered: true - !ruby/object:MIME::Type content-type: message/global-delivery-status encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6533 template: - message/global-delivery-status registered: true - !ruby/object:MIME::Type content-type: message/global-disposition-notification encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6533 template: - message/global-disposition-notification registered: true - !ruby/object:MIME::Type content-type: message/global-headers encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6533 template: - message/global-headers registered: true - !ruby/object:MIME::Type content-type: message/http encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7230 template: - message/http registered: true - !ruby/object:MIME::Type content-type: message/imdn+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5438 template: - message/imdn+xml registered: true - !ruby/object:MIME::Type content-type: message/news encoding: 8bit obsolete: true xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5537 person: - Henry_Spencer template: - message/news notes: - "- OBSOLETED by RFC5537" registered: true - !ruby/object:MIME::Type content-type: message/partial encoding: 8bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 registered: true - !ruby/object:MIME::Type content-type: message/rfc822 friendly: en: Email Message encoding: 8bit extensions: - eml - mime xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 registered: true - !ruby/object:MIME::Type content-type: message/s-http encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2660 template: - message/s-http registered: true - !ruby/object:MIME::Type content-type: message/sip encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3261 template: - message/sip registered: true - !ruby/object:MIME::Type content-type: message/sipfrag encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3420 template: - message/sipfrag registered: true - !ruby/object:MIME::Type content-type: message/tracking-status encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3886 template: - message/tracking-status registered: true - !ruby/object:MIME::Type content-type: message/vnd.si.simp encoding: base64 obsolete: true xrefs: !ruby/object:MIME::Types::Container person: - Nicholas_Parks_Young template: - message/vnd.si.simp notes: - "- OBSOLETED by request" registered: true - !ruby/object:MIME::Type content-type: message/vnd.wfa.wsc encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mick_Conley template: - message/vnd.wfa.wsc registered: true mime-types-data-3.2015.1120/types/audio.yaml0000644000175000017500000010045212627041214021606 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: audio/1d-interleaved-parityfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6015 template: - audio/1d-interleaved-parityfec registered: true - !ruby/object:MIME::Type content-type: audio/32kadpcm encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3802 - rfc2421 template: - audio/32kadpcm registered: true - !ruby/object:MIME::Type content-type: audio/3gpp encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3839 - rfc6381 template: - audio/3gpp registered: true - !ruby/object:MIME::Type content-type: audio/3gpp2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4393 - rfc6381 template: - audio/3gpp2 registered: true - !ruby/object:MIME::Type content-type: audio/ac3 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4184 template: - audio/ac3 registered: true - !ruby/object:MIME::Type content-type: audio/adpcm friendly: en: Adaptive differential pulse-code modulation encoding: base64 extensions: - adp registered: false - !ruby/object:MIME::Type content-type: audio/AMR encoding: base64 extensions: - amr xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4867 template: - audio/AMR registered: true - !ruby/object:MIME::Type content-type: audio/AMR-WB encoding: base64 extensions: - awb xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4867 template: - audio/AMR-WB registered: true - !ruby/object:MIME::Type content-type: audio/amr-wb+ encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4352 template: - audio/amr-wb+ registered: true - !ruby/object:MIME::Type content-type: audio/aptx encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7310 template: - audio/aptx registered: true - !ruby/object:MIME::Type content-type: audio/asc encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6295 template: - audio/asc registered: true - !ruby/object:MIME::Type content-type: audio/ATRAC-ADVANCED-LOSSLESS encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5584 template: - audio/ATRAC-ADVANCED-LOSSLESS registered: true - !ruby/object:MIME::Type content-type: audio/ATRAC-X encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5584 template: - audio/ATRAC-X registered: true - !ruby/object:MIME::Type content-type: audio/ATRAC3 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5584 template: - audio/ATRAC3 registered: true - !ruby/object:MIME::Type content-type: audio/basic friendly: en: Sun Audio - Au file format encoding: base64 extensions: - au - snd xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 template: - audio/basic registered: true - !ruby/object:MIME::Type content-type: audio/BV16 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4298 template: - audio/BV16 registered: true - !ruby/object:MIME::Type content-type: audio/BV32 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4298 template: - audio/BV32 registered: true - !ruby/object:MIME::Type content-type: audio/clearmode encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4040 template: - audio/clearmode registered: true - !ruby/object:MIME::Type content-type: audio/CN encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3389 template: - audio/CN registered: true - !ruby/object:MIME::Type content-type: audio/DAT12 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3190 template: - audio/DAT12 registered: true - !ruby/object:MIME::Type content-type: audio/dls encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4613 template: - audio/dls registered: true - !ruby/object:MIME::Type content-type: audio/dsr-es201108 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3557 template: - audio/dsr-es201108 registered: true - !ruby/object:MIME::Type content-type: audio/dsr-es202050 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4060 template: - audio/dsr-es202050 registered: true - !ruby/object:MIME::Type content-type: audio/dsr-es202211 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4060 template: - audio/dsr-es202211 registered: true - !ruby/object:MIME::Type content-type: audio/dsr-es202212 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4060 template: - audio/dsr-es202212 registered: true - !ruby/object:MIME::Type content-type: audio/DV encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6469 template: - audio/DV registered: true - !ruby/object:MIME::Type content-type: audio/DVI4 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/DVI4 registered: true - !ruby/object:MIME::Type content-type: audio/eac3 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4598 template: - audio/eac3 registered: true - !ruby/object:MIME::Type content-type: audio/encaprtp encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6849 template: - audio/encaprtp registered: true - !ruby/object:MIME::Type content-type: audio/EVRC encoding: base64 extensions: - evc xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4788 template: - audio/EVRC registered: true - !ruby/object:MIME::Type content-type: audio/EVRC-QCP encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3625 template: - audio/EVRC-QCP registered: true - !ruby/object:MIME::Type content-type: audio/EVRC0 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4788 template: - audio/EVRC0 registered: true - !ruby/object:MIME::Type content-type: audio/EVRC1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4788 template: - audio/EVRC1 registered: true - !ruby/object:MIME::Type content-type: audio/EVRCB encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5188 template: - audio/EVRCB registered: true - !ruby/object:MIME::Type content-type: audio/EVRCB0 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5188 template: - audio/EVRCB0 registered: true - !ruby/object:MIME::Type content-type: audio/EVRCB1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4788 template: - audio/EVRCB1 registered: true - !ruby/object:MIME::Type content-type: audio/EVRCNW encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6884 template: - audio/EVRCNW registered: true - !ruby/object:MIME::Type content-type: audio/EVRCNW0 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6884 template: - audio/EVRCNW0 registered: true - !ruby/object:MIME::Type content-type: audio/EVRCNW1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6884 template: - audio/EVRCNW1 registered: true - !ruby/object:MIME::Type content-type: audio/EVRCWB encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5188 template: - audio/EVRCWB registered: true - !ruby/object:MIME::Type content-type: audio/EVRCWB0 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5188 template: - audio/EVRCWB0 registered: true - !ruby/object:MIME::Type content-type: audio/EVRCWB1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5188 template: - audio/EVRCWB1 registered: true - !ruby/object:MIME::Type content-type: audio/example encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4735 template: - audio/example registered: true - !ruby/object:MIME::Type content-type: audio/fwdred encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6354 template: - audio/fwdred registered: true - !ruby/object:MIME::Type content-type: audio/G711-0 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7655 template: - audio/G711-0 registered: true - !ruby/object:MIME::Type content-type: audio/G719 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5404 rfc-errata: - '3245' template: - audio/G719 registered: true - !ruby/object:MIME::Type content-type: audio/G722 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G722 registered: true - !ruby/object:MIME::Type content-type: audio/G7221 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5577 template: - audio/G7221 registered: true - !ruby/object:MIME::Type content-type: audio/G723 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G723 registered: true - !ruby/object:MIME::Type content-type: audio/G726-16 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G726-16 registered: true - !ruby/object:MIME::Type content-type: audio/G726-24 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G726-24 registered: true - !ruby/object:MIME::Type content-type: audio/G726-32 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G726-32 registered: true - !ruby/object:MIME::Type content-type: audio/G726-40 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G726-40 registered: true - !ruby/object:MIME::Type content-type: audio/G728 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G728 registered: true - !ruby/object:MIME::Type content-type: audio/G729 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G729 registered: true - !ruby/object:MIME::Type content-type: audio/G7291 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4749 - rfc5459 registered: true - !ruby/object:MIME::Type content-type: audio/G729D encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G729D registered: true - !ruby/object:MIME::Type content-type: audio/G729E encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/G729E registered: true - !ruby/object:MIME::Type content-type: audio/GSM encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/GSM registered: true - !ruby/object:MIME::Type content-type: audio/GSM-EFR encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/GSM-EFR registered: true - !ruby/object:MIME::Type content-type: audio/GSM-HR-08 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5993 template: - audio/GSM-HR-08 registered: true - !ruby/object:MIME::Type content-type: audio/iLBC encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3952 template: - audio/iLBC registered: true - !ruby/object:MIME::Type content-type: audio/ip-mr_v2.5 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6262 template: - audio/ip-mr_v2.5 registered: true - !ruby/object:MIME::Type content-type: audio/L16 encoding: base64 extensions: - l16 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/L16 registered: true - !ruby/object:MIME::Type content-type: audio/L20 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3190 template: - audio/L20 registered: true - !ruby/object:MIME::Type content-type: audio/L24 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3190 template: - audio/L24 registered: true - !ruby/object:MIME::Type content-type: audio/L8 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/L8 registered: true - !ruby/object:MIME::Type content-type: audio/LPC encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/LPC registered: true - !ruby/object:MIME::Type content-type: audio/midi friendly: en: MIDI - Musical Instrument Digital Interface encoding: base64 extensions: - kar - mid - midi - rmi registered: false - !ruby/object:MIME::Type content-type: audio/mobile-xmf encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4723 template: - audio/mobile-xmf registered: true - !ruby/object:MIME::Type content-type: audio/mp4 friendly: en: MPEG-4 Audio encoding: base64 extensions: - mp4 - mpg4 - f4a - f4b - mp4a xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4337 - rfc6381 template: - audio/mp4 registered: true - !ruby/object:MIME::Type content-type: audio/MP4A-LATM encoding: base64 extensions: - m4a xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6416 template: - audio/MP4A-LATM registered: true - !ruby/object:MIME::Type content-type: audio/MPA encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - audio/MPA registered: true - !ruby/object:MIME::Type content-type: audio/mpa-robust encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5219 template: - audio/mpa-robust registered: true - !ruby/object:MIME::Type content-type: audio/mpeg friendly: en: MPEG Audio encoding: base64 extensions: - mpga - mp2 - mp3 - m2a - m3a - mp2a xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3003 template: - audio/mpeg registered: true - !ruby/object:MIME::Type content-type: audio/mpeg4-generic encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3640 - rfc5691 - rfc6295 template: - audio/mpeg4-generic registered: true - !ruby/object:MIME::Type content-type: audio/ogg friendly: en: Ogg Audio encoding: base64 extensions: - oga - ogg - spx xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5334 template: - audio/ogg registered: true - !ruby/object:MIME::Type content-type: audio/opus encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7587 template: - audio/opus registered: true - !ruby/object:MIME::Type content-type: audio/parityfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5109 registered: true - !ruby/object:MIME::Type content-type: audio/PCMA encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/PCMA registered: true - !ruby/object:MIME::Type content-type: audio/PCMA-WB encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5391 template: - audio/PCMA-WB registered: true - !ruby/object:MIME::Type content-type: audio/PCMU encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/PCMU registered: true - !ruby/object:MIME::Type content-type: audio/PCMU-WB encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5391 template: - audio/PCMU-WB registered: true - !ruby/object:MIME::Type content-type: audio/prs.sid encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Linus_Walleij template: - audio/prs.sid registered: true - !ruby/object:MIME::Type content-type: audio/QCELP encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 - rfc3625 registered: true - !ruby/object:MIME::Type content-type: audio/raptorfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6682 template: - audio/raptorfec registered: true - !ruby/object:MIME::Type content-type: audio/RED encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3555 template: - audio/RED registered: true - !ruby/object:MIME::Type content-type: audio/rtp-enc-aescm128 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - audio/rtp-enc-aescm128 registered: true - !ruby/object:MIME::Type content-type: audio/rtp-midi encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6295 template: - audio/rtp-midi registered: true - !ruby/object:MIME::Type content-type: audio/rtploopback encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6849 template: - audio/rtploopback registered: true - !ruby/object:MIME::Type content-type: audio/rtx encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4588 template: - audio/rtx registered: true - !ruby/object:MIME::Type content-type: audio/s3m encoding: base64 extensions: - s3m registered: false - !ruby/object:MIME::Type content-type: audio/silk encoding: base64 extensions: - sil registered: false - !ruby/object:MIME::Type content-type: audio/SMV encoding: base64 extensions: - smv xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3558 template: - audio/SMV registered: true - !ruby/object:MIME::Type content-type: audio/SMV-QCP encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3625 template: - audio/SMV-QCP registered: true - !ruby/object:MIME::Type content-type: audio/SMV0 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3558 template: - audio/SMV0 registered: true - !ruby/object:MIME::Type content-type: audio/sp-midi encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Timo_Kosonen - Tom_White template: - audio/sp-midi registered: true - !ruby/object:MIME::Type content-type: audio/speex encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5574 template: - audio/speex registered: true - !ruby/object:MIME::Type content-type: audio/t140c encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4351 template: - audio/t140c registered: true - !ruby/object:MIME::Type content-type: audio/t38 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4612 template: - audio/t38 registered: true - !ruby/object:MIME::Type content-type: audio/telephone-event encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4733 template: - audio/telephone-event registered: true - !ruby/object:MIME::Type content-type: audio/tone encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4733 template: - audio/tone registered: true - !ruby/object:MIME::Type content-type: audio/UEMCLIP encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5686 template: - audio/UEMCLIP registered: true - !ruby/object:MIME::Type content-type: audio/ulpfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5109 template: - audio/ulpfec registered: true - !ruby/object:MIME::Type content-type: audio/VDVI encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4856 template: - audio/VDVI registered: true - !ruby/object:MIME::Type content-type: audio/VMR-WB encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4348 - rfc4424 template: - audio/VMR-WB registered: true - !ruby/object:MIME::Type content-type: audio/vnd.3gpp.iufp encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Belling template: - audio/vnd.3gpp.iufp registered: true - !ruby/object:MIME::Type content-type: audio/vnd.4SB encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Serge_De_Jaham template: - audio/vnd.4SB registered: true - !ruby/object:MIME::Type content-type: audio/vnd.audiokoz encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Vicki_DeBarros template: - audio/vnd.audiokoz registered: true - !ruby/object:MIME::Type content-type: audio/vnd.CELP encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Serge_De_Jaham template: - audio/vnd.CELP registered: true - !ruby/object:MIME::Type content-type: audio/vnd.cisco.nse encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Rajesh_Kumar template: - audio/vnd.cisco.nse registered: true - !ruby/object:MIME::Type content-type: audio/vnd.cmles.radio-events encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jean-Philippe_Goulet template: - audio/vnd.cmles.radio-events registered: true - !ruby/object:MIME::Type content-type: audio/vnd.cns.anp1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ann_McLaughlin template: - audio/vnd.cns.anp1 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.cns.inf1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ann_McLaughlin template: - audio/vnd.cns.inf1 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dece.audio friendly: en: DECE Audio encoding: base64 extensions: - uva - uvva xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - audio/vnd.dece.audio registered: true - !ruby/object:MIME::Type content-type: audio/vnd.digital-winds friendly: en: Digital Winds Music encoding: 7bit extensions: - eol xrefs: !ruby/object:MIME::Types::Container person: - Armands_Strazds template: - audio/vnd.digital-winds registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dlna.adts encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Edwin_Heredia template: - audio/vnd.dlna.adts registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dolby.heaac.1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - audio/vnd.dolby.heaac.1 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dolby.heaac.2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - audio/vnd.dolby.heaac.2 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dolby.mlp encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mike_Ward template: - audio/vnd.dolby.mlp registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dolby.mps encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - audio/vnd.dolby.mps registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dolby.pl2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - audio/vnd.dolby.pl2 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dolby.pl2x encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - audio/vnd.dolby.pl2x registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dolby.pl2z encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - audio/vnd.dolby.pl2z registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dolby.pulse.1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - audio/vnd.dolby.pulse.1 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dra friendly: en: DRA Audio encoding: base64 extensions: - dra xrefs: !ruby/object:MIME::Types::Container person: - Jiang_Tian template: - audio/vnd.dra registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dts friendly: en: DTS Audio encoding: base64 extensions: - dts xrefs: !ruby/object:MIME::Types::Container person: - William_Zou template: - audio/vnd.dts registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dts.hd friendly: en: DTS High Definition Audio encoding: base64 extensions: - dtshd xrefs: !ruby/object:MIME::Types::Container person: - William_Zou template: - audio/vnd.dts.hd registered: true - !ruby/object:MIME::Type content-type: audio/vnd.dvb.file encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Siebert template: - audio/vnd.dvb.file registered: true - !ruby/object:MIME::Type content-type: audio/vnd.everad.plj encoding: base64 extensions: - plj xrefs: !ruby/object:MIME::Types::Container person: - Shay_Cicelsky template: - audio/vnd.everad.plj registered: true - !ruby/object:MIME::Type content-type: audio/vnd.hns.audio encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Swaminathan template: - audio/vnd.hns.audio registered: true - !ruby/object:MIME::Type content-type: audio/vnd.lucent.voice friendly: en: Lucent Voice encoding: base64 extensions: - lvp xrefs: !ruby/object:MIME::Types::Container person: - Greg_Vaudreuil template: - audio/vnd.lucent.voice registered: true - !ruby/object:MIME::Type content-type: audio/vnd.ms-playready.media.pya friendly: en: Microsoft PlayReady Ecosystem encoding: base64 extensions: - pya xrefs: !ruby/object:MIME::Types::Container person: - Steve_DiAcetis template: - audio/vnd.ms-playready.media.pya registered: true - !ruby/object:MIME::Type content-type: audio/vnd.nokia.mobile-xmf encoding: base64 extensions: - mxmf xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - audio/vnd.nokia.mobile-xmf registered: true - !ruby/object:MIME::Type content-type: audio/vnd.nortel.vbk encoding: base64 extensions: - vbk xrefs: !ruby/object:MIME::Types::Container person: - Glenn_Parsons template: - audio/vnd.nortel.vbk registered: true - !ruby/object:MIME::Type content-type: audio/vnd.nuera.ecelp4800 friendly: en: Nuera ECELP 4800 encoding: base64 extensions: - ecelp4800 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Fox template: - audio/vnd.nuera.ecelp4800 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.nuera.ecelp7470 friendly: en: Nuera ECELP 7470 encoding: base64 extensions: - ecelp7470 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Fox template: - audio/vnd.nuera.ecelp7470 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.nuera.ecelp9600 friendly: en: Nuera ECELP 9600 encoding: base64 extensions: - ecelp9600 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Fox template: - audio/vnd.nuera.ecelp9600 registered: true - !ruby/object:MIME::Type content-type: audio/vnd.octel.sbc encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Greg_Vaudreuil template: - audio/vnd.octel.sbc registered: true - !ruby/object:MIME::Type content-type: audio/vnd.qcelp encoding: base64 extensions: - qcp obsolete: true use-instead: audio/qcelp xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3625 template: - audio/vnd.qcelp notes: - "- DEPRECATED in favor of audio/qcelp" registered: true - !ruby/object:MIME::Type content-type: audio/vnd.rhetorex.32kadpcm encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Greg_Vaudreuil template: - audio/vnd.rhetorex.32kadpcm registered: true - !ruby/object:MIME::Type content-type: audio/vnd.rip friendly: en: Hit'n'Mix encoding: base64 extensions: - rip xrefs: !ruby/object:MIME::Types::Container person: - Martin_Dawe template: - audio/vnd.rip registered: true - !ruby/object:MIME::Type content-type: audio/vnd.sealedmedia.softseal.mpeg encoding: base64 extensions: - smp3 - smp - s1m xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - audio/vnd.sealedmedia.softseal-mpeg registered: true - !ruby/object:MIME::Type content-type: audio/vnd.vmx.cvsd encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Greg_Vaudreuil template: - audio/vnd.vmx.cvsd registered: true - !ruby/object:MIME::Type content-type: audio/vorbis encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5215 template: - audio/vorbis registered: true - !ruby/object:MIME::Type content-type: audio/vorbis-config encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5215 template: - audio/vorbis-config registered: true - !ruby/object:MIME::Type content-type: audio/webm friendly: en: Open Web Media Project - Audio encoding: base64 extensions: - weba - webm registered: false - !ruby/object:MIME::Type content-type: audio/x-aac friendly: en: Advanced Audio Coding (AAC) encoding: base64 extensions: - aac registered: false - !ruby/object:MIME::Type content-type: audio/x-aiff friendly: en: Audio Interchange File Format encoding: base64 extensions: - aif - aifc - aiff registered: false - !ruby/object:MIME::Type content-type: audio/x-caf encoding: base64 extensions: - caf registered: false - !ruby/object:MIME::Type content-type: audio/x-flac encoding: base64 extensions: - flac registered: false - !ruby/object:MIME::Type content-type: audio/x-matroska encoding: base64 extensions: - mka registered: false - !ruby/object:MIME::Type content-type: audio/x-midi encoding: base64 extensions: - mid - midi - kar registered: false - !ruby/object:MIME::Type content-type: audio/x-mpegurl friendly: en: M3U (Multimedia Playlist) encoding: base64 extensions: - m3u registered: false - !ruby/object:MIME::Type content-type: audio/x-ms-wax friendly: en: Microsoft Windows Media Audio Redirector encoding: base64 extensions: - wax registered: false - !ruby/object:MIME::Type content-type: audio/x-ms-wma friendly: en: Microsoft Windows Media Audio encoding: base64 extensions: - wma registered: false - !ruby/object:MIME::Type content-type: audio/x-ms-wmv encoding: base64 extensions: - wmv registered: false - !ruby/object:MIME::Type content-type: audio/x-pn-realaudio friendly: en: Real Audio Sound encoding: base64 extensions: - ra - ram registered: false - !ruby/object:MIME::Type content-type: audio/x-pn-realaudio-plugin friendly: en: Real Audio Sound encoding: base64 extensions: - rmp - rpm registered: false - !ruby/object:MIME::Type content-type: audio/x-realaudio encoding: base64 extensions: - ra registered: false - !ruby/object:MIME::Type content-type: audio/x-wav friendly: en: Waveform Audio File Format (WAV) encoding: base64 extensions: - wav registered: false - !ruby/object:MIME::Type content-type: audio/xm encoding: base64 extensions: - xm registered: false mime-types-data-3.2015.1120/types/application.yaml0000644000175000017500000126170012627041214023015 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: application/1d-interleaved-parityfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6015 template: - application/1d-interleaved-parityfec registered: true - !ruby/object:MIME::Type content-type: application/3gpdash-qoe-report+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ozgur_Oyman - ThreeGPP template: - application/3gpdash-qoe-report+xml registered: true - !ruby/object:MIME::Type content-type: application/3gpp-ims+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - John_M_Meredith template: - application/3gpp-ims+xml registered: true - !ruby/object:MIME::Type content-type: application/A2L encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/A2L registered: true - !ruby/object:MIME::Type content-type: application/acad encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/access encoding: base64 extensions: - mdf - mda - mdb - mde obsolete: true use-instead: application/x-msaccess registered: false - !ruby/object:MIME::Type content-type: application/activemessage encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ehud_Shapiro template: - application/activemessage registered: true - !ruby/object:MIME::Type content-type: application/alto-costmap+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-costmap+json registered: true - !ruby/object:MIME::Type content-type: application/alto-costmapfilter+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-costmapfilter+json registered: true - !ruby/object:MIME::Type content-type: application/alto-directory+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-directory+json registered: true - !ruby/object:MIME::Type content-type: application/alto-endpointcost+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-endpointcost+json registered: true - !ruby/object:MIME::Type content-type: application/alto-endpointcostparams+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-endpointcostparams+json registered: true - !ruby/object:MIME::Type content-type: application/alto-endpointprop+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-endpointprop+json registered: true - !ruby/object:MIME::Type content-type: application/alto-endpointpropparams+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-endpointpropparams+json registered: true - !ruby/object:MIME::Type content-type: application/alto-error+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-error+json registered: true - !ruby/object:MIME::Type content-type: application/alto-networkmap+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-networkmap+json registered: true - !ruby/object:MIME::Type content-type: application/alto-networkmapfilter+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7285 template: - application/alto-networkmapfilter+json registered: true - !ruby/object:MIME::Type content-type: application/AML encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/AML registered: true - !ruby/object:MIME::Type content-type: application/andrew-inset friendly: en: Andrew Toolkit encoding: base64 extensions: - ez xrefs: !ruby/object:MIME::Types::Container person: - Nathaniel_Borenstein template: - application/andrew-inset registered: true - !ruby/object:MIME::Type content-type: application/appledouble encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/applefile encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Patrik_Faltstrom template: - application/applefile registered: true - !ruby/object:MIME::Type content-type: application/applixware friendly: en: Applixware encoding: base64 extensions: - aw registered: false - !ruby/object:MIME::Type content-type: application/ATF encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/ATF registered: true - !ruby/object:MIME::Type content-type: application/ATFX encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/ATFX registered: true - !ruby/object:MIME::Type content-type: application/atom+xml friendly: en: Atom Syndication Format encoding: 8bit extensions: - atom xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4287 - rfc5023 template: - application/atom+xml registered: true - !ruby/object:MIME::Type content-type: application/atomcat+xml friendly: en: Atom Publishing Protocol encoding: 8bit extensions: - atomcat xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5023 template: - application/atomcat+xml registered: true - !ruby/object:MIME::Type content-type: application/atomdeleted+xml encoding: 8bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6721 template: - application/atomdeleted+xml registered: true - !ruby/object:MIME::Type content-type: application/atomicmail encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nathaniel_Borenstein template: - application/atomicmail registered: true - !ruby/object:MIME::Type content-type: application/atomsvc+xml friendly: en: Atom Publishing Protocol Service Document encoding: 8bit extensions: - atomsvc xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5023 template: - application/atomsvc+xml registered: true - !ruby/object:MIME::Type content-type: application/ATXML encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/ATXML registered: true - !ruby/object:MIME::Type content-type: application/auth-policy+xml encoding: 8bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4745 template: - application/auth-policy+xml registered: true - !ruby/object:MIME::Type content-type: application/bacnet-xdd+zip encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASHRAE - Dave_Robin template: - application/bacnet-xdd+zip registered: true - !ruby/object:MIME::Type content-type: application/batch-SMTP encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2442 template: - application/batch-SMTP registered: true - !ruby/object:MIME::Type content-type: application/beep+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3080 template: - application/beep+xml registered: true - !ruby/object:MIME::Type content-type: application/bleeper encoding: base64 extensions: - bleep obsolete: true use-instead: application/x-bleeper registered: false - !ruby/object:MIME::Type content-type: application/calendar+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7265 template: - application/calendar+json registered: true - !ruby/object:MIME::Type content-type: application/calendar+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6321 template: - application/calendar+xml registered: true - !ruby/object:MIME::Type content-type: application/call-completion encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6910 template: - application/call-completion registered: true - !ruby/object:MIME::Type content-type: application/cals-1840 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1895 template: - application/CALS-1840 registered: true - !ruby/object:MIME::Type content-type: application/cals1840 encoding: base64 obsolete: true use-instead: application/cals-1840 registered: false - !ruby/object:MIME::Type content-type: application/cbor encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7049 template: - application/cbor registered: true - !ruby/object:MIME::Type content-type: application/ccmp+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6503 template: - application/ccmp+xml registered: true - !ruby/object:MIME::Type content-type: application/ccxml+xml friendly: en: Voice Browser Call Control encoding: base64 extensions: - ccxml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4267 template: - application/ccxml+xml registered: true - !ruby/object:MIME::Type content-type: application/CDFX+XML encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/CDFX+XML registered: true - !ruby/object:MIME::Type content-type: application/cdmi-capability friendly: en: Cloud Data Management Interface (CDMI) - Capability encoding: base64 extensions: - cdmia xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6208 template: - application/cdmi-capability registered: true - !ruby/object:MIME::Type content-type: application/cdmi-container friendly: en: Cloud Data Management Interface (CDMI) - Contaimer encoding: base64 extensions: - cdmic xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6208 template: - application/cdmi-container registered: true - !ruby/object:MIME::Type content-type: application/cdmi-domain friendly: en: Cloud Data Management Interface (CDMI) - Domain encoding: base64 extensions: - cdmid xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6208 template: - application/cdmi-domain registered: true - !ruby/object:MIME::Type content-type: application/cdmi-object friendly: en: Cloud Data Management Interface (CDMI) - Object encoding: base64 extensions: - cdmio xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6208 template: - application/cdmi-object registered: true - !ruby/object:MIME::Type content-type: application/cdmi-queue friendly: en: Cloud Data Management Interface (CDMI) - Queue encoding: base64 extensions: - cdmiq xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6208 template: - application/cdmi-queue registered: true - !ruby/object:MIME::Type content-type: application/cdni encoding: base64 xrefs: !ruby/object:MIME::Types::Container draft: - RFC-ietf-cdni-media-type-06 template: - application/cdni registered: true - !ruby/object:MIME::Type content-type: application/CEA encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/CEA registered: true - !ruby/object:MIME::Type content-type: application/cea-2018+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gottfried_Zimmermann template: - application/cea-2018+xml registered: true - !ruby/object:MIME::Type content-type: application/cellml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4708 template: - application/cellml+xml registered: true - !ruby/object:MIME::Type content-type: application/cfw encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6230 template: - application/cfw registered: true - !ruby/object:MIME::Type content-type: application/clariscad encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/cms encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7193 template: - application/cms registered: true - !ruby/object:MIME::Type content-type: application/cnrp+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3367 template: - application/cnrp+xml registered: true - !ruby/object:MIME::Type content-type: application/coap-group+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7390 template: - application/coap-group+json registered: true - !ruby/object:MIME::Type content-type: application/commonground encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Glazer template: - application/commonground registered: true - !ruby/object:MIME::Type content-type: application/conference-info+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4575 template: - application/conference-info+xml registered: true - !ruby/object:MIME::Type content-type: application/cpl+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3880 template: - application/cpl+xml registered: true - !ruby/object:MIME::Type content-type: application/csrattrs encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7030 template: - application/csrattrs registered: true - !ruby/object:MIME::Type content-type: application/csta+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ecma_International_Helpdesk template: - application/csta+xml registered: true - !ruby/object:MIME::Type content-type: application/CSTAdata+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ecma_International_Helpdesk template: - application/CSTAdata+xml registered: true - !ruby/object:MIME::Type content-type: application/csvm+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C - Ivan_Herman template: - application/csvm+json registered: true - !ruby/object:MIME::Type content-type: application/cu-seeme friendly: en: CU-SeeMe encoding: base64 extensions: - cu registered: false - !ruby/object:MIME::Type content-type: application/cybercash encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Donald_E._Eastlake_3rd template: - application/cybercash registered: true - !ruby/object:MIME::Type content-type: application/dash+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Stockhammer - ISO-IEC_JTC1 template: - application/dash+xml registered: true - !ruby/object:MIME::Type content-type: application/dashdelta encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Furbeck template: - application/dashdelta registered: true - !ruby/object:MIME::Type content-type: application/davmount+xml friendly: en: Web Distributed Authoring and Versioning encoding: base64 extensions: - davmount xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4709 template: - application/davmount+xml registered: true - !ruby/object:MIME::Type content-type: application/dca-rft encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Larry_Campbell template: - application/dca-rft registered: true - !ruby/object:MIME::Type content-type: application/DCD encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/DCD registered: true - !ruby/object:MIME::Type content-type: application/dec-dx encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Larry_Campbell template: - application/dec-dx registered: true - !ruby/object:MIME::Type content-type: application/dialog-info+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4235 template: - application/dialog-info+xml registered: true - !ruby/object:MIME::Type content-type: application/dicom encoding: base64 extensions: - dcm xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3240 template: - application/dicom registered: true - !ruby/object:MIME::Type content-type: application/DII encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/DII registered: true - !ruby/object:MIME::Type content-type: application/DIT encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/DIT registered: true - !ruby/object:MIME::Type content-type: application/dns encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4027 template: - application/dns registered: true - !ruby/object:MIME::Type content-type: application/docbook+xml encoding: base64 extensions: - dbk registered: false - !ruby/object:MIME::Type content-type: application/drafting encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/dskpp+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6063 template: - application/dskpp+xml registered: true - !ruby/object:MIME::Type content-type: application/dssc+der friendly: en: Data Structure for the Security Suitability of Cryptographic Algorithms encoding: base64 extensions: - dssc xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5698 template: - application/dssc+der registered: true - !ruby/object:MIME::Type content-type: application/dssc+xml friendly: en: Data Structure for the Security Suitability of Cryptographic Algorithms encoding: base64 extensions: - xdssc xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5698 template: - application/dssc+xml registered: true - !ruby/object:MIME::Type content-type: application/dvcs encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3029 template: - application/dvcs registered: true - !ruby/object:MIME::Type content-type: application/dxf encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/ecmascript friendly: en: ECMAScript encoding: base64 extensions: - ecma xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4329 template: - application/ecmascript registered: true - !ruby/object:MIME::Type content-type: application/EDI-consent encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1767 template: - application/EDI-consent registered: true - !ruby/object:MIME::Type content-type: application/EDI-X12 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1767 template: - application/EDI-X12 registered: true - !ruby/object:MIME::Type content-type: application/EDIFACT encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1767 template: - application/EDIFACT registered: true - !ruby/object:MIME::Type content-type: application/emma+xml friendly: en: Extensible MultiModal Annotation encoding: base64 extensions: - emma xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/2007/CR-emma-20071211/#media-type-registration registered: true - !ruby/object:MIME::Type content-type: application/emotionml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C - Kazuyuki_Ashimura template: - application/emotionml+xml registered: true - !ruby/object:MIME::Type content-type: application/encaprtp encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6849 template: - application/encaprtp registered: true - !ruby/object:MIME::Type content-type: application/epp+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5730 template: - application/epp+xml registered: true - !ruby/object:MIME::Type content-type: application/epub+zip friendly: en: Electronic Publication encoding: base64 extensions: - epub xrefs: !ruby/object:MIME::Types::Container person: - International_Digital_Publishing_Forum - William_McCoy template: - application/epub+zip registered: true - !ruby/object:MIME::Type content-type: application/eshop encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Katz template: - application/eshop registered: true - !ruby/object:MIME::Type content-type: application/example encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4735 template: - application/example registered: true - !ruby/object:MIME::Type content-type: application/excel encoding: base64 extensions: - xls - xlt obsolete: true use-instead: application/vnd.ms-excel registered: false - !ruby/object:MIME::Type content-type: application/exi friendly: en: Efficient XML Interchange encoding: base64 extensions: - exi xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/2009/CR-exi-20091208/#mediaTypeRegistration registered: true - !ruby/object:MIME::Type content-type: application/fastinfoset encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ITU-T_ASN.1_Rapporteur template: - application/fastinfoset registered: true - !ruby/object:MIME::Type content-type: application/fastsoap encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ITU-T_ASN.1_Rapporteur template: - application/fastsoap registered: true - !ruby/object:MIME::Type content-type: application/fdt+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6726 template: - application/fdt+xml registered: true - !ruby/object:MIME::Type content-type: application/fits encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4047 template: - application/fits registered: true - !ruby/object:MIME::Type content-type: application/font-sfnt encoding: base64 extensions: - otf - ttf xrefs: !ruby/object:MIME::Types::Container person: - Levantovsky template: - application/font-sfnt registered: true - !ruby/object:MIME::Type content-type: application/font-tdpfr friendly: en: Portable Font Resource encoding: base64 extensions: - pfr xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3073 template: - application/font-tdpfr registered: true - !ruby/object:MIME::Type content-type: application/font-woff friendly: en: Web Open Font Format encoding: base64 extensions: - woff - woff2 xrefs: !ruby/object:MIME::Types::Container person: - W3C template: - application/font-woff registered: true - !ruby/object:MIME::Type content-type: application/fractals encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/framework-attributes+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6230 template: - application/framework-attributes+xml registered: true - !ruby/object:MIME::Type content-type: application/futuresplash encoding: base64 extensions: - spl obsolete: true use-instead: application/x-futuresplash registered: false - !ruby/object:MIME::Type content-type: application/ghostview encoding: base64 obsolete: true use-instead: application/x-ghostview registered: false - !ruby/object:MIME::Type content-type: application/gml+xml encoding: base64 extensions: - gml registered: false - !ruby/object:MIME::Type content-type: application/gpx+xml encoding: base64 extensions: - gpx registered: false - !ruby/object:MIME::Type content-type: application/gxf encoding: base64 extensions: - gxf registered: false - !ruby/object:MIME::Type content-type: application/gzip encoding: base64 extensions: - gz xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6713 template: - application/gzip registered: true - !ruby/object:MIME::Type content-type: application/H224 encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4573 template: - application/H224 registered: true - !ruby/object:MIME::Type content-type: application/held+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5985 template: - application/held+xml registered: true - !ruby/object:MIME::Type content-type: application/hep encoding: base64 extensions: - hep obsolete: true use-instead: application/x-hep registered: false - !ruby/object:MIME::Type content-type: application/http encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7230 template: - application/http registered: true - !ruby/object:MIME::Type content-type: application/hyperstudio friendly: en: Hyperstudio encoding: base64 extensions: - stk xrefs: !ruby/object:MIME::Types::Container person: - Michael_Domino template: - application/hyperstudio registered: true - !ruby/object:MIME::Type content-type: application/i-deas encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/ibe-key-request+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5408 template: - application/ibe-key-request+xml registered: true - !ruby/object:MIME::Type content-type: application/ibe-pkg-reply+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5408 template: - application/ibe-pkg-reply+xml registered: true - !ruby/object:MIME::Type content-type: application/ibe-pp-data encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5408 template: - application/ibe-pp-data registered: true - !ruby/object:MIME::Type content-type: application/iges encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Curtis_Parks template: - application/iges registered: true - !ruby/object:MIME::Type content-type: application/im-iscomposing+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3994 template: - application/im-iscomposing+xml registered: true - !ruby/object:MIME::Type content-type: application/imagemap encoding: 8bit extensions: - imagemap - imap obsolete: true use-instead: application/x-imagemap registered: false - !ruby/object:MIME::Type content-type: application/index encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2652 template: - application/index registered: true - !ruby/object:MIME::Type content-type: application/index.cmd encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2652 template: - application/index.cmd registered: true - !ruby/object:MIME::Type content-type: application/index.obj encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2652 template: - application/index-obj registered: true - !ruby/object:MIME::Type content-type: application/index.response encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2652 template: - application/index.response registered: true - !ruby/object:MIME::Type content-type: application/index.vnd encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2652 template: - application/index.vnd registered: true - !ruby/object:MIME::Type content-type: application/inkml+xml encoding: base64 extensions: - ink - inkml xrefs: !ruby/object:MIME::Types::Container person: - Kazuyuki_Ashimura template: - application/inkml+xml registered: true - !ruby/object:MIME::Type content-type: application/iotp encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2935 template: - application/IOTP registered: true - !ruby/object:MIME::Type content-type: application/ipfix friendly: en: Internet Protocol Flow Information Export encoding: base64 extensions: - ipfix xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5655 template: - application/ipfix registered: true - !ruby/object:MIME::Type content-type: application/ipp encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2910 template: - application/ipp registered: true - !ruby/object:MIME::Type content-type: application/isup encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3204 template: - application/ISUP registered: true - !ruby/object:MIME::Type content-type: application/its+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C - ITS-IG-W3C template: - application/its+xml registered: true - !ruby/object:MIME::Type content-type: application/java-archive friendly: en: Java Archive encoding: base64 extensions: - jar registered: false - !ruby/object:MIME::Type content-type: application/java-serialized-object friendly: en: Java Serialized Object encoding: base64 extensions: - ser registered: false - !ruby/object:MIME::Type content-type: application/java-vm friendly: en: Java Bytecode File encoding: base64 extensions: - class registered: false - !ruby/object:MIME::Type content-type: application/javascript friendly: en: JavaScript encoding: 8bit extensions: - js - sj xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4329 template: - application/javascript registered: true - !ruby/object:MIME::Type content-type: application/jose encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7515 template: - application/jose registered: true - !ruby/object:MIME::Type content-type: application/jose+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7515 template: - application/jose+json registered: true - !ruby/object:MIME::Type content-type: application/jrd+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7033 template: - application/jrd+json registered: true - !ruby/object:MIME::Type content-type: application/json friendly: en: JavaScript Object Notation (JSON) encoding: 8bit extensions: - json xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7158 template: - application/json registered: true - !ruby/object:MIME::Type content-type: application/json-patch+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6902 template: - application/json-patch+json registered: true - !ruby/object:MIME::Type content-type: application/json-seq encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7464 template: - application/json-seq registered: true - !ruby/object:MIME::Type content-type: application/jsonml+json encoding: base64 extensions: - jsonml registered: false - !ruby/object:MIME::Type content-type: application/jwk+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7517 template: - application/jwk+json registered: true - !ruby/object:MIME::Type content-type: application/jwk-set+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7517 template: - application/jwk-set+json registered: true - !ruby/object:MIME::Type content-type: application/jwt encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7519 template: - application/jwt registered: true - !ruby/object:MIME::Type content-type: application/kpml-request+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4730 template: - application/kpml-request+xml registered: true - !ruby/object:MIME::Type content-type: application/kpml-response+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4730 template: - application/kpml-response+xml registered: true - !ruby/object:MIME::Type content-type: application/ld+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C - Ivan_Herman template: - application/ld+json registered: true - !ruby/object:MIME::Type content-type: application/link-format encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6690 template: - application/link-format registered: true - !ruby/object:MIME::Type content-type: application/load-control+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7200 template: - application/load-control+xml registered: true - !ruby/object:MIME::Type content-type: application/lost+xml encoding: base64 extensions: - lostxml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5222 template: - application/lost+xml registered: true - !ruby/object:MIME::Type content-type: application/lostsync+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6739 template: - application/lostsync+xml registered: true - !ruby/object:MIME::Type content-type: application/lotus-123 encoding: base64 extensions: - wks obsolete: true use-instead: application/vnd.lotus-1-2-3 registered: false - !ruby/object:MIME::Type content-type: application/LXF encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/LXF registered: true - !ruby/object:MIME::Type content-type: application/mac-binhex40 friendly: en: Macintosh BinHex 4.0 encoding: 8bit extensions: - hqx xrefs: !ruby/object:MIME::Types::Container person: - Patrik_Faltstrom template: - application/mac-binhex40 registered: true - !ruby/object:MIME::Type content-type: application/mac-compactpro friendly: en: Compact Pro encoding: base64 extensions: - cpt obsolete: true use-instead: application/x-mac-compactpro registered: false - !ruby/object:MIME::Type content-type: application/macbinary encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/macwriteii encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Paul_Lindner template: - application/macwriteii registered: true - !ruby/object:MIME::Type content-type: application/mads+xml friendly: en: Metadata Authority Description Schema encoding: base64 extensions: - mads xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6207 template: - application/mads+xml registered: true - !ruby/object:MIME::Type content-type: application/marc friendly: en: MARC Formats encoding: base64 extensions: - mrc xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2220 template: - application/marc registered: true - !ruby/object:MIME::Type content-type: application/marcxml+xml friendly: en: MARC21 XML Schema encoding: base64 extensions: - mrcx xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6207 template: - application/marcxml+xml registered: true - !ruby/object:MIME::Type content-type: application/mathcad encoding: base64 extensions: - mcd obsolete: true use-instead: application/vnd.mcd registered: false - !ruby/object:MIME::Type content-type: application/mathematica friendly: en: Mathematica Notebooks encoding: base64 extensions: - ma - mb - nb xrefs: !ruby/object:MIME::Types::Container person: - Wolfram template: - application/mathematica registered: true - !ruby/object:MIME::Type content-type: application/mathematica-old encoding: base64 obsolete: true use-instead: application/x-mathematica-old registered: false - !ruby/object:MIME::Type content-type: application/mathml+xml friendly: en: Mathematical Markup Language encoding: base64 extensions: - mathml xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/MathML3/appendixb.html registered: true - !ruby/object:MIME::Type content-type: application/mathml-content+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/MathML3/appendixb.html registered: true - !ruby/object:MIME::Type content-type: application/mathml-presentation+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/MathML3/appendixb.html registered: true - !ruby/object:MIME::Type content-type: application/mbms-associated-procedure-description+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-associated-procedure-description+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-deregister+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-deregister+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-envelope+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-envelope+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-msk+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-msk+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-msk-response+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-msk-response+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-protection-description+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-protection-description+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-reception-report+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-reception-report+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-register+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-register+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-register-response+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-register-response+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-schedule+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP - Eric_Turcotte template: - application/mbms-schedule+xml registered: true - !ruby/object:MIME::Type content-type: application/mbms-user-service-description+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/mbms-user-service-description+xml registered: true - !ruby/object:MIME::Type content-type: application/mbox friendly: en: Mbox database files encoding: base64 extensions: - mbox xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4155 template: - application/mbox registered: true - !ruby/object:MIME::Type content-type: application/media-policy-dataset+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6796 template: - application/media-policy-dataset+xml registered: true - !ruby/object:MIME::Type content-type: application/media_control+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5168 template: - application/media_control+xml registered: true - !ruby/object:MIME::Type content-type: application/mediaservercontrol+xml friendly: en: Media Server Control Markup Language encoding: base64 extensions: - mscml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5022 template: - application/mediaservercontrol+xml registered: true - !ruby/object:MIME::Type content-type: application/merge-patch+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7396 template: - application/merge-patch+json registered: true - !ruby/object:MIME::Type content-type: application/metalink+xml encoding: base64 extensions: - metalink registered: false - !ruby/object:MIME::Type content-type: application/metalink4+xml friendly: en: Metalink encoding: base64 extensions: - meta4 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5854 template: - application/metalink4+xml registered: true - !ruby/object:MIME::Type content-type: application/mets+xml friendly: en: Metadata Encoding and Transmission Standard encoding: base64 extensions: - mets xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6207 template: - application/mets+xml registered: true - !ruby/object:MIME::Type content-type: application/MF4 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/MF4 registered: true - !ruby/object:MIME::Type content-type: application/mikey encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3830 template: - application/mikey registered: true - !ruby/object:MIME::Type content-type: application/mods+xml friendly: en: Metadata Object Description Schema encoding: base64 extensions: - mods xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6207 template: - application/mods+xml registered: true - !ruby/object:MIME::Type content-type: application/moss-keys encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1848 template: - application/moss-keys registered: true - !ruby/object:MIME::Type content-type: application/moss-signature encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1848 template: - application/moss-signature registered: true - !ruby/object:MIME::Type content-type: application/mosskey-data encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1848 template: - application/mosskey-data registered: true - !ruby/object:MIME::Type content-type: application/mosskey-request encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1848 template: - application/mosskey-request registered: true - !ruby/object:MIME::Type content-type: application/mp21 friendly: en: MPEG-21 encoding: base64 extensions: - m21 - mp21 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6381 person: - David_Singer template: - application/mp21 registered: true - !ruby/object:MIME::Type content-type: application/mp4 friendly: en: MPEG4 encoding: base64 extensions: - mp4 - mpg4 - mp4s xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4337 - rfc6381 template: - application/mp4 registered: true - !ruby/object:MIME::Type content-type: application/mpeg4-generic encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3640 template: - application/mpeg4-generic registered: true - !ruby/object:MIME::Type content-type: application/mpeg4-iod encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4337 template: - application/mpeg4-iod registered: true - !ruby/object:MIME::Type content-type: application/mpeg4-iod-xmt encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4337 template: - application/mpeg4-iod-xmt registered: true - !ruby/object:MIME::Type content-type: application/mrb-consumer+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6917 template: - application/mrb-consumer+xml registered: true - !ruby/object:MIME::Type content-type: application/mrb-publish+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6917 template: - application/mrb-publish+xml registered: true - !ruby/object:MIME::Type content-type: application/msc-ivr+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6231 template: - application/msc-ivr+xml registered: true - !ruby/object:MIME::Type content-type: application/msc-mixer+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6505 template: - application/msc-mixer+xml registered: true - !ruby/object:MIME::Type content-type: application/msword friendly: en: Microsoft Word encoding: base64 extensions: - doc - dot - wrd xrefs: !ruby/object:MIME::Types::Container person: - Paul_Lindner template: - application/msword registered: true - !ruby/object:MIME::Type content-type: application/mxf friendly: en: Material Exchange Format encoding: base64 extensions: - mxf xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4539 template: - application/mxf registered: true - !ruby/object:MIME::Type content-type: application/nasdata encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4707 template: - application/nasdata registered: true - !ruby/object:MIME::Type content-type: application/netcdf encoding: base64 extensions: - nc - cdf registered: false - !ruby/object:MIME::Type content-type: application/news-checkgroups encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5537 template: - application/news-checkgroups registered: true - !ruby/object:MIME::Type content-type: application/news-groupinfo encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5537 template: - application/news-groupinfo registered: true - !ruby/object:MIME::Type content-type: application/news-message-id encoding: base64 obsolete: true registered: false - !ruby/object:MIME::Type content-type: application/news-transmission encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5537 template: - application/news-transmission registered: true - !ruby/object:MIME::Type content-type: application/nlsml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6787 template: - application/nlsml+xml registered: true - !ruby/object:MIME::Type content-type: application/nss encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Hammer template: - application/nss registered: true - !ruby/object:MIME::Type content-type: application/ocsp-request encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6960 template: - application/ocsp-request registered: true - !ruby/object:MIME::Type content-type: application/ocsp-response encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6960 template: - application/ocsp-response registered: true - !ruby/object:MIME::Type content-type: application/octet-stream friendly: en: Binary Data encoding: base64 extensions: - bin - dms - lha - lzh - exe - class - ani - pgp - so - dll - dylib - bpk - deploy - dist - distz - dump - elc - lrf - mar - pkg xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 template: - application/octet-stream registered: true - !ruby/object:MIME::Type content-type: application/oda friendly: en: Office Document Architecture encoding: base64 extensions: - oda xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 template: - application/ODA registered: true - !ruby/object:MIME::Type content-type: application/ODX encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/ODX registered: true - !ruby/object:MIME::Type content-type: application/oebps-package+xml friendly: en: Open eBook Publication Structure encoding: base64 extensions: - opf xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4839 template: - application/oebps-package+xml registered: true - !ruby/object:MIME::Type content-type: application/ogg friendly: en: Ogg encoding: base64 extensions: - ogx xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5334 template: - application/ogg registered: true - !ruby/object:MIME::Type content-type: application/omdoc+xml encoding: base64 extensions: - omdoc registered: false - !ruby/object:MIME::Type content-type: application/onenote friendly: en: Microsoft OneNote encoding: base64 extensions: - onepkg - onetmp - onetoc - onetoc2 registered: false - !ruby/object:MIME::Type content-type: application/oxps encoding: base64 extensions: - oxps xrefs: !ruby/object:MIME::Types::Container person: - Ecma_International_Helpdesk template: - application/oxps registered: true - !ruby/object:MIME::Type content-type: application/p2p-overlay+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6940 template: - application/p2p-overlay+xml registered: true - !ruby/object:MIME::Type content-type: application/parityfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5109 registered: true - !ruby/object:MIME::Type content-type: application/patch-ops-error+xml friendly: en: XML Patch Framework encoding: base64 extensions: - xer xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5261 template: - application/patch-ops-error+xml registered: true - !ruby/object:MIME::Type content-type: application/pdf friendly: en: Adobe Portable Document Format encoding: base64 extensions: - pdf xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3778 template: - application/pdf registered: true - !ruby/object:MIME::Type content-type: application/PDX encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ASAM - Thomas_Thomsen template: - application/PDX registered: true - !ruby/object:MIME::Type content-type: application/pgp-encrypted friendly: en: Pretty Good Privacy encoding: 7bit extensions: - pgp xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3156 template: - application/pgp-encrypted registered: true - !ruby/object:MIME::Type content-type: application/pgp-keys encoding: 7bit xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3156 registered: true signature: true - !ruby/object:MIME::Type content-type: application/pgp-signature friendly: en: Pretty Good Privacy - Signature encoding: base64 extensions: - asc - sig xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3156 template: - application/pgp-signature registered: true signature: true - !ruby/object:MIME::Type content-type: application/pics-rules friendly: en: PICSRules encoding: base64 extensions: - prf registered: false - !ruby/object:MIME::Type content-type: application/pidf+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3863 template: - application/pidf+xml registered: true - !ruby/object:MIME::Type content-type: application/pidf-diff+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5262 template: - application/pidf-diff+xml registered: true - !ruby/object:MIME::Type content-type: application/pkcs10 friendly: en: 'PKCS #10 - Certification Request Standard' encoding: base64 extensions: - p10 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5967 template: - application/pkcs10 registered: true signature: true - !ruby/object:MIME::Type content-type: application/pkcs12 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - IETF template: - application/pkcs12 registered: true - !ruby/object:MIME::Type content-type: application/pkcs7-mime friendly: en: 'PKCS #7 - Cryptographic Message Syntax Standard' encoding: base64 extensions: - p7m - p7c xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5751 - rfc7114 template: - application/pkcs7-mime registered: true signature: true - !ruby/object:MIME::Type content-type: application/pkcs7-signature friendly: en: 'PKCS #7 - Cryptographic Message Syntax Standard' encoding: base64 extensions: - p7s xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5751 template: - application/pkcs7-signature registered: true signature: true - !ruby/object:MIME::Type content-type: application/pkcs8 friendly: en: 'PKCS #8 - Private-Key Information Syntax Standard' encoding: base64 extensions: - p8 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5958 template: - application/pkcs8 registered: true - !ruby/object:MIME::Type content-type: application/pkix-attr-cert friendly: en: Attribute Certificate encoding: base64 extensions: - ac xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5877 template: - application/pkix-attr-cert registered: true - !ruby/object:MIME::Type content-type: application/pkix-cert friendly: en: Internet Public Key Infrastructure - Certificate encoding: base64 extensions: - cer xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2585 template: - application/pkix-cert registered: true - !ruby/object:MIME::Type content-type: application/pkix-crl friendly: en: Internet Public Key Infrastructure - Certificate Revocation Lists encoding: base64 extensions: - crl xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2585 template: - application/pkix-crl registered: true - !ruby/object:MIME::Type content-type: application/pkix-pkipath friendly: en: Internet Public Key Infrastructure - Certification Path encoding: base64 extensions: - pkipath xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6066 template: - application/pkix-pkipath registered: true - !ruby/object:MIME::Type content-type: application/pkixcmp friendly: en: Internet Public Key Infrastructure - Certificate Management Protocole encoding: base64 extensions: - pki xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2510 template: - application/pkixcmp registered: true - !ruby/object:MIME::Type content-type: application/pls+xml friendly: en: Pronunciation Lexicon Specification encoding: base64 extensions: - pls xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4267 template: - application/pls+xml registered: true - !ruby/object:MIME::Type content-type: application/poc-settings+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4354 template: - application/poc-settings+xml registered: true - !ruby/object:MIME::Type content-type: application/postscript friendly: en: PostScript encoding: 8bit extensions: - ai - eps - ps xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 template: - application/postscript registered: true - !ruby/object:MIME::Type content-type: application/powerpoint encoding: base64 extensions: - ppt - pps - pot registered: false - !ruby/object:MIME::Type content-type: application/pro_eng encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/provenance+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C - Ivan_Herman template: - application/provenance+xml registered: true - !ruby/object:MIME::Type content-type: application/prs.alvestrand.titrax-sheet encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Harald_T._Alvestrand template: - application/prs.alvestrand.titrax-sheet registered: true - !ruby/object:MIME::Type content-type: application/prs.cww friendly: en: CU-Writer encoding: base64 extensions: - cw - cww xrefs: !ruby/object:MIME::Types::Container person: - Khemchart_Rungchavalnont template: - application/prs.cww registered: true - !ruby/object:MIME::Type content-type: application/prs.hpub+zip encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Giulio_Zambon template: - application/prs.hpub+zip registered: true - !ruby/object:MIME::Type content-type: application/prs.nprend encoding: base64 extensions: - rnd - rct xrefs: !ruby/object:MIME::Types::Container person: - Jay_Doggett template: - application/prs.nprend registered: true - !ruby/object:MIME::Type content-type: application/prs.plucker encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bill_Janssen template: - application/prs.plucker registered: true - !ruby/object:MIME::Type content-type: application/prs.rdf-xml-crypt encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Toby_Inkster template: - application/prs.rdf-xml-crypt registered: true - !ruby/object:MIME::Type content-type: application/prs.xsf+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Maik_Stührenberg template: - application/prs.xsf+xml registered: true - !ruby/object:MIME::Type content-type: application/pskc+xml friendly: en: Portable Symmetric Key Container encoding: base64 extensions: - pskcxml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6030 template: - application/pskc+xml registered: true - !ruby/object:MIME::Type content-type: application/qsig encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3204 template: - application/QSIG registered: true - !ruby/object:MIME::Type content-type: application/quicktimeplayer encoding: base64 extensions: - qtl obsolete: true use-instead: application/x-quicktimeplayer registered: false - !ruby/object:MIME::Type content-type: application/raptorfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6682 template: - application/raptorfec registered: true - !ruby/object:MIME::Type content-type: application/rdap+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7483 template: - application/rdap+json registered: true - !ruby/object:MIME::Type content-type: application/rdf+xml friendly: en: Resource Description Framework encoding: 8bit extensions: - rdf xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3870 template: - application/rdf+xml registered: true - !ruby/object:MIME::Type content-type: application/reginfo+xml friendly: en: IMS Networks encoding: base64 extensions: - rif xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3680 template: - application/reginfo+xml registered: true - !ruby/object:MIME::Type content-type: application/relax-ng-compact-syntax friendly: en: Relax NG Compact Syntax encoding: base64 extensions: - rnc xrefs: !ruby/object:MIME::Types::Container uri: - http://www.jtc1sc34.org/repository/0661.pdf template: - application/relax-ng-compact-syntax registered: true - !ruby/object:MIME::Type content-type: application/remote-printing encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1486 person: - Marshall_Rose template: - application/remote-printing registered: true - !ruby/object:MIME::Type content-type: application/remote_printing encoding: base64 obsolete: true use-instead: application/remote-printing registered: false - !ruby/object:MIME::Type content-type: application/reputon+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7071 template: - application/reputon+json registered: true - !ruby/object:MIME::Type content-type: application/resource-lists+xml friendly: en: XML Resource Lists encoding: base64 extensions: - rl xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4826 template: - application/resource-lists+xml registered: true - !ruby/object:MIME::Type content-type: application/resource-lists-diff+xml friendly: en: XML Resource Lists Diff encoding: base64 extensions: - rld xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5362 template: - application/resource-lists-diff+xml registered: true - !ruby/object:MIME::Type content-type: application/rfc+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container draft: - RFC-iab-xml2rfcv2-02 template: - application/rfc+xml registered: true - !ruby/object:MIME::Type content-type: application/riscos encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nick_Smith template: - application/riscos registered: true - !ruby/object:MIME::Type content-type: application/rlmi+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4662 template: - application/rlmi+xml registered: true - !ruby/object:MIME::Type content-type: application/rls-services+xml friendly: en: XML Resource Lists encoding: base64 extensions: - rs xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4826 template: - application/rls-services+xml registered: true - !ruby/object:MIME::Type content-type: application/rpki-ghostbusters encoding: base64 extensions: - gbr xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6493 template: - application/rpki-ghostbusters registered: true - !ruby/object:MIME::Type content-type: application/rpki-manifest encoding: base64 extensions: - mft xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6481 template: - application/rpki-manifest registered: true - !ruby/object:MIME::Type content-type: application/rpki-roa encoding: base64 extensions: - roa xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6481 template: - application/rpki-roa registered: true - !ruby/object:MIME::Type content-type: application/rpki-updown encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6492 template: - application/rpki-updown registered: true - !ruby/object:MIME::Type content-type: application/rsd+xml friendly: en: Really Simple Discovery encoding: base64 extensions: - rsd registered: false - !ruby/object:MIME::Type content-type: application/rss+xml friendly: en: RSS - Really Simple Syndication encoding: base64 extensions: - rss registered: false - !ruby/object:MIME::Type content-type: application/rtf friendly: en: Rich Text Format encoding: base64 extensions: - rtf xrefs: !ruby/object:MIME::Types::Container person: - Paul_Lindner template: - application/rtf registered: true - !ruby/object:MIME::Type content-type: application/rtploopback encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6849 template: - application/rtploopback registered: true - !ruby/object:MIME::Type content-type: application/rtx encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4588 template: - application/rtx registered: true - !ruby/object:MIME::Type content-type: application/samlassertion+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OASIS_Security_Services_Technical_Committee_SSTC template: - application/samlassertion+xml registered: true - !ruby/object:MIME::Type content-type: application/samlmetadata+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OASIS_Security_Services_Technical_Committee_SSTC template: - application/samlmetadata+xml registered: true - !ruby/object:MIME::Type content-type: application/sbml+xml friendly: en: Systems Biology Markup Language encoding: base64 extensions: - sbml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3823 template: - application/sbml+xml registered: true - !ruby/object:MIME::Type content-type: application/scaip+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - SIS - Oskar_Jonsson template: - application/scaip+xml registered: true - !ruby/object:MIME::Type content-type: application/scim+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7644 template: - application/scim+json registered: true - !ruby/object:MIME::Type content-type: application/scvp-cv-request friendly: en: Server-Based Certificate Validation Protocol - Validation Request encoding: base64 extensions: - scq xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5055 template: - application/scvp-cv-request registered: true - !ruby/object:MIME::Type content-type: application/scvp-cv-response friendly: en: Server-Based Certificate Validation Protocol - Validation Response encoding: base64 extensions: - scs xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5055 template: - application/scvp-cv-response registered: true - !ruby/object:MIME::Type content-type: application/scvp-vp-request friendly: en: Server-Based Certificate Validation Protocol - Validation Policies - Request encoding: base64 extensions: - spq xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5055 template: - application/scvp-vp-request registered: true - !ruby/object:MIME::Type content-type: application/scvp-vp-response friendly: en: Server-Based Certificate Validation Protocol - Validation Policies - Response encoding: base64 extensions: - spp xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5055 template: - application/scvp-vp-response registered: true - !ruby/object:MIME::Type content-type: application/sdp friendly: en: Session Description Protocol encoding: base64 extensions: - sdp xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4566 template: - application/sdp registered: true - !ruby/object:MIME::Type content-type: application/sep+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Robby_Simpson - ZigBee template: - application/sep+xml registered: true - !ruby/object:MIME::Type content-type: application/sep-exi encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Robby_Simpson - ZigBee template: - application/sep-exi registered: true - !ruby/object:MIME::Type content-type: application/session-info encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP - Frederic_Firmin template: - application/session-info registered: true - !ruby/object:MIME::Type content-type: application/set encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/set-payment encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Brian_Korver template: - application/set-payment registered: true - !ruby/object:MIME::Type content-type: application/set-payment-initiation friendly: en: Secure Electronic Transaction - Payment encoding: base64 extensions: - setpay xrefs: !ruby/object:MIME::Types::Container person: - Brian_Korver template: - application/set-payment-initiation registered: true - !ruby/object:MIME::Type content-type: application/set-registration encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Brian_Korver template: - application/set-registration registered: true - !ruby/object:MIME::Type content-type: application/set-registration-initiation friendly: en: Secure Electronic Transaction - Registration encoding: base64 extensions: - setreg xrefs: !ruby/object:MIME::Types::Container person: - Brian_Korver template: - application/set-registration-initiation registered: true - !ruby/object:MIME::Type content-type: application/sgml encoding: base64 extensions: - sgml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1874 template: - application/SGML registered: true - !ruby/object:MIME::Type content-type: application/sgml-open-catalog encoding: base64 extensions: - soc xrefs: !ruby/object:MIME::Types::Container person: - Paul_Grosso template: - application/sgml-open-catalog registered: true - !ruby/object:MIME::Type content-type: application/shf+xml friendly: en: S Hexdump Format encoding: base64 extensions: - shf xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4194 template: - application/shf+xml registered: true - !ruby/object:MIME::Type content-type: application/sieve encoding: base64 extensions: - siv xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5228 template: - application/sieve registered: true - !ruby/object:MIME::Type content-type: application/simple-filter+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4661 template: - application/simple-filter+xml registered: true - !ruby/object:MIME::Type content-type: application/simple-message-summary encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3842 template: - application/simple-message-summary registered: true - !ruby/object:MIME::Type content-type: application/simpleSymbolContainer encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - application/simpleSymbolContainer registered: true - !ruby/object:MIME::Type content-type: application/SLA encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/slate encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Terry_Crowley template: - application/slate registered: true - !ruby/object:MIME::Type content-type: application/smil encoding: 8bit extensions: - smi - smil obsolete: true use-instead: application/smil+xml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4536 template: - application/smil notes: - "- OBSOLETED in favor of application/smil+xml" registered: true - !ruby/object:MIME::Type content-type: application/smil+xml friendly: en: Synchronized Multimedia Integration Language encoding: 8bit extensions: - smi - smil xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4536 template: - application/smil+xml registered: true - !ruby/object:MIME::Type content-type: application/smpte336m encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6597 template: - application/smpte336m registered: true - !ruby/object:MIME::Type content-type: application/soap+fastinfoset encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - ITU-T_ASN.1_Rapporteur template: - application/soap+fastinfoset registered: true - !ruby/object:MIME::Type content-type: application/soap+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3902 template: - application/soap+xml registered: true - !ruby/object:MIME::Type content-type: application/solids encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/sparql-query friendly: en: SPARQL - Query encoding: base64 extensions: - rq xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/2007/CR-rdf-sparql-query-20070614/#mediaType registered: true - !ruby/object:MIME::Type content-type: application/sparql-results+xml friendly: en: SPARQL - Results encoding: base64 extensions: - srx xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/2007/CR-rdf-sparql-XMLres-20070925/#mime registered: true - !ruby/object:MIME::Type content-type: application/spirits-event+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3910 template: - application/spirits-event+xml registered: true - !ruby/object:MIME::Type content-type: application/sql encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6922 template: - application/sql registered: true - !ruby/object:MIME::Type content-type: application/srgs friendly: en: Speech Recognition Grammar Specification encoding: base64 extensions: - gram xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4267 template: - application/srgs registered: true - !ruby/object:MIME::Type content-type: application/srgs+xml friendly: en: Speech Recognition Grammar Specification - XML encoding: base64 extensions: - grxml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4267 template: - application/srgs+xml registered: true - !ruby/object:MIME::Type content-type: application/sru+xml friendly: en: Search/Retrieve via URL Response Format encoding: base64 extensions: - sru xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6207 template: - application/sru+xml registered: true - !ruby/object:MIME::Type content-type: application/ssdl+xml encoding: base64 extensions: - ssdl registered: false - !ruby/object:MIME::Type content-type: application/ssml+xml friendly: en: Speech Synthesis Markup Language encoding: base64 extensions: - ssml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4267 template: - application/ssml+xml registered: true - !ruby/object:MIME::Type content-type: application/STEP encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/tamp-apex-update encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-apex-update registered: true - !ruby/object:MIME::Type content-type: application/tamp-apex-update-confirm encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-apex-update-confirm registered: true - !ruby/object:MIME::Type content-type: application/tamp-community-update encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-community-update registered: true - !ruby/object:MIME::Type content-type: application/tamp-community-update-confirm encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-community-update-confirm registered: true - !ruby/object:MIME::Type content-type: application/tamp-error encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-error registered: true - !ruby/object:MIME::Type content-type: application/tamp-sequence-adjust encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-sequence-adjust registered: true - !ruby/object:MIME::Type content-type: application/tamp-sequence-adjust-confirm encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-sequence-adjust-confirm registered: true - !ruby/object:MIME::Type content-type: application/tamp-status-query encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-status-query registered: true - !ruby/object:MIME::Type content-type: application/tamp-status-response encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-status-response registered: true - !ruby/object:MIME::Type content-type: application/tamp-update encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-update registered: true - !ruby/object:MIME::Type content-type: application/tamp-update-confirm encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5934 template: - application/tamp-update-confirm registered: true - !ruby/object:MIME::Type content-type: application/tei+xml friendly: en: Text Encoding and Interchange encoding: base64 extensions: - tei - teicorpus xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6129 template: - application/tei+xml registered: true - !ruby/object:MIME::Type content-type: application/thraud+xml friendly: en: Sharing Transaction Fraud Data encoding: base64 extensions: - tfi xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5941 template: - application/thraud+xml registered: true - !ruby/object:MIME::Type content-type: application/timestamp-query encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3161 template: - application/timestamp-query registered: true - !ruby/object:MIME::Type content-type: application/timestamp-reply encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3161 template: - application/timestamp-reply registered: true - !ruby/object:MIME::Type content-type: application/timestamped-data friendly: en: Time Stamped Data Envelope encoding: base64 extensions: - tsd xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5955 template: - application/timestamped-data registered: true - !ruby/object:MIME::Type content-type: application/toolbook encoding: base64 extensions: - tbk obsolete: true use-instead: application/x-toolbook registered: false - !ruby/object:MIME::Type content-type: application/ttml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - W3C - W3C_Timed_Text_Working_Group template: - application/ttml+xml registered: true - !ruby/object:MIME::Type content-type: application/tve-trigger encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Linda_Welsh template: - application/tve-trigger registered: true - !ruby/object:MIME::Type content-type: application/ulpfec encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5109 template: - application/ulpfec registered: true - !ruby/object:MIME::Type content-type: application/urc-grpsheet+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gottfried_Zimmermann template: - application/urc-grpsheet+xml registered: true - !ruby/object:MIME::Type content-type: application/urc-ressheet+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gottfried_Zimmermann template: - application/urc-ressheet+xml registered: true - !ruby/object:MIME::Type content-type: application/urc-targetdesc+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gottfried_Zimmermann template: - application/urc-targetdesc+xml registered: true - !ruby/object:MIME::Type content-type: application/urc-uisocketdesc+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gottfried_Zimmermann template: - application/urc-uisocketdesc+xml registered: true - !ruby/object:MIME::Type content-type: application/vcard+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7095 template: - application/vcard+json registered: true - !ruby/object:MIME::Type content-type: application/vcard+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6351 template: - application/vcard+xml registered: true - !ruby/object:MIME::Type content-type: application/vda encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/vemmi encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2122 template: - application/vemmi registered: true - !ruby/object:MIME::Type content-type: application/VMSBACKUP encoding: base64 extensions: - bck obsolete: true use-instead: application/x-VMSBACKUP registered: false - !ruby/object:MIME::Type content-type: application/vnd.3gpp-prose+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frederic_Firmin template: - application/vnd.3gpp-prose+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp-prose-pc3ch+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frederic_Firmin template: - application/vnd.3gpp-prose-pc3ch+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.access-transfer-events+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frederic_Firmin template: - application/vnd.3gpp.access-transfer-events+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.bsf+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - John_M_Meredith template: - application/vnd.3gpp.bsf+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.mid-call+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frederic_Firmin template: - application/vnd.3gpp.mid-call+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.pic-bw-large friendly: en: 3rd Generation Partnership Project - Pic Large encoding: base64 extensions: - plb xrefs: !ruby/object:MIME::Types::Container person: - John_M_Meredith template: - application/vnd.3gpp.pic-bw-large registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.pic-bw-small friendly: en: 3rd Generation Partnership Project - Pic Small encoding: base64 extensions: - psb xrefs: !ruby/object:MIME::Types::Container person: - John_M_Meredith template: - application/vnd.3gpp.pic-bw-small registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.pic-bw-var friendly: en: 3rd Generation Partnership Project - Pic Var encoding: base64 extensions: - pvb xrefs: !ruby/object:MIME::Types::Container person: - John_M_Meredith template: - application/vnd.3gpp.pic-bw-var registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.sms encoding: base64 extensions: - sms xrefs: !ruby/object:MIME::Types::Container person: - John_M_Meredith template: - application/vnd.3gpp.sms registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.srvcc-ext+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frederic_Firmin template: - application/vnd.3gpp.srvcc-ext+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.SRVCC-info+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frederic_Firmin template: - application/vnd.3gpp.SRVCC-info+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.state-and-event-info+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frederic_Firmin template: - application/vnd.3gpp.state-and-event-info+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp.ussd+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Frederic_Firmin template: - application/vnd.3gpp.ussd+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp2.bcmcsinfo+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Andy_Dryden template: - application/vnd.3gpp2.bcmcsinfo+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp2.sms encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - AC_Mahendran template: - application/vnd.3gpp2.sms registered: true - !ruby/object:MIME::Type content-type: application/vnd.3gpp2.tcap friendly: en: 3rd Generation Partnership Project - Transaction Capabilities Application Part encoding: base64 extensions: - tcap xrefs: !ruby/object:MIME::Types::Container person: - AC_Mahendran template: - application/vnd.3gpp2.tcap registered: true - !ruby/object:MIME::Type content-type: application/vnd.3M.Post-it-Notes friendly: en: 3M Post It Notes encoding: base64 extensions: - pwn xrefs: !ruby/object:MIME::Types::Container person: - Michael_OBrien template: - application/vnd.3M.Post-it-Notes registered: true - !ruby/object:MIME::Type content-type: application/vnd.accpac.simply.aso friendly: en: Simply Accounting encoding: base64 extensions: - aso xrefs: !ruby/object:MIME::Types::Container person: - Steve_Leow template: - application/vnd.accpac.simply.aso registered: true - !ruby/object:MIME::Type content-type: application/vnd.accpac.simply.imp friendly: en: Simply Accounting - Data Import encoding: base64 extensions: - imp xrefs: !ruby/object:MIME::Types::Container person: - Steve_Leow template: - application/vnd.accpac.simply.imp registered: true - !ruby/object:MIME::Type content-type: application/vnd.acucobol friendly: en: ACU Cobol encoding: base64 extensions: - acu xrefs: !ruby/object:MIME::Types::Container person: - Dovid_Lubin template: - application/vnd-acucobol registered: true - !ruby/object:MIME::Type content-type: application/vnd.acucorp friendly: en: ACU Cobol encoding: 7bit extensions: - atc - acutc xrefs: !ruby/object:MIME::Types::Container person: - Dovid_Lubin template: - application/vnd.acucorp registered: true - !ruby/object:MIME::Type content-type: application/vnd.adobe.air-application-installer-package+zip friendly: en: Adobe AIR Application encoding: base64 extensions: - air registered: false - !ruby/object:MIME::Type content-type: application/vnd.adobe.flash.movie encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - application/vnd.adobe.flash-movie registered: true - !ruby/object:MIME::Type content-type: application/vnd.adobe.formscentral.fcdt encoding: base64 extensions: - fcdt xrefs: !ruby/object:MIME::Types::Container person: - Chris_Solc template: - application/vnd.adobe.formscentral.fcdt registered: true - !ruby/object:MIME::Type content-type: application/vnd.adobe.fxp friendly: en: Adobe Flex Project encoding: base64 extensions: - fxp - fxpl xrefs: !ruby/object:MIME::Types::Container person: - Robert_Brambley - Steven_Heintz template: - application/vnd.adobe.fxp registered: true - !ruby/object:MIME::Type content-type: application/vnd.adobe.partial-upload encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Tapani_Otala template: - application/vnd.adobe.partial-upload registered: true - !ruby/object:MIME::Type content-type: application/vnd.adobe.xdp+xml friendly: en: Adobe XML Data Package encoding: base64 extensions: - xdp xrefs: !ruby/object:MIME::Types::Container person: - John_Brinkman template: - application/vnd.adobe.xdp+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.adobe.xfdf friendly: en: Adobe XML Forms Data Format encoding: base64 extensions: - xfdf xrefs: !ruby/object:MIME::Types::Container person: - Roberto_Perelman template: - application/vnd.adobe.xfdf registered: true - !ruby/object:MIME::Type content-type: application/vnd.aether.imp encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jay_Moskowitz template: - application/vnd.aether.imp registered: true - !ruby/object:MIME::Type content-type: application/vnd.ah-barcode encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Katsuhiko_Ichinose template: - application/vnd.ah-barcode registered: true - !ruby/object:MIME::Type content-type: application/vnd.ahead.space friendly: en: Ahead AIR Application encoding: base64 extensions: - ahead xrefs: !ruby/object:MIME::Types::Container person: - Tor_Kristensen template: - application/vnd.ahead.space registered: true - !ruby/object:MIME::Type content-type: application/vnd.airzip.filesecure.azf friendly: en: AirZip FileSECURE encoding: base64 extensions: - azf xrefs: !ruby/object:MIME::Types::Container person: - Daniel_Mould - Gary_Clueit template: - application/vnd.airzip.filesecure.azf registered: true - !ruby/object:MIME::Type content-type: application/vnd.airzip.filesecure.azs friendly: en: AirZip FileSECURE encoding: base64 extensions: - azs xrefs: !ruby/object:MIME::Types::Container person: - Daniel_Mould - Gary_Clueit template: - application/vnd.airzip.filesecure.azs registered: true - !ruby/object:MIME::Type content-type: application/vnd.amazon.ebook friendly: en: Amazon Kindle eBook format encoding: base64 extensions: - azw registered: false - !ruby/object:MIME::Type content-type: application/vnd.americandynamics.acc friendly: en: Active Content Compression encoding: base64 extensions: - acc xrefs: !ruby/object:MIME::Types::Container person: - Gary_Sands template: - application/vnd.americandynamics.acc registered: true - !ruby/object:MIME::Type content-type: application/vnd.amiga.ami friendly: en: AmigaDE encoding: base64 extensions: - ami xrefs: !ruby/object:MIME::Types::Container person: - Kevin_Blumberg template: - application/vnd.amiga.ami registered: true - !ruby/object:MIME::Type content-type: application/vnd.amundsen.maze+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mike_Amundsen template: - application/vnd.amundsen.maze+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.android.package-archive friendly: en: Android Package Archive encoding: base64 extensions: - apk registered: false - !ruby/object:MIME::Type content-type: application/vnd.anki encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kerrick_Staley template: - application/vnd.anki registered: true - !ruby/object:MIME::Type content-type: application/vnd.anser-web-certificate-issue-initiation friendly: en: ANSER-WEB Terminal Client - Certificate Issue encoding: base64 extensions: - cii xrefs: !ruby/object:MIME::Types::Container person: - Hiroyoshi_Mori template: - application/vnd.anser-web-certificate-issue-initiation registered: true - !ruby/object:MIME::Type content-type: application/vnd.anser-web-funds-transfer-initiation friendly: en: ANSER-WEB Terminal Client - Web Funds Transfer encoding: base64 extensions: - fti registered: false - !ruby/object:MIME::Type content-type: application/vnd.antix.game-component friendly: en: Antix Game Player encoding: base64 extensions: - atx xrefs: !ruby/object:MIME::Types::Container person: - Daniel_Shelton template: - application/vnd.antix.game-component registered: true - !ruby/object:MIME::Type content-type: application/vnd.apache.thrift.binary encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roger_Meier template: - application/vnd.apache.thrift.binary registered: true - !ruby/object:MIME::Type content-type: application/vnd.apache.thrift.compact encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roger_Meier template: - application/vnd.apache.thrift.compact registered: true - !ruby/object:MIME::Type content-type: application/vnd.apache.thrift.json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roger_Meier template: - application/vnd.apache.thrift.json registered: true - !ruby/object:MIME::Type content-type: application/vnd.api+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Klabnik template: - application/vnd.api+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.apple.installer+xml friendly: en: Apple Installer Package encoding: base64 extensions: - mpkg xrefs: !ruby/object:MIME::Types::Container person: - Peter_Bierman template: - application/vnd.apple.installer+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.apple.mpegurl friendly: en: Multimedia Playlist Unicode encoding: base64 extensions: - m3u8 xrefs: !ruby/object:MIME::Types::Container person: - David_Singer - Roger_Pantos template: - application/vnd.apple.mpegurl registered: true - !ruby/object:MIME::Type content-type: application/vnd.apple.pkpass encoding: base64 extensions: - pkpass registered: false - !ruby/object:MIME::Type content-type: application/vnd.arastra.swi encoding: base64 obsolete: true use-instead: application/vnd.aristanetworks.swi xrefs: !ruby/object:MIME::Types::Container person: - Bill_Fenner template: - application/vnd.arastra.swi notes: - "- OBSOLETED in favor of application/vnd.aristanetworks.swi" registered: true - !ruby/object:MIME::Type content-type: application/vnd.aristanetworks.swi friendly: en: Arista Networks Software Image encoding: base64 extensions: - swi xrefs: !ruby/object:MIME::Types::Container person: - Bill_Fenner template: - application/vnd.aristanetworks.swi registered: true - !ruby/object:MIME::Type content-type: application/vnd.artsquare encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Christopher_Smith template: - application/vnd.artsquare registered: true - !ruby/object:MIME::Type content-type: application/vnd.astraea-software.iota encoding: base64 extensions: - iota xrefs: !ruby/object:MIME::Types::Container person: - Christopher_Snazell template: - application/vnd.astraea-software.iota registered: true - !ruby/object:MIME::Type content-type: application/vnd.audiograph friendly: en: Audiograph encoding: base64 extensions: - aep xrefs: !ruby/object:MIME::Types::Container person: - Horia_Cristian_Slusanschi template: - application/vnd.audiograph registered: true - !ruby/object:MIME::Type content-type: application/vnd.autopackage encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mike_Hearn template: - application/vnd.autopackage registered: true - !ruby/object:MIME::Type content-type: application/vnd.avistar+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Vladimir_Vysotsky template: - application/vnd.avistar+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.balsamiq.bmml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Giacomo_Guilizzoni template: - application/vnd.balsamiq.bmml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.balsamiq.bmpr encoding: base64 xrefs: !ruby/object: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 xrefs: !ruby/object:MIME::Types::Container person: - Jegulsky template: - application/vnd.bekitzur-stech+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.biopax.rdf+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Pathway_Commons template: - application/vnd.biopax.rdf+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.blueice.multipass friendly: en: Blueice Research Multipass encoding: base64 extensions: - mpm xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Holmstrom template: - application/vnd.blueice.multipass registered: true - !ruby/object:MIME::Type content-type: application/vnd.bluetooth.ep.oob encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mike_Foley template: - application/vnd.bluetooth.ep.oob registered: true - !ruby/object:MIME::Type content-type: application/vnd.bluetooth.le.oob encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Powell template: - application/vnd.bluetooth.le.oob registered: true - !ruby/object:MIME::Type content-type: application/vnd.bmi friendly: en: BMI Drawing Data Interchange encoding: base64 extensions: - bmi xrefs: !ruby/object:MIME::Types::Container person: - Tadashi_Gotoh template: - application/vnd.bmi registered: true - !ruby/object:MIME::Type content-type: application/vnd.businessobjects friendly: en: BusinessObjects encoding: base64 extensions: - rep xrefs: !ruby/object:MIME::Types::Container person: - Philippe_Imoucha template: - application/vnd.businessobjects registered: true - !ruby/object:MIME::Type content-type: application/vnd.cab-jscript encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Joerg_Falkenberg template: - application/vnd.cab-jscript registered: true - !ruby/object:MIME::Type content-type: application/vnd.canon-cpdl encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shin_Muto template: - application/vnd.canon-cpdl registered: true - !ruby/object:MIME::Type content-type: application/vnd.canon-lips encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shin_Muto template: - application/vnd.canon-lips registered: true - !ruby/object:MIME::Type content-type: application/vnd.cendio.thinlinc.clientconf encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Astrand template: - application/vnd.cendio.thinlinc.clientconf registered: true - !ruby/object:MIME::Type content-type: application/vnd.century-systems.tcp_stream encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shuji_Fujii template: - application/vnd.century-systems.tcp_stream registered: true - !ruby/object:MIME::Type content-type: application/vnd.chemdraw+xml friendly: en: CambridgeSoft Chem Draw encoding: base64 extensions: - cdxml xrefs: !ruby/object:MIME::Types::Container person: - Glenn_Howes template: - application/vnd.chemdraw+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.chipnuts.karaoke-mmd friendly: en: Karaoke on Chipnuts Chipsets encoding: base64 extensions: - mmd xrefs: !ruby/object:MIME::Types::Container person: - Chunyun_Xiong template: - application/vnd.chipnuts.karaoke-mmd registered: true - !ruby/object:MIME::Type content-type: application/vnd.cinderella friendly: en: Interactive Geometry Software Cinderella encoding: base64 extensions: - cdy xrefs: !ruby/object:MIME::Types::Container person: - Ulrich_Kortenkamp template: - application/vnd.cinderella registered: true - !ruby/object:MIME::Type content-type: application/vnd.cirpack.isdn-ext encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Pascal_Mayeux template: - application/vnd.cirpack.isdn-ext registered: true - !ruby/object:MIME::Type content-type: application/vnd.citationstyles.style+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Rintze_M._Zelle template: - application/vnd.citationstyles.style+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.claymore friendly: en: Claymore Data Files encoding: base64 extensions: - cla xrefs: !ruby/object:MIME::Types::Container person: - Ray_Simpson template: - application/vnd.claymore registered: true - !ruby/object:MIME::Type content-type: application/vnd.cloanto.rp9 friendly: en: RetroPlatform Player encoding: base64 extensions: - rp9 xrefs: !ruby/object:MIME::Types::Container person: - Mike_Labatt template: - application/vnd.cloanto.rp9 registered: true - !ruby/object:MIME::Type content-type: application/vnd.clonk.c4group friendly: en: Clonk Game encoding: base64 extensions: - c4d - c4f - c4g - c4p - c4u xrefs: !ruby/object:MIME::Types::Container person: - Guenther_Brammer template: - application/vnd.clonk.c4group registered: true - !ruby/object:MIME::Type content-type: application/vnd.cluetrust.cartomobile-config friendly: en: ClueTrust CartoMobile - Config encoding: base64 extensions: - c11amc xrefs: !ruby/object:MIME::Types::Container person: - Gaige_Paulsen template: - application/vnd.cluetrust.cartomobile-config registered: true - !ruby/object:MIME::Type content-type: application/vnd.cluetrust.cartomobile-config-pkg friendly: en: ClueTrust CartoMobile - Config Package encoding: base64 extensions: - c11amz xrefs: !ruby/object:MIME::Types::Container person: - Gaige_Paulsen template: - application/vnd.cluetrust.cartomobile-config-pkg registered: true - !ruby/object:MIME::Type content-type: application/vnd.coffeescript encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Devyn_Collier_Johnson template: - application/vnd.coffeescript registered: true - !ruby/object:MIME::Type content-type: application/vnd.collection+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mike_Amundsen template: - application/vnd.collection+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.collection.doc+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Irakli_Nadareishvili template: - application/vnd.collection.doc+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.collection.next+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ioseb_Dzmanashvili template: - application/vnd.collection.next+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.commerce-battelle encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Applebaum template: - application/vnd.commerce-battelle registered: true - !ruby/object:MIME::Type content-type: application/vnd.commonspace friendly: en: Sixth Floor Media - CommonSpace encoding: base64 extensions: - csp xrefs: !ruby/object:MIME::Types::Container person: - Ravinder_Chandhok template: - application/vnd.commonspace registered: true - !ruby/object:MIME::Type content-type: application/vnd.contact.cmsg friendly: en: CIM Database encoding: base64 extensions: - cdbcmsg xrefs: !ruby/object:MIME::Types::Container person: - Frank_Patz template: - application/vnd.contact.cmsg registered: true - !ruby/object:MIME::Type content-type: application/vnd.cosmocaller friendly: en: CosmoCaller encoding: base64 extensions: - cmc xrefs: !ruby/object:MIME::Types::Container person: - Steve_Dellutri template: - application/vnd.cosmocaller registered: true - !ruby/object:MIME::Type content-type: application/vnd.crick.clicker friendly: en: CrickSoftware - Clicker encoding: base64 extensions: - clkx xrefs: !ruby/object:MIME::Types::Container person: - Andrew_Burt template: - application/vnd.crick.clicker registered: true - !ruby/object:MIME::Type content-type: application/vnd.crick.clicker.keyboard friendly: en: CrickSoftware - Clicker - Keyboard encoding: base64 extensions: - clkk xrefs: !ruby/object:MIME::Types::Container person: - Andrew_Burt template: - application/vnd.crick.clicker.keyboard registered: true - !ruby/object:MIME::Type content-type: application/vnd.crick.clicker.palette friendly: en: CrickSoftware - Clicker - Palette encoding: base64 extensions: - clkp xrefs: !ruby/object:MIME::Types::Container person: - Andrew_Burt template: - application/vnd.crick.clicker.palette registered: true - !ruby/object:MIME::Type content-type: application/vnd.crick.clicker.template friendly: en: CrickSoftware - Clicker - Template encoding: base64 extensions: - clkt xrefs: !ruby/object:MIME::Types::Container person: - Andrew_Burt template: - application/vnd.crick.clicker.template registered: true - !ruby/object:MIME::Type content-type: application/vnd.crick.clicker.wordbank friendly: en: CrickSoftware - Clicker - Wordbank encoding: base64 extensions: - clkw xrefs: !ruby/object:MIME::Types::Container person: - Andrew_Burt template: - application/vnd.crick.clicker.wordbank registered: true - !ruby/object:MIME::Type content-type: application/vnd.criticaltools.wbs+xml friendly: en: Critical Tools - PERT Chart EXPERT encoding: base64 extensions: - wbs xrefs: !ruby/object:MIME::Types::Container person: - Jim_Spiller template: - application/vnd.criticaltools.wbs+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.ctc-posml friendly: en: PosML encoding: base64 extensions: - pml xrefs: !ruby/object:MIME::Types::Container person: - Bayard_Kohlhepp template: - application/vnd.ctc-posml registered: true - !ruby/object:MIME::Type content-type: application/vnd.ctct.ws+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jim_Ancona template: - application/vnd.ctct.ws+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.cups-pdf encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Sweet template: - application/vnd.cups-pdf registered: true - !ruby/object:MIME::Type content-type: application/vnd.cups-postscript encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Sweet template: - application/vnd.cups-postscript registered: true - !ruby/object:MIME::Type content-type: application/vnd.cups-ppd friendly: en: Adobe PostScript Printer Description File Format encoding: base64 extensions: - ppd xrefs: !ruby/object:MIME::Types::Container person: - Michael_Sweet template: - application/vnd.cups-ppd registered: true - !ruby/object:MIME::Type content-type: application/vnd.cups-raster encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Sweet template: - application/vnd.cups-raster registered: true - !ruby/object:MIME::Type content-type: application/vnd.cups-raw encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Sweet template: - application/vnd.cups-raw registered: true - !ruby/object:MIME::Type content-type: application/vnd.curl encoding: base64 extensions: - curl xrefs: !ruby/object:MIME::Types::Container person: - Robert_Byrnes template: - application/vnd-curl registered: true - !ruby/object:MIME::Type content-type: application/vnd.curl.car friendly: en: CURL Applet encoding: base64 extensions: - car registered: false - !ruby/object:MIME::Type content-type: application/vnd.curl.pcurl friendly: en: CURL Applet encoding: base64 extensions: - pcurl registered: false - !ruby/object:MIME::Type content-type: application/vnd.cyan.dean.root+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Matt_Kern template: - application/vnd.cyan.dean.root+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.cybank encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nor_Helmee template: - application/vnd.cybank registered: true - !ruby/object:MIME::Type content-type: application/vnd.dart encoding: base64 extensions: - dart xrefs: !ruby/object:MIME::Types::Container person: - Anders_Sandholm template: - application/vnd-dart registered: true - !ruby/object:MIME::Type content-type: application/vnd.data-vision.rdz friendly: en: RemoteDocs R-Viewer encoding: base64 extensions: - rdz xrefs: !ruby/object:MIME::Types::Container person: - James_Fields template: - application/vnd.data-vision.rdz registered: true - !ruby/object:MIME::Type content-type: application/vnd.debian.binary-package encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Charles_Plessy template: - application/vnd.debian.binary-package registered: true - !ruby/object:MIME::Type content-type: application/vnd.dece.data encoding: base64 extensions: - uvd - uvf - uvvd - uvvf xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - application/vnd.dece.data registered: true - !ruby/object:MIME::Type content-type: application/vnd.dece.ttml+xml encoding: base64 extensions: - uvt - uvvt xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - application/vnd.dece.ttml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dece.unspecified encoding: base64 extensions: - uvvx - uvx xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - application/vnd.dece.unspecified registered: true - !ruby/object:MIME::Type content-type: application/vnd.dece.zip encoding: base64 extensions: - uvvz - uvz xrefs: !ruby/object:MIME::Types::Container person: - Michael_A_Dolan template: - application/vnd.dece-zip registered: true - !ruby/object:MIME::Type content-type: application/vnd.denovo.fcselayout-link friendly: en: FCS Express Layout Link encoding: base64 extensions: - fe_launch xrefs: !ruby/object:MIME::Types::Container person: - Michael_Dixon template: - application/vnd.denovo.fcselayout-link registered: true - !ruby/object:MIME::Type content-type: application/vnd.desmume.movie encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - application/vnd.desmume-movie registered: true - !ruby/object:MIME::Type content-type: application/vnd.dir-bi.plate-dl-nosuffix encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Yamanaka template: - application/vnd.dir-bi.plate-dl-nosuffix registered: true - !ruby/object:MIME::Type content-type: application/vnd.dm.delegation+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Axel_Ferrazzini template: - application/vnd.dm.delegation+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dna friendly: en: New Moon Liftoff/DNA encoding: base64 extensions: - dna xrefs: !ruby/object:MIME::Types::Container person: - Meredith_Searcy template: - application/vnd.dna registered: true - !ruby/object:MIME::Type content-type: application/vnd.document+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Tom_Christie template: - application/vnd.document+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.dolby.mlp friendly: en: Dolby Meridian Lossless Packing encoding: base64 extensions: - mlp registered: false - !ruby/object:MIME::Type content-type: application/vnd.dolby.mobile.1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - application/vnd.dolby.mobile.1 registered: true - !ruby/object:MIME::Type content-type: application/vnd.dolby.mobile.2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Hattersley template: - application/vnd.dolby.mobile.2 registered: true - !ruby/object:MIME::Type content-type: application/vnd.doremir.scorecloud-binary-document encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Erik_Ronström template: - application/vnd.doremir.scorecloud-binary-document registered: true - !ruby/object:MIME::Type content-type: application/vnd.dpgraph friendly: en: DPGraph encoding: base64 extensions: - dpg xrefs: !ruby/object:MIME::Types::Container person: - David_Parker template: - application/vnd.dpgraph registered: true - !ruby/object:MIME::Type content-type: application/vnd.dreamfactory friendly: en: DreamFactory encoding: base64 extensions: - dfac xrefs: !ruby/object:MIME::Types::Container person: - William_C._Appleton template: - application/vnd.dreamfactory registered: true - !ruby/object:MIME::Type content-type: application/vnd.drive+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Keith_Kester template: - application/vnd.drive+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.ds-keypoint encoding: base64 extensions: - kpxx registered: false - !ruby/object:MIME::Type content-type: application/vnd.dtg.local encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ali_Teffahi template: - application/vnd.dtg.local registered: true - !ruby/object:MIME::Type content-type: application/vnd.dtg.local.flash encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ali_Teffahi template: - application/vnd.dtg.local.flash registered: true - !ruby/object:MIME::Type content-type: application/vnd.dtg.local.html encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ali_Teffahi template: - application/vnd.dtg.local-html registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.ait friendly: en: Digital Video Broadcasting encoding: base64 extensions: - ait xrefs: !ruby/object:MIME::Types::Container person: - Peter_Siebert - Michael_Lagally template: - application/vnd.dvb.ait registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.dvbj encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Siebert - Michael_Lagally template: - application/vnd.dvb.dvbj registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.esgcontainer encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Joerg_Heuer template: - application/vnd.dvb.esgcontainer registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.ipdcdftnotifaccess encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roy_Yue template: - application/vnd.dvb.ipdcdftnotifaccess registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.ipdcesgaccess encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Joerg_Heuer template: - application/vnd.dvb.ipdcesgaccess registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.ipdcesgaccess2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jerome_Marcon template: - application/vnd.dvb.ipdcesgaccess2 registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.ipdcesgpdd encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jerome_Marcon template: - application/vnd.dvb.ipdcesgpdd registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.ipdcroaming encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Yiling_Xu template: - application/vnd.dvb.ipdcroaming registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.iptv.alfec-base encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jean-Baptiste_Henry template: - application/vnd.dvb.iptv.alfec-base registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.iptv.alfec-enhancement encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jean-Baptiste_Henry template: - application/vnd.dvb.iptv.alfec-enhancement registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.notif-aggregate-root+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roy_Yue template: - application/vnd.dvb.notif-aggregate-root+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.notif-container+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roy_Yue template: - application/vnd.dvb.notif-container+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.notif-generic+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roy_Yue template: - application/vnd.dvb.notif-generic+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.notif-ia-msglist+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roy_Yue template: - application/vnd.dvb.notif-ia-msglist+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.notif-ia-registration-request+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roy_Yue template: - application/vnd.dvb.notif-ia-registration-request+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.notif-ia-registration-response+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roy_Yue template: - application/vnd.dvb.notif-ia-registration-response+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.notif-init+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roy_Yue template: - application/vnd.dvb.notif-init+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.pfr encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Siebert - Michael_Lagally template: - application/vnd.dvb.pfr registered: true - !ruby/object:MIME::Type content-type: application/vnd.dvb.service friendly: en: Digital Video Broadcasting encoding: base64 extensions: - svc xrefs: !ruby/object:MIME::Types::Container person: - Peter_Siebert - Michael_Lagally template: - application/vnd.dvb_service registered: true - !ruby/object:MIME::Type content-type: application/vnd.dxr encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Duffy template: - application/vnd-dxr registered: true - !ruby/object:MIME::Type content-type: application/vnd.dynageo friendly: en: DynaGeo encoding: base64 extensions: - geo xrefs: !ruby/object:MIME::Types::Container person: - Roland_Mechling template: - application/vnd.dynageo registered: true - !ruby/object:MIME::Type content-type: application/vnd.dzr encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Carl_Anderson template: - application/vnd.dzr registered: true - !ruby/object:MIME::Type content-type: application/vnd.easykaraoke.cdgdownload encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Iain_Downs template: - application/vnd.easykaraoke.cdgdownload registered: true - !ruby/object:MIME::Type content-type: application/vnd.ecdis-update encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gert_Buettgenbach template: - application/vnd.ecdis-update registered: true - !ruby/object:MIME::Type content-type: application/vnd.ecowin.chart friendly: en: EcoWin Chart encoding: base64 extensions: - mag xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Olsson template: - application/vnd.ecowin.chart registered: true - !ruby/object:MIME::Type content-type: application/vnd.ecowin.filerequest encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Olsson template: - application/vnd.ecowin.filerequest registered: true - !ruby/object:MIME::Type content-type: application/vnd.ecowin.fileupdate encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Olsson template: - application/vnd.ecowin.fileupdate registered: true - !ruby/object:MIME::Type content-type: application/vnd.ecowin.series encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Olsson template: - application/vnd.ecowin.series registered: true - !ruby/object:MIME::Type content-type: application/vnd.ecowin.seriesrequest encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Olsson template: - application/vnd.ecowin.seriesrequest registered: true - !ruby/object:MIME::Type content-type: application/vnd.ecowin.seriesupdate encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Olsson template: - application/vnd.ecowin.seriesupdate registered: true - !ruby/object:MIME::Type content-type: application/vnd.emclient.accessrequest+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Filip_Navara template: - application/vnd.emclient.accessrequest+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.enliven friendly: en: Enliven Viewer encoding: base64 extensions: - nml xrefs: !ruby/object:MIME::Types::Container person: - Paul_Santinelli_Jr. template: - application/vnd.enliven registered: true - !ruby/object:MIME::Type content-type: application/vnd.enphase.envoy encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Chris_Eich template: - application/vnd.enphase.envoy registered: true - !ruby/object:MIME::Type content-type: application/vnd.eprints.data+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Tim_Brody template: - application/vnd.eprints.data+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.epson.esf friendly: en: QUASS Stream Player encoding: base64 extensions: - esf xrefs: !ruby/object:MIME::Types::Container person: - Shoji_Hoshina template: - application/vnd.epson.esf registered: true - !ruby/object:MIME::Type content-type: application/vnd.epson.msf friendly: en: QUASS Stream Player encoding: base64 extensions: - msf xrefs: !ruby/object:MIME::Types::Container person: - Shoji_Hoshina template: - application/vnd.epson.msf registered: true - !ruby/object:MIME::Type content-type: application/vnd.epson.quickanime friendly: en: QuickAnime Player encoding: base64 extensions: - qam xrefs: !ruby/object:MIME::Types::Container person: - Yu_Gu template: - application/vnd.epson.quickanime registered: true - !ruby/object:MIME::Type content-type: application/vnd.epson.salt friendly: en: SimpleAnimeLite Player encoding: base64 extensions: - slt xrefs: !ruby/object:MIME::Types::Container person: - Yasuhito_Nagatomo template: - application/vnd.epson.salt registered: true - !ruby/object:MIME::Type content-type: application/vnd.epson.ssf friendly: en: QUASS Stream Player encoding: base64 extensions: - ssf xrefs: !ruby/object:MIME::Types::Container person: - Shoji_Hoshina template: - application/vnd.epson.ssf registered: true - !ruby/object:MIME::Type content-type: application/vnd.ericsson.quickcall encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Paul_Tidwell template: - application/vnd.ericsson.quickcall registered: true - !ruby/object:MIME::Type content-type: application/vnd.eszigno3+xml friendly: en: MICROSEC e-Szign¢ encoding: base64 extensions: - es3 - et3 xrefs: !ruby/object:MIME::Types::Container person: - Szilveszter_Tóth template: - application/vnd.eszigno3+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.aoc+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.aoc+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.asic-e+zip encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Miguel_Angel_Reina_Ortega template: - application/vnd.etsi.asic-e+zip registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.asic-s+zip encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Miguel_Angel_Reina_Ortega template: - application/vnd.etsi.asic-s+zip registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.cug+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.cug+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvcommand+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.iptvcommand+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvdiscovery+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.iptvdiscovery+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvprofile+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.iptvprofile+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvsad-bc+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.iptvsad-bc+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvsad-cod+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.iptvsad-cod+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvsad-npvr+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.iptvsad-npvr+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvservice+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Miguel_Angel_Reina_Ortega template: - application/vnd.etsi.iptvservice+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvsync+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Miguel_Angel_Reina_Ortega template: - application/vnd.etsi.iptvsync+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.iptvueprofile+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.iptvueprofile+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.mcid+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.mcid+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.mheg5 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Miguel_Angel_Reina_Ortega - Ian_Medland template: - application/vnd.etsi.mheg5 registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.overload-control-policy-dataset+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Miguel_Angel_Reina_Ortega template: - application/vnd.etsi.overload-control-policy-dataset+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.pstn+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jiwan_Han - Thomas_Belling template: - application/vnd.etsi.pstn+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.sci+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.sci+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.simservs+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.simservs+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.timestamp-token encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Miguel_Angel_Reina_Ortega template: - application/vnd.etsi.timestamp-token registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.tsl+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.tsl+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.etsi.tsl.der encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shicheng_Hu template: - application/vnd.etsi.tsl.der registered: true - !ruby/object:MIME::Type content-type: application/vnd.eudora.data encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Pete_Resnick template: - application/vnd.eudora.data registered: true - !ruby/object:MIME::Type content-type: application/vnd.ezpix-album friendly: en: EZPix Secure Photo Album encoding: base64 extensions: - ez2 xrefs: !ruby/object:MIME::Types::Container person: - ElectronicZombieCorp template: - application/vnd.ezpix-album registered: true - !ruby/object:MIME::Type content-type: application/vnd.ezpix-package friendly: en: EZPix Secure Photo Album encoding: base64 extensions: - ez3 xrefs: !ruby/object:MIME::Types::Container person: - ElectronicZombieCorp template: - application/vnd.ezpix-package registered: true - !ruby/object:MIME::Type content-type: application/vnd.f-secure.mobile encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Samu_Sarivaara template: - application/vnd.f-secure.mobile registered: true - !ruby/object:MIME::Type content-type: application/vnd.fastcopy-disk-image encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Huth template: - application/vnd.fastcopy-disk-image registered: true - !ruby/object:MIME::Type content-type: application/vnd.fdf friendly: en: Forms Data Format encoding: base64 extensions: - fdf xrefs: !ruby/object:MIME::Types::Container person: - Steve_Zilles template: - application/vnd-fdf registered: true - !ruby/object:MIME::Type content-type: application/vnd.fdsn.mseed encoding: base64 extensions: - mseed xrefs: !ruby/object:MIME::Types::Container person: - Chad_Trabant template: - application/vnd.fdsn.mseed registered: true - !ruby/object:MIME::Type content-type: application/vnd.fdsn.seed friendly: en: Digital Siesmograph Networks - SEED Datafiles encoding: base64 extensions: - dataless - seed xrefs: !ruby/object:MIME::Types::Container person: - Chad_Trabant template: - application/vnd.fdsn.seed registered: true - !ruby/object:MIME::Type content-type: application/vnd.ffsns encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Holstage template: - application/vnd.ffsns registered: true - !ruby/object:MIME::Type content-type: application/vnd.fints encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ingo_Hammann template: - application/vnd.fints registered: true - !ruby/object:MIME::Type content-type: application/vnd.firemonkeys.cloudcell encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Alex_Dubov template: - application/vnd.firemonkeys.cloudcell registered: true - !ruby/object:MIME::Type content-type: application/vnd.FloGraphIt friendly: en: NpGraphIt encoding: base64 extensions: - gph xrefs: !ruby/object:MIME::Types::Container person: - Dick_Floersch template: - application/vnd.FloGraphIt registered: true - !ruby/object:MIME::Type content-type: application/vnd.fluxtime.clip friendly: en: FluxTime Clip encoding: base64 extensions: - ftc xrefs: !ruby/object:MIME::Types::Container person: - Marc_Winter template: - application/vnd.fluxtime.clip registered: true - !ruby/object:MIME::Type content-type: application/vnd.font-fontforge-sfd encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - George_Williams template: - application/vnd.font-fontforge-sfd registered: true - !ruby/object:MIME::Type content-type: application/vnd.framemaker friendly: en: FrameMaker Normal Format encoding: base64 extensions: - frm - maker - frame - fm - fb - book - fbdoc xrefs: !ruby/object:MIME::Types::Container person: - Mike_Wexler template: - application/vnd.framemaker registered: true - !ruby/object:MIME::Type content-type: application/vnd.frogans.fnc friendly: en: Frogans Player encoding: base64 extensions: - fnc xrefs: !ruby/object:MIME::Types::Container person: - Alexis_Tamas template: - application/vnd.frogans.fnc registered: true - !ruby/object:MIME::Type content-type: application/vnd.frogans.ltf friendly: en: Frogans Player encoding: base64 extensions: - ltf xrefs: !ruby/object:MIME::Types::Container person: - Alexis_Tamas template: - application/vnd.frogans.ltf registered: true - !ruby/object:MIME::Type content-type: application/vnd.fsc.weblaunch friendly: en: Friendly Software Corporation encoding: 7bit extensions: - fsc xrefs: !ruby/object:MIME::Types::Container person: - Derek_Smith template: - application/vnd.fsc.weblaunch registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujitsu.oasys friendly: en: Fujitsu Oasys encoding: base64 extensions: - oas xrefs: !ruby/object:MIME::Types::Container person: - Nobukazu_Togashi template: - application/vnd.fujitsu.oasys registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujitsu.oasys2 friendly: en: Fujitsu Oasys encoding: base64 extensions: - oa2 xrefs: !ruby/object:MIME::Types::Container person: - Nobukazu_Togashi template: - application/vnd.fujitsu.oasys2 registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujitsu.oasys3 friendly: en: Fujitsu Oasys encoding: base64 extensions: - oa3 xrefs: !ruby/object:MIME::Types::Container person: - Seiji_Okudaira template: - application/vnd.fujitsu.oasys3 registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujitsu.oasysgp friendly: en: Fujitsu Oasys encoding: base64 extensions: - fg5 xrefs: !ruby/object:MIME::Types::Container person: - Masahiko_Sugimoto template: - application/vnd.fujitsu.oasysgp registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujitsu.oasysprs friendly: en: Fujitsu Oasys encoding: base64 extensions: - bh2 xrefs: !ruby/object:MIME::Types::Container person: - Masumi_Ogita template: - application/vnd.fujitsu.oasysprs registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujixerox.ART-EX encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Fumio_Tanabe template: - application/vnd.fujixerox.ART-EX registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujixerox.ART4 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Fumio_Tanabe template: - application/vnd.fujixerox.ART4 registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujixerox.ddd friendly: en: Fujitsu - Xerox 2D CAD Data encoding: base64 extensions: - ddd xrefs: !ruby/object:MIME::Types::Container person: - Masanori_Onda template: - application/vnd.fujixerox.ddd registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujixerox.docuworks friendly: en: Fujitsu - Xerox DocuWorks encoding: base64 extensions: - xdw xrefs: !ruby/object:MIME::Types::Container person: - Yasuo_Taguchi template: - application/vnd.fujixerox.docuworks registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujixerox.docuworks.binder friendly: en: Fujitsu - Xerox DocuWorks Binder encoding: base64 extensions: - xbd xrefs: !ruby/object:MIME::Types::Container person: - Takashi_Matsumoto template: - application/vnd.fujixerox.docuworks.binder registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujixerox.docuworks.container encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kiyoshi_Tashiro template: - application/vnd.fujixerox.docuworks.container registered: true - !ruby/object:MIME::Type content-type: application/vnd.fujixerox.HBPL encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Fumio_Tanabe template: - application/vnd.fujixerox.HBPL registered: true - !ruby/object:MIME::Type content-type: application/vnd.fut-misnet encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jann_Pruulman template: - application/vnd.fut-misnet registered: true - !ruby/object:MIME::Type content-type: application/vnd.fuzzysheet friendly: en: FuzzySheet encoding: base64 extensions: - fzs xrefs: !ruby/object:MIME::Types::Container person: - Simon_Birtwistle template: - application/vnd.fuzzysheet registered: true - !ruby/object:MIME::Type content-type: application/vnd.genomatix.tuxedo friendly: en: Genomatix Tuxedo Framework encoding: base64 extensions: - txd xrefs: !ruby/object:MIME::Types::Container person: - Torben_Frey template: - application/vnd.genomatix.tuxedo registered: true - !ruby/object:MIME::Type content-type: application/vnd.geo+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Sean_Gillies template: - application/vnd.geo+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.geocube+xml encoding: 8bit obsolete: true xrefs: !ruby/object:MIME::Types::Container person: - Francois_Pirsch template: - application/vnd.geocube+xml notes: - "- OBSOLETED by request" registered: true - !ruby/object:MIME::Type content-type: application/vnd.geogebra.file friendly: en: GeoGebra encoding: base64 extensions: - ggb xrefs: !ruby/object:MIME::Types::Container person: - GeoGebra - Yves_Kreis template: - application/vnd.geogebra.file registered: true - !ruby/object:MIME::Type content-type: application/vnd.geogebra.tool friendly: en: GeoGebra encoding: base64 extensions: - ggt xrefs: !ruby/object:MIME::Types::Container person: - GeoGebra - Yves_Kreis template: - application/vnd.geogebra.tool registered: true - !ruby/object:MIME::Type content-type: application/vnd.geometry-explorer friendly: en: GeoMetry Explorer encoding: base64 extensions: - gex - gre xrefs: !ruby/object:MIME::Types::Container person: - Michael_Hvidsten template: - application/vnd.geometry-explorer registered: true - !ruby/object:MIME::Type content-type: application/vnd.geonext friendly: en: GEONExT and JSXGraph encoding: base64 extensions: - gxt xrefs: !ruby/object:MIME::Types::Container person: - Matthias_Ehmann template: - application/vnd.geonext registered: true - !ruby/object:MIME::Type content-type: application/vnd.geoplan friendly: en: GeoplanW encoding: base64 extensions: - g2w xrefs: !ruby/object:MIME::Types::Container person: - Christian_Mercat template: - application/vnd.geoplan registered: true - !ruby/object:MIME::Type content-type: application/vnd.geospace friendly: en: GeospacW encoding: base64 extensions: - g3w xrefs: !ruby/object:MIME::Types::Container person: - Christian_Mercat template: - application/vnd.geospace registered: true - !ruby/object:MIME::Type content-type: application/vnd.gerber encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Weyn template: - application/vnd.gerber registered: true - !ruby/object:MIME::Type content-type: application/vnd.globalplatform.card-content-mgt encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gil_Bernabeu template: - application/vnd.globalplatform.card-content-mgt registered: true - !ruby/object:MIME::Type content-type: application/vnd.globalplatform.card-content-mgt-response encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gil_Bernabeu template: - application/vnd.globalplatform.card-content-mgt-response registered: true - !ruby/object:MIME::Type content-type: application/vnd.gmx friendly: en: GameMaker ActiveX encoding: base64 extensions: - gmx obsolete: true xrefs: !ruby/object:MIME::Types::Container person: - Christian_V._Sciberras template: - application/vnd.gmx notes: - "- DEPRECATED" registered: true - !ruby/object:MIME::Type content-type: application/vnd.google-earth.kml+xml friendly: en: Google Earth - KML encoding: 8bit extensions: - kml xrefs: !ruby/object:MIME::Types::Container person: - Michael_Ashbridge template: - application/vnd.google-earth.kml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.google-earth.kmz friendly: en: Google Earth - Zipped KML encoding: 8bit extensions: - kmz xrefs: !ruby/object:MIME::Types::Container person: - Michael_Ashbridge template: - application/vnd.google-earth.kmz registered: true - !ruby/object:MIME::Type content-type: application/vnd.gov.sk.e-form+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Biro - Stefan_Szilva template: - application/vnd.gov.sk.e-form+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.gov.sk.e-form+zip encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Biro - Stefan_Szilva template: - application/vnd.gov.sk.e-form+zip registered: true - !ruby/object:MIME::Type content-type: application/vnd.gov.sk.xmldatacontainer+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Biro - Stefan_Szilva template: - application/vnd.gov.sk.xmldatacontainer+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.grafeq friendly: en: GrafEq encoding: base64 extensions: - gqf - gqs xrefs: !ruby/object:MIME::Types::Container person: - Jeff_Tupper template: - application/vnd.grafeq registered: true - !ruby/object:MIME::Type content-type: application/vnd.gridmp encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jeff_Lawson template: - application/vnd.gridmp registered: true - !ruby/object:MIME::Type content-type: application/vnd.groove-account friendly: en: Groove - Account encoding: base64 extensions: - gac xrefs: !ruby/object:MIME::Types::Container person: - Todd_Joseph template: - application/vnd.groove-account registered: true - !ruby/object:MIME::Type content-type: application/vnd.groove-help friendly: en: Groove - Help encoding: base64 extensions: - ghf xrefs: !ruby/object:MIME::Types::Container person: - Todd_Joseph template: - application/vnd.groove-help registered: true - !ruby/object:MIME::Type content-type: application/vnd.groove-identity-message friendly: en: Groove - Identity Message encoding: base64 extensions: - gim xrefs: !ruby/object:MIME::Types::Container person: - Todd_Joseph template: - application/vnd.groove-identity-message registered: true - !ruby/object:MIME::Type content-type: application/vnd.groove-injector friendly: en: Groove - Injector encoding: base64 extensions: - grv xrefs: !ruby/object:MIME::Types::Container person: - Todd_Joseph template: - application/vnd.groove-injector registered: true - !ruby/object:MIME::Type content-type: application/vnd.groove-tool-message friendly: en: Groove - Tool Message encoding: base64 extensions: - gtm xrefs: !ruby/object:MIME::Types::Container person: - Todd_Joseph template: - application/vnd.groove-tool-message registered: true - !ruby/object:MIME::Type content-type: application/vnd.groove-tool-template friendly: en: Groove - Tool Template encoding: base64 extensions: - tpl xrefs: !ruby/object:MIME::Types::Container person: - Todd_Joseph template: - application/vnd.groove-tool-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.groove-vcard friendly: en: Groove - Vcard encoding: base64 extensions: - vcg xrefs: !ruby/object:MIME::Types::Container person: - Todd_Joseph template: - application/vnd.groove-vcard registered: true - !ruby/object:MIME::Type content-type: application/vnd.hal+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mike_Kelly template: - application/vnd.hal+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.hal+xml friendly: en: Hypertext Application Language encoding: base64 extensions: - hal xrefs: !ruby/object:MIME::Types::Container person: - Mike_Kelly template: - application/vnd.hal+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.HandHeld-Entertainment+xml friendly: en: ZVUE Media Manager encoding: base64 extensions: - zmm xrefs: !ruby/object:MIME::Types::Container person: - Eric_Hamilton template: - application/vnd.HandHeld-Entertainment+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.hbci friendly: en: Homebanking Computer Interface (HBCI) encoding: base64 extensions: - hbci - hbc - kom - upa - pkd - bpd xrefs: !ruby/object:MIME::Types::Container person: - Ingo_Hammann template: - application/vnd.hbci registered: true - !ruby/object:MIME::Type content-type: application/vnd.hcl-bireports encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Doug_R._Serres template: - application/vnd.hcl-bireports registered: true - !ruby/object:MIME::Type content-type: application/vnd.heroku+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Wesley_Beary template: - application/vnd.heroku+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.hhe.lesson-player friendly: en: Archipelago Lesson Player encoding: base64 extensions: - les xrefs: !ruby/object:MIME::Types::Container person: - Randy_Jones template: - application/vnd.hhe.lesson-player registered: true - !ruby/object:MIME::Type content-type: application/vnd.hp-HPGL friendly: en: HP-GL/2 and HP RTL encoding: base64 extensions: - plt - hpgl xrefs: !ruby/object:MIME::Types::Container person: - Bob_Pentecost template: - application/vnd.hp-HPGL registered: true - !ruby/object:MIME::Type content-type: application/vnd.hp-hpid friendly: en: Hewlett Packard Instant Delivery encoding: base64 extensions: - hpid xrefs: !ruby/object:MIME::Types::Container person: - Aloke_Gupta template: - application/vnd.hp-hpid registered: true - !ruby/object:MIME::Type content-type: application/vnd.hp-hps friendly: en: Hewlett-Packard's WebPrintSmart encoding: base64 extensions: - hps xrefs: !ruby/object:MIME::Types::Container person: - Steve_Aubrey template: - application/vnd.hp-hps registered: true - !ruby/object:MIME::Type content-type: application/vnd.hp-jlyt friendly: en: HP Indigo Digital Press - Job Layout Languate encoding: base64 extensions: - jlt xrefs: !ruby/object:MIME::Types::Container person: - Amir_Gaash template: - application/vnd.hp-jlyt registered: true - !ruby/object:MIME::Type content-type: application/vnd.hp-PCL friendly: en: HP Printer Command Language encoding: base64 extensions: - pcl xrefs: !ruby/object:MIME::Types::Container person: - Bob_Pentecost template: - application/vnd.hp-PCL registered: true - !ruby/object:MIME::Type content-type: application/vnd.hp-PCLXL friendly: en: PCL 6 Enhanced (Formely PCL XL) encoding: base64 extensions: - pclxl xrefs: !ruby/object:MIME::Types::Container person: - Bob_Pentecost template: - application/vnd.hp-PCLXL registered: true - !ruby/object:MIME::Type content-type: application/vnd.httphone encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Franck_Lefevre template: - application/vnd.httphone registered: true - !ruby/object:MIME::Type content-type: application/vnd.hydrostatix.sof-data friendly: en: Hydrostatix Master Suite encoding: base64 extensions: - sfd-hdstx xrefs: !ruby/object:MIME::Types::Container person: - Allen_Gillam template: - application/vnd.hydrostatix.sof-data registered: true - !ruby/object:MIME::Type content-type: application/vnd.hyperdrive+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Daniel_Sims template: - application/vnd.hyperdrive+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.hzn-3d-crossword friendly: en: 3D Crossword Plugin encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - James_Minnis template: - application/vnd.hzn-3d-crossword registered: true - !ruby/object:MIME::Type content-type: application/vnd.ibm.afplinedata encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Roger_Buis template: - application/vnd.ibm.afplinedata registered: true - !ruby/object:MIME::Type content-type: application/vnd.ibm.electronic-media encoding: base64 extensions: - emm xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Tantlinger template: - application/vnd.ibm.electronic-media registered: true - !ruby/object:MIME::Type content-type: application/vnd.ibm.MiniPay friendly: en: MiniPay encoding: base64 extensions: - mpy xrefs: !ruby/object:MIME::Types::Container person: - Amir_Herzberg template: - application/vnd.ibm.MiniPay registered: true - !ruby/object:MIME::Type content-type: application/vnd.ibm.modcap friendly: en: MO:DCA-P encoding: base64 extensions: - afp - list3820 - listafp xrefs: !ruby/object:MIME::Types::Container person: - Reinhard_Hohensee template: - application/vnd.ibm.modcap registered: true - !ruby/object:MIME::Type content-type: application/vnd.ibm.rights-management friendly: en: IBM DB2 Rights Manager encoding: base64 extensions: - irm xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Tantlinger template: - application/vnd.ibm.rights-management registered: true - !ruby/object:MIME::Type content-type: application/vnd.ibm.secure-container friendly: en: IBM Electronic Media Management System - Secure Container encoding: base64 extensions: - sc xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Tantlinger template: - application/vnd.ibm.secure-container registered: true - !ruby/object:MIME::Type content-type: application/vnd.iccprofile friendly: en: ICC profile encoding: base64 extensions: - icc - icm xrefs: !ruby/object:MIME::Types::Container person: - Phil_Green template: - application/vnd.iccprofile registered: true - !ruby/object:MIME::Type content-type: application/vnd.ieee.1905 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Purva_R_Rajkotia template: - application/vnd.ieee.1905 registered: true - !ruby/object:MIME::Type content-type: application/vnd.igloader friendly: en: igLoader encoding: base64 extensions: - igl xrefs: !ruby/object:MIME::Types::Container person: - Tim_Fisher template: - application/vnd.igloader registered: true - !ruby/object:MIME::Type content-type: application/vnd.immervision-ivp friendly: en: ImmerVision PURE Players encoding: base64 extensions: - ivp xrefs: !ruby/object:MIME::Types::Container person: - Mathieu_Villegas template: - application/vnd.immervision-ivp registered: true - !ruby/object:MIME::Type content-type: application/vnd.immervision-ivu friendly: en: ImmerVision PURE Players encoding: base64 extensions: - ivu xrefs: !ruby/object:MIME::Types::Container person: - Mathieu_Villegas template: - application/vnd.immervision-ivu registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.imsccv1p1 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.imsccv1p1 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.imsccv1p2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.imsccv1p2 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.imsccv1p3 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.imsccv1p3 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.lis.v2.result+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.lis.v2.result+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.lti.v2.toolconsumerprofile+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.lti.v2.toolconsumerprofile+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.lti.v2.toolproxy+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.lti.v2.toolproxy+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.lti.v2.toolproxy.id+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.lti.v2.toolproxy.id+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.lti.v2.toolsettings+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.lti.v2.toolsettings+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.ims.lti.v2.toolsettings.simple+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lisa_Mattson template: - application/vnd.ims.lti.v2.toolsettings.simple+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.informedcontrol.rms+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Wahl template: - application/vnd.informedcontrol.rms+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.informix-visionary encoding: base64 obsolete: true use-instead: application/vnd.visionary xrefs: !ruby/object:MIME::Types::Container person: - Christopher_Gales template: - application/vnd.informix-visionary notes: - "- OBSOLETED in favor of application/vnd.visionary" registered: true - !ruby/object:MIME::Type content-type: application/vnd.infotech.project encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Charles_Engelke template: - application/vnd.infotech.project registered: true - !ruby/object:MIME::Type content-type: application/vnd.infotech.project+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Charles_Engelke template: - application/vnd.infotech.project+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.innopath.wamp.notification encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Takanori_Sudo template: - application/vnd.innopath.wamp.notification registered: true - !ruby/object:MIME::Type content-type: application/vnd.insors.igm friendly: en: IOCOM Visimeet encoding: base64 extensions: - igm xrefs: !ruby/object:MIME::Types::Container person: - Jon_Swanson template: - application/vnd.insors.igm registered: true - !ruby/object:MIME::Type content-type: application/vnd.intercon.formnet friendly: en: Intercon FormNet encoding: base64 extensions: - xpw - xpx xrefs: !ruby/object:MIME::Types::Container person: - Tom_Gurak template: - application/vnd.intercon.formnet registered: true - !ruby/object:MIME::Type content-type: application/vnd.intergeo friendly: en: Interactive Geometry Software encoding: base64 extensions: - i2g xrefs: !ruby/object:MIME::Types::Container person: - Yves_Kreis_2 template: - application/vnd.intergeo registered: true - !ruby/object:MIME::Type content-type: application/vnd.intertrust.digibox encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Luke_Tomasello template: - application/vnd.intertrust.digibox registered: true - !ruby/object:MIME::Type content-type: application/vnd.intertrust.nncp encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Luke_Tomasello template: - application/vnd.intertrust.nncp registered: true - !ruby/object:MIME::Type content-type: application/vnd.intu.qbo friendly: en: Open Financial Exchange encoding: base64 extensions: - qbo xrefs: !ruby/object:MIME::Types::Container person: - Greg_Scratchley template: - application/vnd.intu.qbo registered: true - !ruby/object:MIME::Type content-type: application/vnd.intu.qfx friendly: en: Quicken encoding: base64 extensions: - qfx xrefs: !ruby/object:MIME::Types::Container person: - Greg_Scratchley template: - application/vnd.intu.qfx registered: true - !ruby/object:MIME::Type content-type: application/vnd.iptc.g2.catalogitem+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Steidl template: - application/vnd.iptc.g2.catalogitem+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.iptc.g2.conceptitem+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Steidl template: - application/vnd.iptc.g2.conceptitem+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.iptc.g2.knowledgeitem+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Steidl template: - application/vnd.iptc.g2.knowledgeitem+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.iptc.g2.newsitem+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Steidl template: - application/vnd.iptc.g2.newsitem+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.iptc.g2.newsmessage+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Steidl template: - application/vnd.iptc.g2.newsmessage+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.iptc.g2.packageitem+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Steidl template: - application/vnd.iptc.g2.packageitem+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.iptc.g2.planningitem+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Steidl template: - application/vnd.iptc.g2.planningitem+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.ipunplugged.rcprofile friendly: en: IP Unplugged Roaming Client encoding: base64 extensions: - rcprofile xrefs: !ruby/object:MIME::Types::Container person: - Per_Ersson template: - application/vnd.ipunplugged.rcprofile registered: true - !ruby/object:MIME::Type content-type: application/vnd.irepository.package+xml friendly: en: iRepository / Lucidoc Editor encoding: base64 extensions: - irp xrefs: !ruby/object:MIME::Types::Container person: - Martin_Knowles template: - application/vnd.irepository.package+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.is-xpr friendly: en: Express by Infoseek encoding: base64 extensions: - xpr xrefs: !ruby/object:MIME::Types::Container person: - Satish_Navarajan template: - application/vnd.is-xpr registered: true - !ruby/object:MIME::Type content-type: application/vnd.isac.fcs friendly: en: International Society for Advancement of Cytometry encoding: base64 extensions: - fcs xrefs: !ruby/object:MIME::Types::Container person: - Ryan_Brinkman template: - application/vnd.isac.fcs registered: true - !ruby/object:MIME::Type content-type: application/vnd.jam friendly: en: Lightspeed Audio Lab encoding: base64 extensions: - jam xrefs: !ruby/object:MIME::Types::Container person: - Brijesh_Kumar template: - application/vnd.jam registered: true - !ruby/object:MIME::Type content-type: application/vnd.japannet-directory-service encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kiyofusa_Fujii template: - application/vnd.japannet-directory-service registered: true - !ruby/object:MIME::Type content-type: application/vnd.japannet-jpnstore-wakeup encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jun_Yoshitake template: - application/vnd.japannet-jpnstore-wakeup registered: true - !ruby/object:MIME::Type content-type: application/vnd.japannet-payment-wakeup encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kiyofusa_Fujii template: - application/vnd.japannet-payment-wakeup registered: true - !ruby/object:MIME::Type content-type: application/vnd.japannet-registration encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jun_Yoshitake template: - application/vnd.japannet-registration registered: true - !ruby/object:MIME::Type content-type: application/vnd.japannet-registration-wakeup encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kiyofusa_Fujii template: - application/vnd.japannet-registration-wakeup registered: true - !ruby/object:MIME::Type content-type: application/vnd.japannet-setstore-wakeup encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jun_Yoshitake template: - application/vnd.japannet-setstore-wakeup registered: true - !ruby/object:MIME::Type content-type: application/vnd.japannet-verification encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jun_Yoshitake template: - application/vnd.japannet-verification registered: true - !ruby/object:MIME::Type content-type: application/vnd.japannet-verification-wakeup encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kiyofusa_Fujii template: - application/vnd.japannet-verification-wakeup registered: true - !ruby/object:MIME::Type content-type: application/vnd.jcp.javame.midlet-rms friendly: en: Mobile Information Device Profile encoding: base64 extensions: - rms xrefs: !ruby/object:MIME::Types::Container person: - Mikhail_Gorshenev template: - application/vnd.jcp.javame.midlet-rms registered: true - !ruby/object:MIME::Type content-type: application/vnd.jisp friendly: en: RhymBox encoding: base64 extensions: - jisp xrefs: !ruby/object:MIME::Types::Container person: - Sebastiaan_Deckers template: - application/vnd.jisp registered: true - !ruby/object:MIME::Type content-type: application/vnd.joost.joda-archive friendly: en: Joda Archive encoding: base64 extensions: - joda xrefs: !ruby/object:MIME::Types::Container person: - Joost template: - application/vnd.joost.joda-archive registered: true - !ruby/object:MIME::Type content-type: application/vnd.jsk.isdn-ngn encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Yokoyama_Kiyonobu template: - application/vnd.jsk.isdn-ngn registered: true - !ruby/object:MIME::Type content-type: application/vnd.kahootz friendly: en: Kahootz encoding: base64 extensions: - ktr - ktz xrefs: !ruby/object:MIME::Types::Container person: - Tim_Macdonald template: - application/vnd.kahootz registered: true - !ruby/object:MIME::Type content-type: application/vnd.kde.karbon friendly: en: KDE KOffice Office Suite - Karbon encoding: base64 extensions: - karbon xrefs: !ruby/object:MIME::Types::Container person: - David_Faure template: - application/vnd.kde.karbon registered: true - !ruby/object:MIME::Type content-type: application/vnd.kde.kchart friendly: en: KDE KOffice Office Suite - KChart encoding: base64 extensions: - chrt xrefs: !ruby/object:MIME::Types::Container person: - David_Faure template: - application/vnd.kde.kchart registered: true - !ruby/object:MIME::Type content-type: application/vnd.kde.kformula friendly: en: KDE KOffice Office Suite - Kformula encoding: base64 extensions: - kfo xrefs: !ruby/object:MIME::Types::Container person: - David_Faure template: - application/vnd.kde.kformula registered: true - !ruby/object:MIME::Type content-type: application/vnd.kde.kivio friendly: en: KDE KOffice Office Suite - Kivio encoding: base64 extensions: - flw xrefs: !ruby/object:MIME::Types::Container person: - David_Faure template: - application/vnd.kde.kivio registered: true - !ruby/object:MIME::Type content-type: application/vnd.kde.kontour friendly: en: KDE KOffice Office Suite - Kontour encoding: base64 extensions: - kon xrefs: !ruby/object:MIME::Types::Container person: - David_Faure template: - application/vnd.kde.kontour registered: true - !ruby/object:MIME::Type content-type: application/vnd.kde.kpresenter friendly: en: KDE KOffice Office Suite - Kpresenter encoding: base64 extensions: - kpr - kpt xrefs: !ruby/object:MIME::Types::Container person: - David_Faure template: - application/vnd.kde.kpresenter registered: true - !ruby/object:MIME::Type content-type: application/vnd.kde.kspread friendly: en: KDE KOffice Office Suite - Kspread encoding: base64 extensions: - ksp xrefs: !ruby/object:MIME::Types::Container person: - David_Faure template: - application/vnd.kde.kspread registered: true - !ruby/object:MIME::Type content-type: application/vnd.kde.kword friendly: en: KDE KOffice Office Suite - Kword encoding: base64 extensions: - kwd - kwt xrefs: !ruby/object:MIME::Types::Container person: - David_Faure template: - application/vnd.kde.kword registered: true - !ruby/object:MIME::Type content-type: application/vnd.kenameaapp friendly: en: Kenamea App encoding: base64 extensions: - htke xrefs: !ruby/object:MIME::Types::Container person: - Dirk_DiGiorgio-Haag template: - application/vnd.kenameaapp registered: true - !ruby/object:MIME::Type content-type: application/vnd.kidspiration friendly: en: Kidspiration encoding: base64 extensions: - kia xrefs: !ruby/object:MIME::Types::Container person: - Jack_Bennett template: - application/vnd.kidspiration registered: true - !ruby/object:MIME::Type content-type: application/vnd.Kinar friendly: en: Kinar Applications encoding: base64 extensions: - kne - knp - sdf xrefs: !ruby/object:MIME::Types::Container person: - Hemant_Thakkar template: - application/vnd.Kinar registered: true - !ruby/object:MIME::Type content-type: application/vnd.koan friendly: en: SSEYO Koan Play File encoding: base64 extensions: - skd - skm - skp - skt xrefs: !ruby/object:MIME::Types::Container person: - Pete_Cole template: - application/vnd.koan registered: true - !ruby/object:MIME::Type content-type: application/vnd.kodak-descriptor friendly: en: Kodak Storyshare encoding: base64 extensions: - sse xrefs: !ruby/object:MIME::Types::Container person: - Michael_J._Donahue template: - application/vnd.kodak-descriptor registered: true - !ruby/object:MIME::Type content-type: application/vnd.las.las+xml friendly: en: Laser App Enterprise encoding: base64 extensions: - lasxml xrefs: !ruby/object:MIME::Types::Container person: - Rob_Bailey template: - application/vnd.las.las+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.liberty-request+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Brett_McDowell template: - application/vnd.liberty-request+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.llamagraphics.life-balance.desktop friendly: en: Life Balance - Desktop Edition encoding: base64 extensions: - lbd xrefs: !ruby/object:MIME::Types::Container person: - Catherine_E._White template: - application/vnd.llamagraphics.life-balance.desktop registered: true - !ruby/object:MIME::Type content-type: application/vnd.llamagraphics.life-balance.exchange+xml friendly: en: Life Balance - Exchange Format encoding: base64 extensions: - lbe xrefs: !ruby/object:MIME::Types::Container person: - Catherine_E._White template: - application/vnd.llamagraphics.life-balance.exchange+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.lotus-1-2-3 friendly: en: Lotus 1-2-3 encoding: base64 extensions: - wks - '123' xrefs: !ruby/object:MIME::Types::Container person: - Paul_Wattenberger template: - application/vnd.lotus-1-2-3 registered: true - !ruby/object:MIME::Type content-type: application/vnd.lotus-approach friendly: en: Lotus Approach encoding: base64 extensions: - apr xrefs: !ruby/object:MIME::Types::Container person: - Paul_Wattenberger template: - application/vnd.lotus-approach registered: true - !ruby/object:MIME::Type content-type: application/vnd.lotus-freelance friendly: en: Lotus Freelance encoding: base64 extensions: - pre xrefs: !ruby/object:MIME::Types::Container person: - Paul_Wattenberger template: - application/vnd.lotus-freelance registered: true - !ruby/object:MIME::Type content-type: application/vnd.lotus-notes friendly: en: Lotus Notes encoding: base64 extensions: - nsf xrefs: !ruby/object:MIME::Types::Container person: - Michael_Laramie template: - application/vnd.lotus-notes registered: true - !ruby/object:MIME::Type content-type: application/vnd.lotus-organizer friendly: en: Lotus Organizer encoding: base64 extensions: - org xrefs: !ruby/object:MIME::Types::Container person: - Paul_Wattenberger template: - application/vnd.lotus-organizer registered: true - !ruby/object:MIME::Type content-type: application/vnd.lotus-screencam friendly: en: Lotus Screencam encoding: base64 extensions: - scm xrefs: !ruby/object:MIME::Types::Container person: - Paul_Wattenberger template: - application/vnd.lotus-screencam registered: true - !ruby/object:MIME::Type content-type: application/vnd.lotus-wordpro friendly: en: Lotus Wordpro encoding: base64 extensions: - lwp xrefs: !ruby/object:MIME::Types::Container person: - Paul_Wattenberger template: - application/vnd.lotus-wordpro registered: true - !ruby/object:MIME::Type content-type: application/vnd.macports.portpkg friendly: en: MacPorts Port System encoding: base64 extensions: - portpkg xrefs: !ruby/object:MIME::Types::Container person: - James_Berry template: - application/vnd.macports.portpkg registered: true - !ruby/object:MIME::Type content-type: application/vnd.marlin.drm.actiontoken+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gary_Ellison template: - application/vnd.marlin.drm.actiontoken+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.marlin.drm.conftoken+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gary_Ellison template: - application/vnd.marlin.drm.conftoken+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.marlin.drm.license+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gary_Ellison template: - application/vnd.marlin.drm.license+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.marlin.drm.mdcf encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Gary_Ellison template: - application/vnd.marlin.drm.mdcf registered: true - !ruby/object:MIME::Type content-type: application/vnd.mason+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jorn_Wildt template: - application/vnd.mason+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.maxmind.maxmind-db encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - William_Stevenson template: - application/vnd.maxmind.maxmind-db registered: true - !ruby/object:MIME::Type content-type: application/vnd.mcd friendly: en: Micro CADAM Helix D&D encoding: base64 extensions: - mcd xrefs: !ruby/object:MIME::Types::Container person: - Tadashi_Gotoh template: - application/vnd.mcd registered: true - !ruby/object:MIME::Type content-type: application/vnd.medcalcdata friendly: en: MedCalc encoding: base64 extensions: - mc1 xrefs: !ruby/object:MIME::Types::Container person: - Frank_Schoonjans template: - application/vnd.medcalcdata registered: true - !ruby/object:MIME::Type content-type: application/vnd.mediastation.cdkey friendly: en: MediaRemote encoding: base64 extensions: - cdkey xrefs: !ruby/object:MIME::Types::Container person: - Henry_Flurry template: - application/vnd.mediastation.cdkey registered: true - !ruby/object:MIME::Type content-type: application/vnd.meridian-slingshot encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Eric_Wedel template: - application/vnd.meridian-slingshot registered: true - !ruby/object:MIME::Type content-type: application/vnd.MFER friendly: en: Medical Waveform Encoding Format encoding: base64 extensions: - mwf xrefs: !ruby/object:MIME::Types::Container person: - Masaaki_Hirai template: - application/vnd.MFER registered: true - !ruby/object:MIME::Type content-type: application/vnd.mfmp friendly: en: Melody Format for Mobile Platform encoding: base64 extensions: - mfm xrefs: !ruby/object:MIME::Types::Container person: - Yukari_Ikeda template: - application/vnd.mfmp registered: true - !ruby/object:MIME::Type content-type: application/vnd.micro+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Dali_Zheng template: - application/vnd.micro+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.micrografx.flo friendly: en: Micrografx encoding: base64 extensions: - flo xrefs: !ruby/object:MIME::Types::Container person: - Joe_Prevo template: - application/vnd.micrografx.flo registered: true - !ruby/object:MIME::Type content-type: application/vnd.micrografx.igx friendly: en: Micrografx iGrafx Professional encoding: base64 extensions: - igx xrefs: !ruby/object:MIME::Types::Container person: - Joe_Prevo template: - application/vnd.micrografx-igx registered: true - !ruby/object:MIME::Type content-type: application/vnd.microsoft.portable-executable encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - application/vnd.microsoft.portable-executable registered: true - !ruby/object:MIME::Type content-type: application/vnd.miele+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nils_Langhammer template: - application/vnd.miele+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.mif friendly: en: FrameMaker Interchange Format encoding: base64 extensions: - mif xrefs: !ruby/object:MIME::Types::Container person: - Mike_Wexler template: - application/vnd-mif registered: true - !ruby/object:MIME::Type content-type: application/vnd.minisoft-hp3000-save encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Chris_Bartram template: - application/vnd.minisoft-hp3000-save registered: true - !ruby/object:MIME::Type content-type: application/vnd.mitsubishi.misty-guard.trustweb encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Tanaka template: - application/vnd.mitsubishi.misty-guard.trustweb registered: true - !ruby/object:MIME::Type content-type: application/vnd.Mobius.DAF friendly: en: Mobius Management Systems - UniversalArchive encoding: base64 extensions: - daf xrefs: !ruby/object:MIME::Types::Container person: - Allen_K._Kabayama template: - application/vnd.Mobius.DAF registered: true - !ruby/object:MIME::Type content-type: application/vnd.Mobius.DIS friendly: en: Mobius Management Systems - Distribution Database encoding: base64 extensions: - dis xrefs: !ruby/object:MIME::Types::Container person: - Allen_K._Kabayama template: - application/vnd.Mobius.DIS registered: true - !ruby/object:MIME::Type content-type: application/vnd.Mobius.MBK friendly: en: Mobius Management Systems - Basket file encoding: base64 extensions: - mbk xrefs: !ruby/object:MIME::Types::Container person: - Alex_Devasia template: - application/vnd.Mobius.MBK registered: true - !ruby/object:MIME::Type content-type: application/vnd.Mobius.MQY friendly: en: Mobius Management Systems - Query File encoding: base64 extensions: - mqy xrefs: !ruby/object:MIME::Types::Container person: - Alex_Devasia template: - application/vnd.Mobius.MQY registered: true - !ruby/object:MIME::Type content-type: application/vnd.Mobius.MSL friendly: en: Mobius Management Systems - Script Language encoding: base64 extensions: - msl xrefs: !ruby/object:MIME::Types::Container person: - Allen_K._Kabayama template: - application/vnd.Mobius.MSL registered: true - !ruby/object:MIME::Type content-type: application/vnd.Mobius.PLC friendly: en: Mobius Management Systems - Policy Definition Language File encoding: base64 extensions: - plc xrefs: !ruby/object:MIME::Types::Container person: - Allen_K._Kabayama template: - application/vnd.Mobius.PLC registered: true - !ruby/object:MIME::Type content-type: application/vnd.Mobius.TXF friendly: en: Mobius Management Systems - Topic Index File encoding: base64 extensions: - txf xrefs: !ruby/object:MIME::Types::Container person: - Allen_K._Kabayama template: - application/vnd.Mobius.TXF registered: true - !ruby/object:MIME::Type content-type: application/vnd.mophun.application friendly: en: Mophun VM encoding: base64 extensions: - mpn xrefs: !ruby/object:MIME::Types::Container person: - Bjorn_Wennerstrom template: - application/vnd.mophun.application registered: true - !ruby/object:MIME::Type content-type: application/vnd.mophun.certificate friendly: en: Mophun Certificate encoding: base64 extensions: - mpc xrefs: !ruby/object:MIME::Types::Container person: - Bjorn_Wennerstrom template: - application/vnd.mophun.certificate registered: true - !ruby/object:MIME::Type content-type: application/vnd.motorola.flexsuite encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Patton template: - application/vnd.motorola.flexsuite registered: true - !ruby/object:MIME::Type content-type: application/vnd.motorola.flexsuite.adsi encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Patton template: - application/vnd.motorola.flexsuite.adsi registered: true - !ruby/object:MIME::Type content-type: application/vnd.motorola.flexsuite.fis encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Patton template: - application/vnd.motorola.flexsuite.fis registered: true - !ruby/object:MIME::Type content-type: application/vnd.motorola.flexsuite.gotap encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Patton template: - application/vnd.motorola.flexsuite.gotap registered: true - !ruby/object:MIME::Type content-type: application/vnd.motorola.flexsuite.kmr encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Patton template: - application/vnd.motorola.flexsuite.kmr registered: true - !ruby/object:MIME::Type content-type: application/vnd.motorola.flexsuite.ttc encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Patton template: - application/vnd.motorola.flexsuite.ttc registered: true - !ruby/object:MIME::Type content-type: application/vnd.motorola.flexsuite.wem encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Patton template: - application/vnd.motorola.flexsuite.wem registered: true - !ruby/object:MIME::Type content-type: application/vnd.motorola.iprm encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Rafie_Shamsaasef template: - application/vnd.motorola.iprm registered: true - !ruby/object:MIME::Type content-type: application/vnd.mozilla.xul+xml friendly: en: XUL - XML User Interface Language encoding: base64 extensions: - xul xrefs: !ruby/object:MIME::Types::Container person: - Braden_N_McDaniel template: - application/vnd.mozilla.xul+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-3mfdocument encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shawn_Maloney template: - application/vnd.ms-3mfdocument registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-artgalry friendly: en: Microsoft Artgalry encoding: base64 extensions: - cil xrefs: !ruby/object:MIME::Types::Container person: - Dean_Slawson template: - application/vnd.ms-artgalry registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-asf encoding: base64 extensions: - asf xrefs: !ruby/object:MIME::Types::Container person: - Eric_Fleischman template: - application/vnd.ms-asf registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-cab-compressed friendly: en: Microsoft Cabinet File encoding: base64 extensions: - cab xrefs: !ruby/object:MIME::Types::Container person: - Kim_Scarborough template: - application/vnd.ms-cab-compressed registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-excel friendly: en: Microsoft Excel encoding: base64 extensions: - xls - xlt - xla - xlc - xlm - xlw xrefs: !ruby/object:MIME::Types::Container person: - Sukvinder_S._Gill template: - application/vnd.ms-excel registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-excel.addin.macroEnabled.12 friendly: en: Microsoft Excel - Add-In File encoding: base64 extensions: - xlam xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-excel.addin.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-excel.sheet.binary.macroEnabled.12 friendly: en: Microsoft Excel - Binary Workbook encoding: base64 extensions: - xlsb xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-excel.sheet.binary.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-excel.sheet.macroEnabled.12 friendly: en: Microsoft Excel - Macro-Enabled Workbook encoding: base64 extensions: - xlsm xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-excel.sheet.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-excel.template.macroEnabled.12 friendly: en: Microsoft Excel - Macro-Enabled Template File encoding: base64 extensions: - xltm xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-excel.template.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-fontobject friendly: en: Microsoft Embedded OpenType encoding: base64 extensions: - eot xrefs: !ruby/object:MIME::Types::Container person: - Kim_Scarborough template: - application/vnd.ms-fontobject registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-htmlhelp friendly: en: Microsoft Html Help File encoding: base64 extensions: - chm xrefs: !ruby/object:MIME::Types::Container person: - Anatoly_Techtonik template: - application/vnd.ms-htmlhelp registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-ims friendly: en: Microsoft Class Server encoding: base64 extensions: - ims xrefs: !ruby/object:MIME::Types::Container person: - Eric_Ledoux template: - application/vnd.ms-ims registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-lrm friendly: en: Microsoft Learning Resource Module encoding: base64 extensions: - lrm xrefs: !ruby/object:MIME::Types::Container person: - Eric_Ledoux template: - application/vnd.ms-lrm registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-office.activeX+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-office.activeX+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-officetheme friendly: en: Microsoft Office System Release Theme encoding: base64 extensions: - thmx xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-officetheme registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-outlook encoding: base64 extensions: - msg registered: false - !ruby/object:MIME::Type content-type: application/vnd.ms-pki.seccat friendly: en: Microsoft Trust UI Provider - Security Catalog encoding: base64 extensions: - cat registered: false - !ruby/object:MIME::Type content-type: application/vnd.ms-pki.stl friendly: en: Microsoft Trust UI Provider - Certificate Trust Link encoding: base64 extensions: - stl registered: false - !ruby/object:MIME::Type content-type: application/vnd.ms-playready.initiator+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Daniel_Schneider template: - application/vnd.ms-playready.initiator+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-powerpoint friendly: en: Microsoft PowerPoint encoding: base64 extensions: - ppt - pps - pot xrefs: !ruby/object:MIME::Types::Container person: - Sukvinder_S._Gill template: - application/vnd.ms-powerpoint registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-powerpoint.addin.macroEnabled.12 friendly: en: Microsoft PowerPoint - Add-in file encoding: base64 extensions: - ppam xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-powerpoint.addin.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-powerpoint.presentation.macroEnabled.12 friendly: en: Microsoft PowerPoint - Macro-Enabled Presentation File encoding: base64 extensions: - pptm xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-powerpoint.presentation.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-powerpoint.slide.macroEnabled.12 friendly: en: Microsoft PowerPoint - Macro-Enabled Open XML Slide encoding: base64 extensions: - sldm xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-powerpoint.slide.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-powerpoint.slideshow.macroEnabled.12 friendly: en: Microsoft PowerPoint - Macro-Enabled Slide Show File encoding: base64 extensions: - ppsm xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-powerpoint.slideshow.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-powerpoint.template.macroEnabled.12 friendly: en: Micosoft PowerPoint - Macro-Enabled Template File encoding: base64 extensions: - potm xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-powerpoint.template.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-project friendly: en: Microsoft Project encoding: base64 extensions: - mpp - mpt xrefs: !ruby/object:MIME::Types::Container person: - Sukvinder_S._Gill template: - application/vnd.ms-project registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-tnef encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Sukvinder_S._Gill template: - application/vnd.ms-tnef registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-windows.devicepairing encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Justin_Hutchings template: - application/vnd.ms-windows.devicepairing registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-windows.printerpairing encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Justin_Hutchings template: - application/vnd.ms-windows.printerpairing registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-windows.wsd.oob encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Justin_Hutchings template: - application/vnd.ms-windows.wsd.oob registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-wmdrm.lic-chlg-req encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kevin_Lau template: - application/vnd.ms-wmdrm.lic-chlg-req registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-wmdrm.lic-resp encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kevin_Lau template: - application/vnd.ms-wmdrm.lic-resp registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-wmdrm.meter-chlg-req encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kevin_Lau template: - application/vnd.ms-wmdrm.meter-chlg-req registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-wmdrm.meter-resp encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kevin_Lau template: - application/vnd.ms-wmdrm.meter-resp registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-word.document.macroEnabled.12 friendly: en: Micosoft Word - Macro-Enabled Document encoding: base64 extensions: - docm xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-word.document.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-word.template.macroEnabled.12 friendly: en: Micosoft Word - Macro-Enabled Template encoding: base64 extensions: - dotm xrefs: !ruby/object:MIME::Types::Container person: - Chris_Rae template: - application/vnd.ms-word.template.macroEnabled.12 registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-works friendly: en: Microsoft Works encoding: base64 extensions: - wcm - wdb - wks - wps xrefs: !ruby/object:MIME::Types::Container person: - Sukvinder_S._Gill template: - application/vnd.ms-works registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-wpl friendly: en: Microsoft Windows Media Player Playlist encoding: base64 extensions: - wpl xrefs: !ruby/object:MIME::Types::Container person: - Dan_Plastina template: - application/vnd.ms-wpl registered: true - !ruby/object:MIME::Type content-type: application/vnd.ms-xpsdocument friendly: en: Microsoft XML Paper Specification encoding: 8bit extensions: - xps xrefs: !ruby/object:MIME::Types::Container person: - Jesse_McGatha template: - application/vnd.ms-xpsdocument registered: true - !ruby/object:MIME::Type content-type: application/vnd.msa-disk-image encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Huth template: - application/vnd.msa-disk-image registered: true - !ruby/object:MIME::Type content-type: application/vnd.mseq friendly: en: 3GPP MSEQ File encoding: base64 extensions: - mseq xrefs: !ruby/object:MIME::Types::Container person: - Gwenael_Le_Bodic template: - application/vnd.mseq registered: true - !ruby/object:MIME::Type content-type: application/vnd.msign encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Malte_Borcherding template: - application/vnd.msign registered: true - !ruby/object:MIME::Type content-type: application/vnd.multiad.creator encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Mills template: - application/vnd.multiad.creator registered: true - !ruby/object:MIME::Type content-type: application/vnd.multiad.creator.cif encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Mills template: - application/vnd.multiad.creator.cif registered: true - !ruby/object:MIME::Type content-type: application/vnd.music-niff encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Tim_Butler template: - application/vnd.music-niff registered: true - !ruby/object:MIME::Type content-type: application/vnd.musician friendly: en: MUsical Score Interpreted Code Invented for the ASCII designation of Notation encoding: base64 extensions: - mus xrefs: !ruby/object:MIME::Types::Container person: - Greg_Adams template: - application/vnd.musician registered: true - !ruby/object:MIME::Type content-type: application/vnd.muvee.style friendly: en: Muvee Automatic Video Editing encoding: base64 extensions: - msty xrefs: !ruby/object:MIME::Types::Container person: - Chandrashekhara_Anantharamu template: - application/vnd.muvee.style registered: true - !ruby/object:MIME::Type content-type: application/vnd.mynfc encoding: base64 extensions: - taglet xrefs: !ruby/object:MIME::Types::Container person: - Franck_Lefevre template: - application/vnd.mynfc registered: true - !ruby/object:MIME::Type content-type: application/vnd.ncd.control encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lauri_Tarkkala template: - application/vnd.ncd.control registered: true - !ruby/object:MIME::Type content-type: application/vnd.ncd.reference encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lauri_Tarkkala template: - application/vnd.ncd.reference registered: true - !ruby/object:MIME::Type content-type: application/vnd.nervana encoding: base64 extensions: - ent - entity - req - request - bkm - kcm xrefs: !ruby/object:MIME::Types::Container person: - Steve_Judkins template: - application/vnd.nervana registered: true - !ruby/object:MIME::Type content-type: application/vnd.netfpx encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Andy_Mutz template: - application/vnd.netfpx registered: true - !ruby/object:MIME::Type content-type: application/vnd.neurolanguage.nlu friendly: en: neuroLanguage encoding: base64 extensions: - nlu xrefs: !ruby/object:MIME::Types::Container person: - Dan_DuFeu template: - application/vnd.neurolanguage.nlu registered: true - !ruby/object:MIME::Type content-type: application/vnd.nintendo.nitro.rom encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - application/vnd.nintendo.nitro.rom registered: true - !ruby/object:MIME::Type content-type: application/vnd.nintendo.snes.rom encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - application/vnd.nintendo.snes.rom registered: true - !ruby/object:MIME::Type content-type: application/vnd.nitf encoding: base64 extensions: - nitf - ntf xrefs: !ruby/object:MIME::Types::Container person: - Steve_Rogan template: - application/vnd.nitf registered: true - !ruby/object:MIME::Type content-type: application/vnd.noblenet-directory friendly: en: NobleNet Directory encoding: base64 extensions: - nnd xrefs: !ruby/object:MIME::Types::Container person: - Monty_Solomon template: - application/vnd.noblenet-directory registered: true - !ruby/object:MIME::Type content-type: application/vnd.noblenet-sealer friendly: en: NobleNet Sealer encoding: base64 extensions: - nns xrefs: !ruby/object:MIME::Types::Container person: - Monty_Solomon template: - application/vnd.noblenet-sealer registered: true - !ruby/object:MIME::Type content-type: application/vnd.noblenet-web friendly: en: NobleNet Web encoding: base64 extensions: - nnw xrefs: !ruby/object:MIME::Types::Container person: - Monty_Solomon template: - application/vnd.noblenet-web registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.catalogs encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.catalogs registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.conml+wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.conml+wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.conml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.conml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.iptv.config+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.iptv.config+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.iSDS-radio-presets encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.iSDS-radio-presets registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.landmark+wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.landmark+wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.landmark+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.landmark+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.landmarkcollection+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.landmarkcollection+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.n-gage.ac+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.n-gage.ac+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.n-gage.data friendly: en: N-Gage Game Data encoding: base64 extensions: - ngdat xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.n-gage.data registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.n-gage.symbian.install friendly: en: N-Gage Game Installer encoding: base64 extensions: - n-gage obsolete: true xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.n-gage.symbian.install notes: - "- OBSOLETE; no replacement given" registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.ncd encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.ncd registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.ncd+xml encoding: base64 obsolete: true use-instead: application/vnd.nokia.ncd registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.pcd+wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.pcd+wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.pcd+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.pcd+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.radio-preset friendly: en: Nokia Radio Application - Preset encoding: base64 extensions: - rpst xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.radio-preset registered: true - !ruby/object:MIME::Type content-type: application/vnd.nokia.radio-presets friendly: en: Nokia Radio Application - Preset encoding: base64 extensions: - rpss xrefs: !ruby/object:MIME::Types::Container person: - Nokia template: - application/vnd.nokia.radio-presets registered: true - !ruby/object:MIME::Type content-type: application/vnd.novadigm.EDM friendly: en: Novadigm's RADIA and EDM products encoding: base64 extensions: - edm xrefs: !ruby/object:MIME::Types::Container person: - Janine_Swenson template: - application/vnd.novadigm.EDM registered: true - !ruby/object:MIME::Type content-type: application/vnd.novadigm.EDX friendly: en: Novadigm's RADIA and EDM products encoding: base64 extensions: - edx xrefs: !ruby/object:MIME::Types::Container person: - Janine_Swenson template: - application/vnd.novadigm.EDX registered: true - !ruby/object:MIME::Type content-type: application/vnd.novadigm.EXT friendly: en: Novadigm's RADIA and EDM products encoding: base64 extensions: - ext xrefs: !ruby/object:MIME::Types::Container person: - Janine_Swenson template: - application/vnd.novadigm.EXT registered: true - !ruby/object:MIME::Type content-type: application/vnd.ntt-local.content-share encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Akinori_Taya template: - application/vnd.ntt-local.content-share registered: true - !ruby/object:MIME::Type content-type: application/vnd.ntt-local.file-transfer encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - NTT-local template: - application/vnd.ntt-local.file-transfer registered: true - !ruby/object:MIME::Type content-type: application/vnd.ntt-local.ogw_remote-access encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - NTT-local template: - application/vnd.ntt-local.ogw_remote-access registered: true - !ruby/object:MIME::Type content-type: application/vnd.ntt-local.sip-ta_remote encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - NTT-local template: - application/vnd.ntt-local.sip-ta_remote registered: true - !ruby/object:MIME::Type content-type: application/vnd.ntt-local.sip-ta_tcp_stream encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - NTT-local template: - application/vnd.ntt-local.sip-ta_tcp_stream registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.chart friendly: en: OpenDocument Chart encoding: base64 extensions: - odc xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.chart registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.chart-template friendly: en: OpenDocument Chart Template encoding: base64 extensions: - odc - otc xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.chart-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.database friendly: en: OpenDocument Database encoding: base64 extensions: - odb xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.database registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.formula friendly: en: OpenDocument Formula encoding: base64 extensions: - odf xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.formula registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.formula-template friendly: en: OpenDocument Formula Template encoding: base64 extensions: - odf - odft xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.formula-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.graphics friendly: en: OpenDocument Graphics encoding: base64 extensions: - odg xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.graphics registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.graphics-template friendly: en: OpenDocument Graphics Template encoding: base64 extensions: - otg xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.graphics-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.image friendly: en: OpenDocument Image encoding: base64 extensions: - odi xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.image registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.image-template friendly: en: OpenDocument Image Template encoding: base64 extensions: - odi - oti xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.image-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.presentation friendly: en: OpenDocument Presentation encoding: base64 extensions: - odp xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.presentation registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.presentation-template friendly: en: OpenDocument Presentation Template encoding: base64 extensions: - otp xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.presentation-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.spreadsheet friendly: en: OpenDocument Spreadsheet encoding: base64 extensions: - ods xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.spreadsheet registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.spreadsheet-template friendly: en: OpenDocument Spreadsheet Template encoding: base64 extensions: - ots xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.spreadsheet-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.text friendly: en: OpenDocument Text encoding: base64 extensions: - odt xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.text registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.text-master friendly: en: OpenDocument Text Master encoding: base64 extensions: - odm xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.text-master registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.text-template friendly: en: OpenDocument Text Template encoding: base64 extensions: - ott xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.text-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.oasis.opendocument.text-web friendly: en: Open Document Text Web encoding: base64 extensions: - oth xrefs: !ruby/object:MIME::Types::Container person: - Svante_Schubert - OASIS template: - application/vnd.oasis.opendocument.text-web registered: true - !ruby/object:MIME::Type content-type: application/vnd.obn encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Matthias_Hessling template: - application/vnd.obn registered: true - !ruby/object:MIME::Type content-type: application/vnd.oftn.l10n+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Eli_Grey template: - application/vnd.oftn.l10n+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.contentaccessdownload+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.contentaccessdownload+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.contentaccessstreaming+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.contentaccessstreaming+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.cspg-hexbinary encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.cspg-hexbinary registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.dae.svg+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.dae.svg+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.dae.xhtml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.dae.xhtml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.mippvcontrolmessage+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.mippvcontrolmessage+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.pae.gem encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.pae.gem registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.spdiscovery+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.spdiscovery+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.spdlist+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.spdlist+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.ueprofile+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.ueprofile+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oipf.userprofile+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Claire_DEsclercs template: - application/vnd.oipf.userprofile+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.olpc-sugar friendly: en: Sugar Linux Application Bundle encoding: base64 extensions: - xo xrefs: !ruby/object:MIME::Types::Container person: - John_Palmieri template: - application/vnd.olpc-sugar registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma-scws-config encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ilan_Mahalal template: - application/vnd.oma-scws-config registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma-scws-http-request encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ilan_Mahalal template: - application/vnd.oma-scws-http-request registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma-scws-http-response encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ilan_Mahalal template: - application/vnd.oma-scws-http-response registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.associated-procedure-parameter+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.associated-procedure-parameter+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.drm-trigger+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.drm-trigger+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.imd+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.imd+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.ltkm encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.ltkm registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.notification+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.notification+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.provisioningtrigger encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.provisioningtrigger registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.sgboot encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.sgboot registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.sgdd+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.sgdd+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.sgdu encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.sgdu registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.simple-symbol-container encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.simple-symbol-container registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.smartcard-trigger+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.smartcard-trigger+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.sprov+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.sprov+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.bcast.stkm encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.bcast.stkm registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.cab-address-book+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Hao_Wang - OMA template: - application/vnd.oma.cab-address-book+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.cab-feature-handler+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Hao_Wang - OMA template: - application/vnd.oma.cab-feature-handler+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.cab-pcc+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Hao_Wang - OMA template: - application/vnd.oma.cab-pcc+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.cab-subs-invite+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Hao_Wang - OMA template: - application/vnd.oma.cab-subs-invite+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.cab-user-prefs+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Hao_Wang - OMA template: - application/vnd.oma.cab-user-prefs+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.dcd encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Avi_Primo - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.dcd registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.dcdc encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Avi_Primo - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.dcdc registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.dd2+xml friendly: en: OMA Download Agents encoding: base64 extensions: - dd2 xrefs: !ruby/object:MIME::Types::Container person: - Jun_Sato - Open_Mobile_Alliance_BAC_DLDRM_Working_Group template: - application/vnd.oma.dd2+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.drm.risd+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Uwe_Rauschenbach - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.drm.risd+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.group-usage-list+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Sean_Kelley - OMA_Presence_and_Availability_PAG_Working_Group template: - application/vnd.oma.group-usage-list+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.pal+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Brian_McColgan - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.pal+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.poc.detailed-progress-report+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA_Push_to_Talk_over_Cellular_POC_Working_Group template: - application/vnd.oma.poc.detailed-progress-report+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.poc.final-report+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA_Push_to_Talk_over_Cellular_POC_Working_Group template: - application/vnd.oma.poc.final-report+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.poc.groups+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Sean_Kelley - OMA_Push_to_Talk_over_Cellular_POC_Working_Group template: - application/vnd.oma.poc.groups+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.poc.invocation-descriptor+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA_Push_to_Talk_over_Cellular_POC_Working_Group template: - application/vnd.oma.poc.invocation-descriptor+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.poc.optimized-progress-report+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA_Push_to_Talk_over_Cellular_POC_Working_Group template: - application/vnd.oma.poc.optimized-progress-report+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.push encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bryan_Sullivan - OMA template: - application/vnd.oma.push registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.scidm.messages+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Wenjun_Zeng - OMNA-Open_Mobile_Naming_Authority template: - application/vnd.oma.scidm.messages+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oma.xcap-directory+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Sean_Kelley - OMA_Presence_and_Availability_PAG_Working_Group template: - application/vnd.oma.xcap-directory+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.omads-email+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA_Data_Synchronization_Working_Group template: - application/vnd.omads-email+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.omads-file+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA_Data_Synchronization_Working_Group template: - application/vnd.omads-file+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.omads-folder+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA_Data_Synchronization_Working_Group template: - application/vnd.omads-folder+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.omaloc-supl-init encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Julien_Grange template: - application/vnd.omaloc-supl-init registered: true - !ruby/object:MIME::Type content-type: application/vnd.openblox.game+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Otaris template: - application/vnd.openblox.game+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openblox.game-binary encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Otaris template: - application/vnd.openblox.game-binary registered: true - !ruby/object:MIME::Type content-type: application/vnd.openeye.oeb encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Craig_Bruce template: - application/vnd.openeye.oeb registered: true - !ruby/object:MIME::Type content-type: application/vnd.openofficeorg.extension friendly: en: Open Office Extension encoding: base64 extensions: - oxt registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.custom-properties+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.custom-properties+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.customXmlProperties+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.customXmlProperties+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.drawing+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.drawing+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.drawingml.chart+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.drawingml.chart+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.drawingml.diagramColors+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.drawingml.diagramData+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.drawingml.diagramLayout+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.drawingml.diagramStyle+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.extended-properties+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.extended-properties+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.commentAuthors+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.comments+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.comments+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.handoutMaster+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.notesMaster+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.notesSlide+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.presentation friendly: en: Microsoft Office - OOXML - Presentation encoding: base64 extensions: - pptx xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.presentation registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.presProps+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.presProps+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.slide friendly: en: Microsoft Office - OOXML - Presentation (Slide) encoding: base64 extensions: - sldx xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.slide registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.slide+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.slide+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.slideMaster+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.slideshow friendly: en: Microsoft Office - OOXML - Presentation (Slideshow) encoding: base64 extensions: - ppsx xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.slideshow registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.slideUpdateInfo+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.tableStyles+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.tags+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.tags+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.template friendly: en: Microsoft Office - OOXML - Presentation Template encoding: base64 extensions: - potx xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.template.main+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.template.main+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.presentationml.viewProps+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.calcChain+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.externalLink+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheDefinition+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.pivotCacheRecords+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.pivotTable+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.queryTable+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.revisionHeaders+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.revisionLog+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet friendly: en: Microsoft Office - OOXML - Spreadsheet encoding: base64 extensions: - xlsx xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.sheetMetadata+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.tableSingleCells+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.template friendly: en: Microsoft Office - OOXML - Spreadsheet Teplate encoding: base64 extensions: - xltx xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.userNames+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.volatileDependencies+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.theme+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.theme+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.themeOverride+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.themeOverride+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.vmlDrawing encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.vmlDrawing registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document friendly: en: Microsoft Office - OOXML - Word Document encoding: base64 extensions: - docx xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.document registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.fontTable+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.template friendly: en: Microsoft Office - OOXML - Word Document Template encoding: base64 extensions: - dotx xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml-template registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-officedocument.wordprocessingml.webSettings+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-package.core-properties+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-package.core-properties+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.openxmlformats-package.relationships+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Makoto_Murata template: - application/vnd.openxmlformats-package.relationships+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oracle.resource+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Ning_Dong template: - application/vnd.oracle.resource+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.orange.indata encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - CHATRAS_Bruno template: - application/vnd.orange.indata registered: true - !ruby/object:MIME::Type content-type: application/vnd.osa.netdeploy encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steven_Klos template: - application/vnd.osa.netdeploy registered: true - !ruby/object:MIME::Type content-type: application/vnd.osgeo.mapguide.package friendly: en: MapGuide DBXML encoding: base64 extensions: - mgp xrefs: !ruby/object:MIME::Types::Container person: - Jason_Birch template: - application/vnd.osgeo.mapguide.package registered: true - !ruby/object:MIME::Type content-type: application/vnd.osgi.bundle encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Kriens template: - application/vnd.osgi.bundle registered: true - !ruby/object:MIME::Type content-type: application/vnd.osgi.dp friendly: en: OSGi Deployment Package encoding: base64 extensions: - dp xrefs: !ruby/object:MIME::Types::Container person: - Peter_Kriens template: - application/vnd.osgi.dp registered: true - !ruby/object:MIME::Type content-type: application/vnd.osgi.subsystem encoding: base64 extensions: - esa xrefs: !ruby/object:MIME::Types::Container person: - Peter_Kriens template: - application/vnd.osgi.subsystem registered: true - !ruby/object:MIME::Type content-type: application/vnd.otps.ct-kip+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Magnus_Nystrom template: - application/vnd.otps.ct-kip+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.oxli.countgraph encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - C._Titus_Brown template: - application/vnd.oxli.countgraph registered: true - !ruby/object:MIME::Type content-type: application/vnd.pagerduty+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Steve_Rice template: - application/vnd.pagerduty+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.palm friendly: en: PalmOS Data encoding: base64 extensions: - prc - pdb - pqa - oprc xrefs: !ruby/object:MIME::Types::Container person: - Gavin_Peacock template: - application/vnd.palm registered: true - !ruby/object:MIME::Type content-type: application/vnd.panoply encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Natarajan_Balasundara template: - application/vnd.panoply registered: true - !ruby/object:MIME::Type content-type: application/vnd.paos.xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - John_Kemp template: - application/vnd.paos+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.pawaafile friendly: en: PawaaFILE encoding: base64 extensions: - paw xrefs: !ruby/object:MIME::Types::Container person: - Prakash_Baskaran template: - application/vnd.pawaafile registered: true - !ruby/object:MIME::Type content-type: application/vnd.pcos encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Slawomir_Lisznianski template: - application/vnd.pcos registered: true - !ruby/object:MIME::Type content-type: application/vnd.pg.format friendly: en: Proprietary P&G Standard Reporting System encoding: base64 extensions: - str xrefs: !ruby/object:MIME::Types::Container person: - April_Gandert template: - application/vnd.pg.format registered: true - !ruby/object:MIME::Type content-type: application/vnd.pg.osasli friendly: en: Proprietary P&G Standard Reporting System encoding: base64 extensions: - ei6 xrefs: !ruby/object:MIME::Types::Container person: - April_Gandert template: - application/vnd.pg.osasli registered: true - !ruby/object:MIME::Type content-type: application/vnd.piaccess.application-licence encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lucas_Maneos template: - application/vnd.piaccess.application-licence registered: true - !ruby/object:MIME::Type content-type: application/vnd.picsel friendly: en: Pcsel eFIF File encoding: base64 extensions: - efif xrefs: !ruby/object:MIME::Types::Container person: - Giuseppe_Naccarato template: - application/vnd.picsel registered: true - !ruby/object:MIME::Type content-type: application/vnd.pmi.widget friendly: en: Qualcomm's Plaza Mobile Internet encoding: base64 extensions: - wg xrefs: !ruby/object:MIME::Types::Container person: - Rhys_Lewis template: - application/vnd.pmi.widget registered: true - !ruby/object:MIME::Type content-type: application/vnd.poc.group-advertisement+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Sean_Kelley - OMA_Push_to_Talk_over_Cellular_POC_Working_Group template: - application/vnd.poc.group-advertisement+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.pocketlearn friendly: en: PocketLearn Viewers encoding: base64 extensions: - plf xrefs: !ruby/object:MIME::Types::Container person: - Jorge_Pando template: - application/vnd.pocketlearn registered: true - !ruby/object:MIME::Type content-type: application/vnd.powerbuilder6 friendly: en: PowerBuilder encoding: base64 extensions: - pbd xrefs: !ruby/object:MIME::Types::Container person: - David_Guy template: - application/vnd.powerbuilder6 registered: true - !ruby/object:MIME::Type content-type: application/vnd.powerbuilder6-s encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Guy template: - application/vnd.powerbuilder6-s registered: true - !ruby/object:MIME::Type content-type: application/vnd.powerbuilder7 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reed_Shilts template: - application/vnd.powerbuilder7 registered: true - !ruby/object:MIME::Type content-type: application/vnd.powerbuilder7-s encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reed_Shilts template: - application/vnd.powerbuilder7-s registered: true - !ruby/object:MIME::Type content-type: application/vnd.powerbuilder75 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reed_Shilts template: - application/vnd.powerbuilder75 registered: true - !ruby/object:MIME::Type content-type: application/vnd.powerbuilder75-s encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reed_Shilts template: - application/vnd.powerbuilder75-s registered: true - !ruby/object:MIME::Type content-type: application/vnd.preminet encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Juoko_Tenhunen template: - application/vnd.preminet registered: true - !ruby/object:MIME::Type content-type: application/vnd.previewsystems.box friendly: en: Preview Systems ZipLock/VBox encoding: base64 extensions: - box xrefs: !ruby/object:MIME::Types::Container person: - Roman_Smolgovsky template: - application/vnd.previewsystems.box registered: true - !ruby/object:MIME::Type content-type: application/vnd.proteus.magazine friendly: en: EFI Proteus encoding: base64 extensions: - mgz xrefs: !ruby/object:MIME::Types::Container person: - Pete_Hoch template: - application/vnd.proteus.magazine registered: true - !ruby/object:MIME::Type content-type: application/vnd.publishare-delta-tree friendly: en: PubliShare Objects encoding: base64 extensions: - qps xrefs: !ruby/object:MIME::Types::Container person: - Oren_Ben-Kiki template: - application/vnd.publishare-delta-tree registered: true - !ruby/object:MIME::Type content-type: application/vnd.pvi.ptid1 friendly: en: Princeton Video Image encoding: base64 extensions: - pti - ptid xrefs: !ruby/object:MIME::Types::Container person: - Charles_P._Lamb template: - application/vnd.pvi.ptid1 registered: true - !ruby/object:MIME::Type content-type: application/vnd.pwg-multiplexed encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3391 template: - application/vnd.pwg-multiplexed registered: true - !ruby/object:MIME::Type content-type: application/vnd.pwg-xhtml-print+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Don_Wright template: - application/vnd.pwg-xhtml-print+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.qualcomm.brew-app-res encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Glenn_Forrester template: - application/vnd.qualcomm.brew-app-res registered: true - !ruby/object:MIME::Type content-type: application/vnd.Quark.QuarkXPress friendly: en: QuarkXPress encoding: 8bit extensions: - qxd - qxt - qwd - qwt - qxl - qxb xrefs: !ruby/object:MIME::Types::Container person: - Hannes_Scheidler template: - application/vnd.Quark.QuarkXPress registered: true - !ruby/object:MIME::Type content-type: application/vnd.quobject-quoxdocument encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Matthias_Ludwig template: - application/vnd.quobject-quoxdocument registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.moml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.moml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-audit+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-audit+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-audit-conf+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-audit-conf+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-audit-conn+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-audit-conn+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-audit-dialog+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-audit-dialog+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-audit-stream+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-audit-stream+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-conf+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-conf+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-dialog+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-dialog+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-dialog-base+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-dialog-base+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-dialog-fax-detect+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-dialog-fax-detect+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-dialog-fax-sendrecv+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-dialog-fax-sendrecv+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-dialog-group+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-dialog-group+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-dialog-speech+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-dialog-speech+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.radisys.msml-dialog-transform+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - application/vnd.radisys.msml-dialog-transform+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.rainstor.data encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kevin_Crook template: - application/vnd.rainstor.data registered: true - !ruby/object:MIME::Type content-type: application/vnd.rapid encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Etay_Szekely template: - application/vnd.rapid registered: true - !ruby/object:MIME::Type content-type: application/vnd.realvnc.bed friendly: en: RealVNC encoding: base64 extensions: - bed xrefs: !ruby/object:MIME::Types::Container person: - Nick_Reeves template: - application/vnd.realvnc.bed registered: true - !ruby/object:MIME::Type content-type: application/vnd.recordare.musicxml friendly: en: Recordare Applications encoding: base64 extensions: - mxl xrefs: !ruby/object:MIME::Types::Container person: - Michael_Good template: - application/vnd.recordare.musicxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.recordare.musicxml+xml friendly: en: Recordare Applications encoding: base64 extensions: - musicxml xrefs: !ruby/object:MIME::Types::Container person: - Michael_Good template: - application/vnd.recordare.musicxml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.RenLearn.rlprint encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - James_Wick template: - application/vnd.renlearn.rlprint registered: true - !ruby/object:MIME::Type content-type: application/vnd.rig.cryptonote friendly: en: CryptoNote encoding: base64 extensions: - cryptonote xrefs: !ruby/object:MIME::Types::Container person: - Ken_Jibiki template: - application/vnd.rig.cryptonote registered: true - !ruby/object:MIME::Type content-type: application/vnd.rim.cod friendly: en: Blackberry COD File encoding: base64 extensions: - cod registered: false - !ruby/object:MIME::Type content-type: application/vnd.rn-realmedia friendly: en: RealMedia encoding: base64 extensions: - rm registered: false - !ruby/object:MIME::Type content-type: application/vnd.rn-realmedia-vbr encoding: base64 extensions: - rmvb registered: false - !ruby/object:MIME::Type content-type: application/vnd.route66.link66+xml friendly: en: ROUTE 66 Location Based Services encoding: base64 extensions: - link66 xrefs: !ruby/object:MIME::Types::Container person: - Sybren_Kikstra template: - application/vnd.route66.link66+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.rs-274x encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lee_Harding template: - application/vnd.rs-274x registered: true - !ruby/object:MIME::Type content-type: application/vnd.ruckus.download encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jerry_Harris template: - application/vnd.ruckus.download registered: true - !ruby/object:MIME::Type content-type: application/vnd.s3sms encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lauri_Tarkkala template: - application/vnd.s3sms registered: true - !ruby/object:MIME::Type content-type: application/vnd.sailingtracker.track friendly: en: SailingTracker encoding: base64 extensions: - st xrefs: !ruby/object:MIME::Types::Container person: - Heikki_Vesalainen template: - application/vnd.sailingtracker.track registered: true - !ruby/object:MIME::Type content-type: application/vnd.sbm.cid encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Shinji_Kusakari template: - application/vnd.sbm.cid registered: true - !ruby/object:MIME::Type content-type: application/vnd.sbm.mid2 encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Masanori_Murai template: - application/vnd.sbm.mid2 registered: true - !ruby/object:MIME::Type content-type: application/vnd.scribus encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Craig_Bradney template: - application/vnd.scribus registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.3df encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - John_Kwan template: - application/vnd.sealed.3df registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.csf encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - John_Kwan template: - application/vnd.sealed.csf registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.doc encoding: base64 extensions: - sdoc - sdo - s1w xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - application/vnd.sealed-doc registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.eml encoding: base64 extensions: - seml - sem xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - application/vnd.sealed-eml registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.mht encoding: base64 extensions: - smht - smh xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - application/vnd.sealed-mht registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.net encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Martin_Lambert template: - application/vnd.sealed.net registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.ppt encoding: base64 extensions: - sppt - spp - s1p xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - application/vnd.sealed-ppt registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.tiff encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - John_Kwan - Martin_Lambert template: - application/vnd.sealed-tiff registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealed.xls encoding: base64 extensions: - sxls - sxl - s1e xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - application/vnd.sealed-xls registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealedmedia.softseal.html encoding: base64 extensions: - stml - stm - s1h xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - application/vnd.sealedmedia.softseal-html registered: true - !ruby/object:MIME::Type content-type: application/vnd.sealedmedia.softseal.pdf encoding: base64 extensions: - spdf - spd - s1a xrefs: !ruby/object:MIME::Types::Container person: - David_Petersen template: - application/vnd.sealedmedia.softseal-pdf registered: true - !ruby/object:MIME::Type content-type: application/vnd.seemail friendly: en: SeeMail encoding: base64 extensions: - see xrefs: !ruby/object:MIME::Types::Container person: - Steve_Webb template: - application/vnd.seemail registered: true - !ruby/object:MIME::Type content-type: application/vnd.sema friendly: en: Secured eMail encoding: base64 extensions: - sema xrefs: !ruby/object:MIME::Types::Container person: - Anders_Hansson template: - application/vnd-sema registered: true - !ruby/object:MIME::Type content-type: application/vnd.semd friendly: en: Secured eMail encoding: base64 extensions: - semd xrefs: !ruby/object:MIME::Types::Container person: - Anders_Hansson template: - application/vnd.semd registered: true - !ruby/object:MIME::Type content-type: application/vnd.semf friendly: en: Secured eMail encoding: base64 extensions: - semf xrefs: !ruby/object:MIME::Types::Container person: - Anders_Hansson template: - application/vnd.semf registered: true - !ruby/object:MIME::Type content-type: application/vnd.shana.informed.formdata friendly: en: Shana Informed Filler encoding: base64 extensions: - ifm xrefs: !ruby/object:MIME::Types::Container person: - Guy_Selzler template: - application/vnd.shana.informed.formdata registered: true - !ruby/object:MIME::Type content-type: application/vnd.shana.informed.formtemplate friendly: en: Shana Informed Filler encoding: base64 extensions: - itp xrefs: !ruby/object:MIME::Types::Container person: - Guy_Selzler template: - application/vnd.shana.informed.formtemplate registered: true - !ruby/object:MIME::Type content-type: application/vnd.shana.informed.interchange friendly: en: Shana Informed Filler encoding: base64 extensions: - iif xrefs: !ruby/object:MIME::Types::Container person: - Guy_Selzler template: - application/vnd.shana.informed.interchange registered: true - !ruby/object:MIME::Type content-type: application/vnd.shana.informed.package friendly: en: Shana Informed Filler encoding: base64 extensions: - ipk xrefs: !ruby/object:MIME::Types::Container person: - Guy_Selzler template: - application/vnd.shana.informed.package registered: true - !ruby/object:MIME::Type content-type: application/vnd.SimTech-MindMapper friendly: en: SimTech MindMapper encoding: base64 extensions: - twd - twds xrefs: !ruby/object:MIME::Types::Container person: - Patrick_Koh template: - application/vnd.SimTech-MindMapper registered: true - !ruby/object:MIME::Type content-type: application/vnd.siren+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Kevin_Swiber template: - application/vnd.siren+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.smaf friendly: en: SMAF File encoding: base64 extensions: - mmf xrefs: !ruby/object:MIME::Types::Container person: - Hiroaki_Takahashi template: - application/vnd.smaf registered: true - !ruby/object:MIME::Type content-type: application/vnd.smart.notebook encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jonathan_Neitz template: - application/vnd.smart.notebook registered: true - !ruby/object:MIME::Type content-type: application/vnd.smart.teacher friendly: en: SMART Technologies Apps encoding: base64 extensions: - teacher xrefs: !ruby/object:MIME::Types::Container person: - Michael_Boyle template: - application/vnd.smart.teacher registered: true - !ruby/object:MIME::Type content-type: application/vnd.software602.filler.form+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jakub_Hytka - Martin_Vondrous template: - application/vnd.software602.filler.form+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.software602.filler.form-xml-zip encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jakub_Hytka - Martin_Vondrous template: - application/vnd.software602.filler.form-xml-zip registered: true - !ruby/object:MIME::Type content-type: application/vnd.solent.sdkm+xml friendly: en: SudokuMagic encoding: base64 extensions: - sdkd - sdkm xrefs: !ruby/object:MIME::Types::Container person: - Cliff_Gauntlett template: - application/vnd.solent.sdkm+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.spotfire.dxp friendly: en: TIBCO Spotfire encoding: base64 extensions: - dxp xrefs: !ruby/object:MIME::Types::Container person: - Stefan_Jernberg template: - application/vnd.spotfire.dxp registered: true - !ruby/object:MIME::Type content-type: application/vnd.spotfire.sfs friendly: en: TIBCO Spotfire encoding: base64 extensions: - sfs xrefs: !ruby/object:MIME::Types::Container person: - Stefan_Jernberg template: - application/vnd.spotfire.sfs registered: true - !ruby/object:MIME::Type content-type: application/vnd.sss-cod encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Asang_Dani template: - application/vnd.sss-cod registered: true - !ruby/object:MIME::Type content-type: application/vnd.sss-dtf encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Eric_Bruno template: - application/vnd.sss-dtf registered: true - !ruby/object:MIME::Type content-type: application/vnd.sss-ntf encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Eric_Bruno template: - application/vnd.sss-ntf registered: true - !ruby/object:MIME::Type content-type: application/vnd.stardivision.calc friendly: en: StarOffice - Calc encoding: base64 extensions: - sdc registered: false - !ruby/object:MIME::Type content-type: application/vnd.stardivision.chart encoding: base64 extensions: - sds registered: false - !ruby/object:MIME::Type content-type: application/vnd.stardivision.draw friendly: en: StarOffice - Draw encoding: base64 extensions: - sda registered: false - !ruby/object:MIME::Type content-type: application/vnd.stardivision.impress friendly: en: StarOffice - Impress encoding: base64 extensions: - sdd registered: false - !ruby/object:MIME::Type content-type: application/vnd.stardivision.math friendly: en: StarOffice - Math encoding: base64 extensions: - sdf - smf registered: false - !ruby/object:MIME::Type content-type: application/vnd.stardivision.writer friendly: en: StarOffice - Writer encoding: base64 extensions: - sdw - vor registered: false - !ruby/object:MIME::Type content-type: application/vnd.stardivision.writer-global friendly: en: StarOffice - Writer (Global) encoding: base64 extensions: - sgl registered: false - !ruby/object:MIME::Type content-type: application/vnd.stepmania.package encoding: base64 extensions: - smzip xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - application/vnd.stepmania.package registered: true - !ruby/object:MIME::Type content-type: application/vnd.stepmania.stepchart friendly: en: StepMania encoding: base64 extensions: - sm xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - application/vnd.stepmania.stepchart registered: true - !ruby/object:MIME::Type content-type: application/vnd.street-stream encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Glenn_Levitt template: - application/vnd.street-stream registered: true - !ruby/object:MIME::Type content-type: application/vnd.sun.wadl+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Marc_Hadley template: - application/vnd.sun.wadl+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.calc friendly: en: OpenOffice - Calc (Spreadsheet) encoding: base64 extensions: - sxc registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.calc.template friendly: en: OpenOffice - Calc Template (Spreadsheet) encoding: base64 extensions: - stc registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.draw friendly: en: OpenOffice - Draw (Graphics) encoding: base64 extensions: - sxd registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.draw.template friendly: en: OpenOffice - Draw Template (Graphics) encoding: base64 extensions: - std registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.impress friendly: en: OpenOffice - Impress (Presentation) encoding: base64 extensions: - sxi registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.impress.template friendly: en: OpenOffice - Impress Template (Presentation) encoding: base64 extensions: - sti registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.math friendly: en: OpenOffice - Math (Formula) encoding: base64 extensions: - sxm registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.writer friendly: en: OpenOffice - Writer (Text - HTML) encoding: base64 extensions: - sxw registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.writer.global friendly: en: OpenOffice - Writer (Text - HTML) encoding: base64 extensions: - sxg registered: false - !ruby/object:MIME::Type content-type: application/vnd.sun.xml.writer.template friendly: en: OpenOffice - Writer Template (Text - HTML) encoding: base64 extensions: - stw registered: false - !ruby/object:MIME::Type content-type: application/vnd.sus-calendar friendly: en: ScheduleUs encoding: base64 extensions: - sus - susp xrefs: !ruby/object:MIME::Types::Container person: - Jonathan_Niedfeldt template: - application/vnd.sus-calendar registered: true - !ruby/object:MIME::Type content-type: application/vnd.svd friendly: en: SourceView Document encoding: base64 extensions: - svd xrefs: !ruby/object:MIME::Types::Container person: - Scott_Becker template: - application/vnd.svd registered: true - !ruby/object:MIME::Type content-type: application/vnd.swiftview-ics encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Glenn_Widener template: - application/vnd.swiftview-ics registered: true - !ruby/object:MIME::Type content-type: application/vnd.symbian.install friendly: en: Symbian Install Package encoding: base64 extensions: - sis - sisx registered: false - !ruby/object:MIME::Type content-type: application/vnd.syncml+xml friendly: en: SyncML encoding: base64 extensions: - xsm xrefs: !ruby/object:MIME::Types::Container person: - OMA_Data_Synchronization_Working_Group template: - application/vnd.syncml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.syncml.dm+wbxml friendly: en: SyncML - Device Management encoding: base64 extensions: - bdm xrefs: !ruby/object:MIME::Types::Container person: - OMA-DM_Work_Group template: - application/vnd.syncml.dm+wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.syncml.dm+xml friendly: en: SyncML - Device Management encoding: base64 extensions: - xdm xrefs: !ruby/object:MIME::Types::Container person: - Bindu_Rama_Rao - OMA-DM_Work_Group template: - application/vnd.syncml.dm+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.syncml.dm.notification encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Peter_Thompson - OMA-DM_Work_Group template: - application/vnd.syncml.dm.notification registered: true - !ruby/object:MIME::Type content-type: application/vnd.syncml.dmddf+wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA-DM_Work_Group template: - application/vnd.syncml.dmddf+wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.syncml.dmddf+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA-DM_Work_Group template: - application/vnd.syncml.dmddf+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.syncml.dmtnds+wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA-DM_Work_Group template: - application/vnd.syncml.dmtnds+wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.syncml.dmtnds+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA-DM_Work_Group template: - application/vnd.syncml.dmtnds+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.syncml.ds.notification encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - OMA_Data_Synchronization_Working_Group template: - application/vnd.syncml.ds.notification registered: true - !ruby/object:MIME::Type content-type: application/vnd.tao.intent-module-archive friendly: en: Tao Intent encoding: base64 extensions: - tao xrefs: !ruby/object:MIME::Types::Container person: - Daniel_Shelton template: - application/vnd.tao.intent-module-archive registered: true - !ruby/object:MIME::Type content-type: application/vnd.tcpdump.pcap encoding: base64 extensions: - cap - dmp - pcap xrefs: !ruby/object:MIME::Types::Container person: - Guy_Harris - Glen_Turner template: - application/vnd.tcpdump.pcap registered: true - !ruby/object:MIME::Type content-type: application/vnd.tmd.mediaflex.api+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Alex_Sibilev template: - application/vnd.tmd.mediaflex.api+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.tmobile-livetv friendly: en: MobileTV encoding: base64 extensions: - tmo xrefs: !ruby/object:MIME::Types::Container person: - Nicolas_Helin template: - application/vnd.tmobile-livetv registered: true - !ruby/object:MIME::Type content-type: application/vnd.trid.tpt friendly: en: TRI Systems Config encoding: base64 extensions: - tpt xrefs: !ruby/object:MIME::Types::Container person: - Frank_Cusack template: - application/vnd.trid.tpt registered: true - !ruby/object:MIME::Type content-type: application/vnd.triscape.mxs friendly: en: Triscape Map Explorer encoding: base64 extensions: - mxs xrefs: !ruby/object:MIME::Types::Container person: - Steven_Simonoff template: - application/vnd.triscape.mxs registered: true - !ruby/object:MIME::Type content-type: application/vnd.trueapp friendly: en: True BASIC encoding: base64 extensions: - tra xrefs: !ruby/object:MIME::Types::Container person: - J._Scott_Hepler template: - application/vnd.trueapp registered: true - !ruby/object:MIME::Type content-type: application/vnd.truedoc encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Brad_Chase template: - application/vnd.truedoc registered: true - !ruby/object:MIME::Type content-type: application/vnd.ubisoft.webplayer encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Martin_Talbot template: - application/vnd.ubisoft.webplayer registered: true - !ruby/object:MIME::Type content-type: application/vnd.ufdl friendly: en: Universal Forms Description Language encoding: base64 extensions: - ufd - ufdl xrefs: !ruby/object:MIME::Types::Container person: - Dave_Manning template: - application/vnd.ufdl registered: true - !ruby/object:MIME::Type content-type: application/vnd.uiq.theme friendly: en: User Interface Quartz - Theme (Symbian) encoding: base64 extensions: - utz xrefs: !ruby/object:MIME::Types::Container person: - Tim_Ocock template: - application/vnd.uiq.theme registered: true - !ruby/object:MIME::Type content-type: application/vnd.umajin friendly: en: UMAJIN encoding: base64 extensions: - umj xrefs: !ruby/object:MIME::Types::Container person: - Jamie_Riden template: - application/vnd.umajin registered: true - !ruby/object:MIME::Type content-type: application/vnd.unity friendly: en: Unity 3d encoding: base64 extensions: - unityweb xrefs: !ruby/object:MIME::Types::Container person: - Unity3d template: - application/vnd.unity registered: true - !ruby/object:MIME::Type content-type: application/vnd.uoml+xml friendly: en: Unique Object Markup Language encoding: base64 extensions: - uoml xrefs: !ruby/object:MIME::Types::Container person: - Arne_Gerdes template: - application/vnd.uoml+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.alert encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.alert registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.alert-wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.alert-wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.bearer-choice encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.bearer-choice registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.bearer-choice-wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.bearer-choice-wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.cacheop encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.cacheop registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.cacheop-wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.cacheop-wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.channel encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.channel registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.channel-wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.channel-wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.list encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.list registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.list-wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.list-wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.listcmd encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.listcmd registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.listcmd-wbxml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.listcmd-wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.uplanet.signal encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Bruce_Martin template: - application/vnd.uplanet.signal registered: true - !ruby/object:MIME::Type content-type: application/vnd.uri-map encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Sebastian_Baer template: - application/vnd.uri-map registered: true - !ruby/object:MIME::Type content-type: application/vnd.valve.source.material encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Henrik_Andersson template: - application/vnd.valve.source.material registered: true - !ruby/object:MIME::Type content-type: application/vnd.vcx friendly: en: VirtualCatalog encoding: base64 extensions: - vcx xrefs: !ruby/object:MIME::Types::Container person: - Taisuke_Sugimoto template: - application/vnd.vcx registered: true - !ruby/object:MIME::Type content-type: application/vnd.vd-study encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Luc_Rogge template: - application/vnd.vd-study registered: true - !ruby/object:MIME::Type content-type: application/vnd.vectorworks encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Lyndsey_Ferguson - Biplab_Sarkar template: - application/vnd.vectorworks registered: true - !ruby/object:MIME::Type content-type: application/vnd.verimatrix.vcas encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Petr_Peterka template: - application/vnd.verimatrix.vcas registered: true - !ruby/object:MIME::Type content-type: application/vnd.vidsoft.vidconference encoding: 8bit extensions: - vsc xrefs: !ruby/object:MIME::Types::Container person: - Robert_Hess template: - application/vnd.vidsoft.vidconference registered: true - !ruby/object:MIME::Type content-type: application/vnd.visio friendly: en: Microsoft Visio encoding: base64 extensions: - vsd - vst - vsw - vss xrefs: !ruby/object:MIME::Types::Container person: - Troy_Sandal template: - application/vnd.visio registered: true - !ruby/object:MIME::Type content-type: application/vnd.visionary friendly: en: Visionary encoding: base64 extensions: - vis xrefs: !ruby/object:MIME::Types::Container person: - Gayatri_Aravindakumar template: - application/vnd.visionary registered: true - !ruby/object:MIME::Type content-type: application/vnd.vividence.scriptfile encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mark_Risher template: - application/vnd.vividence.scriptfile registered: true - !ruby/object:MIME::Type content-type: application/vnd.vsf friendly: en: Viewport+ encoding: base64 extensions: - vsf xrefs: !ruby/object:MIME::Types::Container person: - Delton_Rowe template: - application/vnd.vsf registered: true - !ruby/object:MIME::Type content-type: application/vnd.wap.sic encoding: base64 extensions: - sic xrefs: !ruby/object:MIME::Types::Container person: - WAP-Forum template: - application/vnd.wap.sic registered: true - !ruby/object:MIME::Type content-type: application/vnd.wap.slc encoding: base64 extensions: - slc xrefs: !ruby/object:MIME::Types::Container person: - WAP-Forum template: - application/vnd.wap-slc registered: true - !ruby/object:MIME::Type content-type: application/vnd.wap.wbxml friendly: en: WAP Binary XML (WBXML) encoding: base64 extensions: - wbxml xrefs: !ruby/object:MIME::Types::Container person: - Peter_Stark template: - application/vnd.wap-wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.wap.wmlc friendly: en: Compiled Wireless Markup Language (WMLC) encoding: base64 extensions: - wmlc xrefs: !ruby/object:MIME::Types::Container person: - Peter_Stark template: - application/vnd-wap-wmlc registered: true - !ruby/object:MIME::Type content-type: application/vnd.wap.wmlscriptc friendly: en: WMLScript encoding: base64 extensions: - wmlsc xrefs: !ruby/object:MIME::Types::Container person: - Peter_Stark template: - application/vnd.wap.wmlscriptc registered: true - !ruby/object:MIME::Type content-type: application/vnd.webturbo friendly: en: WebTurbo encoding: base64 extensions: - wtb xrefs: !ruby/object:MIME::Types::Container person: - Yaser_Rehem template: - application/vnd.webturbo registered: true - !ruby/object:MIME::Type content-type: application/vnd.wfa.p2p encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Mick_Conley template: - application/vnd.wfa.p2p registered: true - !ruby/object:MIME::Type content-type: application/vnd.wfa.wsc encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Wi-Fi_Alliance template: - application/vnd.wfa.wsc registered: true - !ruby/object:MIME::Type content-type: application/vnd.windows.devicepairing encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Priya_Dandawate template: - application/vnd.windows.devicepairing registered: true - !ruby/object:MIME::Type content-type: application/vnd.wmc encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thomas_Kjornes template: - application/vnd.wmc registered: true - !ruby/object:MIME::Type content-type: application/vnd.wmf.bootstrap encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Thinh_Nguyenphu - Prakash_Iyer template: - application/vnd.wmf.bootstrap registered: true - !ruby/object:MIME::Type content-type: application/vnd.wolfram.mathematica encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Wolfram template: - application/vnd.wolfram.mathematica registered: true - !ruby/object:MIME::Type content-type: application/vnd.wolfram.mathematica.package encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Wolfram template: - application/vnd.wolfram.mathematica.package registered: true - !ruby/object:MIME::Type content-type: application/vnd.wolfram.player friendly: en: Mathematica Notebook Player encoding: base64 extensions: - nbp xrefs: !ruby/object:MIME::Types::Container person: - Wolfram template: - application/vnd.wolfram.player registered: true - !ruby/object:MIME::Type content-type: application/vnd.wordperfect friendly: en: Wordperfect encoding: base64 extensions: - wpd xrefs: !ruby/object:MIME::Types::Container person: - Kim_Scarborough template: - application/vnd.wordperfect registered: true - !ruby/object:MIME::Type content-type: application/vnd.wqd friendly: en: SundaHus WQ encoding: base64 extensions: - wqd xrefs: !ruby/object:MIME::Types::Container person: - Jan_Bostrom template: - application/vnd.wqd registered: true - !ruby/object:MIME::Type content-type: application/vnd.wrq-hp3000-labelled encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Chris_Bartram template: - application/vnd.wrq-hp3000-labelled registered: true - !ruby/object:MIME::Type content-type: application/vnd.wt.stf friendly: en: Worldtalk encoding: base64 extensions: - stf xrefs: !ruby/object:MIME::Types::Container person: - Bill_Wohler template: - application/vnd.wt.stf registered: true - !ruby/object:MIME::Type content-type: application/vnd.wv.csp+wbxml encoding: base64 extensions: - wv xrefs: !ruby/object:MIME::Types::Container person: - Matti_Salmi template: - application/vnd.wv.csp+wbxml registered: true - !ruby/object:MIME::Type content-type: application/vnd.wv.csp+xml encoding: 8bit xrefs: !ruby/object:MIME::Types::Container person: - John_Ingi_Ingimundarson template: - application/vnd.wv.csp+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.wv.ssp+xml encoding: 8bit xrefs: !ruby/object:MIME::Types::Container person: - John_Ingi_Ingimundarson template: - application/vnd.wv.ssp+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.xacml+json encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - David_Brossard template: - application/vnd.xacml+json registered: true - !ruby/object:MIME::Type content-type: application/vnd.xara friendly: en: CorelXARA encoding: base64 extensions: - xar xrefs: !ruby/object:MIME::Types::Container person: - David_Matthewman template: - application/vnd.xara registered: true - !ruby/object:MIME::Type content-type: application/vnd.xfdl friendly: en: Extensible Forms Description Language encoding: base64 extensions: - xfdl xrefs: !ruby/object:MIME::Types::Container person: - Dave_Manning template: - application/vnd.xfdl registered: true - !ruby/object:MIME::Type content-type: application/vnd.xfdl.webform encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Michael_Mansell template: - application/vnd.xfdl.webform registered: true - !ruby/object:MIME::Type content-type: application/vnd.xmi+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Fred_Waskiewicz template: - application/vnd.xmi+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.xmpie.cpkg encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reuven_Sherwin template: - application/vnd.xmpie.cpkg registered: true - !ruby/object:MIME::Type content-type: application/vnd.xmpie.dpkg encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reuven_Sherwin template: - application/vnd.xmpie.dpkg registered: true - !ruby/object:MIME::Type content-type: application/vnd.xmpie.plan encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reuven_Sherwin template: - application/vnd.xmpie.plan registered: true - !ruby/object:MIME::Type content-type: application/vnd.xmpie.ppkg encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reuven_Sherwin template: - application/vnd.xmpie.ppkg registered: true - !ruby/object:MIME::Type content-type: application/vnd.xmpie.xlim encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Reuven_Sherwin template: - application/vnd.xmpie.xlim registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.hv-dic friendly: en: HV Voice Dictionary encoding: base64 extensions: - hvd xrefs: !ruby/object:MIME::Types::Container person: - Tomohiro_Yamamoto template: - application/vnd.yamaha.hv-dic registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.hv-script friendly: en: HV Script encoding: base64 extensions: - hvs xrefs: !ruby/object:MIME::Types::Container person: - Tomohiro_Yamamoto template: - application/vnd.yamaha.hv-script registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.hv-voice friendly: en: HV Voice Parameter encoding: base64 extensions: - hvp xrefs: !ruby/object:MIME::Types::Container person: - Tomohiro_Yamamoto template: - application/vnd.yamaha.hv-voice registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.openscoreformat friendly: en: Open Score Format encoding: base64 extensions: - osf xrefs: !ruby/object:MIME::Types::Container person: - Mark_Olleson template: - application/vnd.yamaha.openscoreformat registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.openscoreformat.osfpvg+xml friendly: en: OSFPVG encoding: base64 extensions: - osfpvg xrefs: !ruby/object:MIME::Types::Container person: - Mark_Olleson template: - application/vnd.yamaha.openscoreformat.osfpvg+xml registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.remote-setup encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Takehiro_Sukizaki template: - application/vnd.yamaha.remote-setup registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.smaf-audio friendly: en: SMAF Audio encoding: base64 extensions: - saf xrefs: !ruby/object:MIME::Types::Container person: - Keiichi_Shinoda template: - application/vnd.yamaha.smaf-audio registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.smaf-phrase friendly: en: SMAF Phrase encoding: base64 extensions: - spf xrefs: !ruby/object:MIME::Types::Container person: - Keiichi_Shinoda template: - application/vnd.yamaha.smaf-phrase registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.through-ngn encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Takehiro_Sukizaki template: - application/vnd.yamaha.through-ngn registered: true - !ruby/object:MIME::Type content-type: application/vnd.yamaha.tunnel-udpencap encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Takehiro_Sukizaki template: - application/vnd.yamaha.tunnel-udpencap registered: true - !ruby/object:MIME::Type content-type: application/vnd.yaoweme encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Jens_Jorgensen template: - application/vnd.yaoweme registered: true - !ruby/object:MIME::Type content-type: application/vnd.yellowriver-custom-menu friendly: en: CustomMenu encoding: base64 extensions: - cmp xrefs: !ruby/object:MIME::Types::Container person: - Mr._Yellow template: - application/vnd.yellowriver-custom-menu registered: true - !ruby/object:MIME::Type content-type: application/vnd.zul friendly: en: Z.U.L. Geometry encoding: base64 extensions: - zir - zirz xrefs: !ruby/object:MIME::Types::Container person: - Rene_Grothmann template: - application/vnd.zul registered: true - !ruby/object:MIME::Type content-type: application/vnd.zzazz.deck+xml friendly: en: Zzazz Deck encoding: base64 extensions: - zaz xrefs: !ruby/object:MIME::Types::Container person: - Micheal_Hewett template: - application/vnd.zzazz.deck+xml registered: true - !ruby/object:MIME::Type content-type: application/voicexml+xml friendly: en: VoiceXML encoding: base64 extensions: - vxml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4267 template: - application/voicexml+xml registered: true - !ruby/object:MIME::Type content-type: application/vq-rtcpxr encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6035 template: - application/vq-rtcpxr registered: true - !ruby/object:MIME::Type content-type: application/watcherinfo+xml encoding: base64 extensions: - wif xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3858 template: - application/watcherinfo+xml registered: true - !ruby/object:MIME::Type content-type: application/whoispp-query encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2957 template: - application/whoispp-query registered: true - !ruby/object:MIME::Type content-type: application/whoispp-response encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2958 template: - application/whoispp-response registered: true - !ruby/object:MIME::Type content-type: application/widget friendly: en: Widget Packaging and XML Configuration encoding: base64 extensions: - wgt xrefs: !ruby/object:MIME::Types::Container person: - W3C - Steven_Pemberton uri: - http://www.w3.org/TR/widgets/#media-type-registration-for-applicationw registered: true - !ruby/object:MIME::Type content-type: application/winhlp friendly: en: WinHelp encoding: base64 extensions: - hlp registered: false - !ruby/object:MIME::Type content-type: application/wita encoding: base64 xrefs: !ruby/object:MIME::Types::Container person: - Larry_Campbell template: - application/wita registered: true - !ruby/object:MIME::Type content-type: application/word encoding: base64 extensions: - doc - dot registered: false - !ruby/object:MIME::Type content-type: application/wordperfect encoding: base64 extensions: - wp obsolete: true use-instead: application/vnd.wordperfect registered: false - !ruby/object:MIME::Type content-type: application/wordperfect5.1 encoding: base64 extensions: - wp5 - wp xrefs: !ruby/object:MIME::Types::Container person: - Paul_Lindner template: - application/wordperfect5.1 registered: true - !ruby/object:MIME::Type content-type: application/wordperfect6.1 encoding: base64 extensions: - wp6 obsolete: true use-instead: application/x-wordperfect6.1 registered: false - !ruby/object:MIME::Type content-type: application/wordperfectd encoding: base64 extensions: - wpd obsolete: true use-instead: application/vnd.wordperfect registered: false - !ruby/object:MIME::Type content-type: application/wsdl+xml friendly: en: WSDL - Web Services Description Language encoding: base64 extensions: - wsdl xrefs: !ruby/object:MIME::Types::Container person: - W3C template: - application/wsdl+xml registered: true - !ruby/object:MIME::Type content-type: application/wspolicy+xml friendly: en: Web Services Policy encoding: base64 extensions: - wspolicy xrefs: !ruby/object:MIME::Types::Container person: - W3C template: - application/wspolicy+xml registered: true - !ruby/object:MIME::Type content-type: application/x-123 encoding: base64 extensions: - wk obsolete: true use-instead: application/vnd.lotus-1-2-3 registered: false - !ruby/object:MIME::Type content-type: application/x-7z-compressed friendly: en: 7-Zip encoding: base64 extensions: - 7z registered: false - !ruby/object:MIME::Type content-type: application/x-abiword friendly: en: AbiWord encoding: base64 extensions: - abw registered: false - !ruby/object:MIME::Type content-type: application/x-access encoding: base64 extensions: - mdf - mda - mdb - mde obsolete: true use-instead: application/x-msaccess registered: false - !ruby/object:MIME::Type content-type: application/x-ace-compressed friendly: en: Ace Archive encoding: base64 extensions: - ace registered: false - !ruby/object:MIME::Type content-type: application/x-apple-diskimage encoding: base64 extensions: - dmg registered: false - !ruby/object:MIME::Type content-type: application/x-authorware-bin friendly: en: Adobe (Macropedia) Authorware - Binary File encoding: base64 extensions: - aab - u32 - vox - x32 registered: false - !ruby/object:MIME::Type content-type: application/x-authorware-map friendly: en: Adobe (Macropedia) Authorware - Map encoding: base64 extensions: - aam registered: false - !ruby/object:MIME::Type content-type: application/x-authorware-seg friendly: en: Adobe (Macropedia) Authorware - Segment File encoding: base64 extensions: - aas registered: false - !ruby/object:MIME::Type content-type: application/x-bcpio friendly: en: Binary CPIO Archive encoding: base64 extensions: - bcpio registered: false - !ruby/object:MIME::Type content-type: application/x-bittorrent friendly: en: BitTorrent encoding: base64 extensions: - torrent registered: false - !ruby/object:MIME::Type content-type: application/x-bleeper encoding: base64 extensions: - bleep registered: false - !ruby/object:MIME::Type content-type: application/x-blorb encoding: base64 extensions: - blb - blorb registered: false - !ruby/object:MIME::Type content-type: application/x-bzip friendly: en: Bzip Archive encoding: base64 extensions: - bz registered: false - !ruby/object:MIME::Type content-type: application/x-bzip2 friendly: en: Bzip2 Archive encoding: base64 extensions: - boz - bz2 registered: false - !ruby/object:MIME::Type content-type: application/x-cbr encoding: base64 extensions: - cb7 - cba - cbr - cbt - cbz registered: false - !ruby/object:MIME::Type content-type: application/x-cdlink friendly: en: Video CD encoding: base64 extensions: - vcd registered: false - !ruby/object:MIME::Type content-type: application/x-cfs-compressed encoding: base64 extensions: - cfs registered: false - !ruby/object:MIME::Type content-type: application/x-chat friendly: en: pIRCh encoding: base64 extensions: - chat registered: false - !ruby/object:MIME::Type content-type: application/x-chess-pgn friendly: en: Portable Game Notation (Chess Games) encoding: base64 extensions: - pgn registered: false - !ruby/object:MIME::Type content-type: application/x-chrome-extension encoding: base64 extensions: - crx registered: false - !ruby/object:MIME::Type content-type: application/x-clariscad encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-compress encoding: base64 extensions: - z - Z obsolete: true use-instead: application/x-compressed registered: false - !ruby/object:MIME::Type content-type: application/x-compressed encoding: base64 extensions: - z - Z registered: false - !ruby/object:MIME::Type content-type: application/x-conference encoding: base64 extensions: - nsc registered: false - !ruby/object:MIME::Type content-type: application/x-cpio friendly: en: CPIO Archive encoding: base64 extensions: - cpio registered: false - !ruby/object:MIME::Type content-type: application/x-csh friendly: en: C Shell Script encoding: 8bit extensions: - csh registered: false - !ruby/object:MIME::Type content-type: application/x-cu-seeme encoding: base64 extensions: - csm - cu registered: false - !ruby/object:MIME::Type content-type: application/x-debian-package friendly: en: Debian Package encoding: base64 extensions: - deb - udeb registered: false - !ruby/object:MIME::Type content-type: application/x-dgc-compressed encoding: base64 extensions: - dgc registered: false - !ruby/object:MIME::Type 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 - !ruby/object:MIME::Type content-type: application/x-doom friendly: en: Doom Video Game encoding: base64 extensions: - wad registered: false - !ruby/object:MIME::Type content-type: application/x-drafting encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-dtbncx+xml friendly: en: Navigation Control file for XML (for ePub) encoding: base64 extensions: - ncx registered: false - !ruby/object:MIME::Type content-type: application/x-dtbook+xml friendly: en: Digital Talking Book encoding: base64 extensions: - dtb registered: false - !ruby/object:MIME::Type content-type: application/x-dtbresource+xml friendly: en: Digital Talking Book - Resource File encoding: base64 extensions: - res registered: false - !ruby/object:MIME::Type content-type: application/x-dvi friendly: en: Device Independent File Format (DVI) encoding: base64 extensions: - dvi registered: false - !ruby/object:MIME::Type content-type: application/x-dxf encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-envoy encoding: base64 extensions: - evy registered: false - !ruby/object:MIME::Type content-type: application/x-eva encoding: base64 extensions: - eva registered: false - !ruby/object:MIME::Type content-type: application/x-excel encoding: base64 obsolete: true use-instead: application/vnd.ms-excel registered: false - !ruby/object:MIME::Type content-type: application/x-font-bdf friendly: en: Glyph Bitmap Distribution Format encoding: base64 extensions: - bdf registered: false - !ruby/object:MIME::Type content-type: application/x-font-ghostscript friendly: en: Ghostscript Font encoding: base64 extensions: - gsf registered: false - !ruby/object:MIME::Type content-type: application/x-font-linux-psf friendly: en: PSF Fonts encoding: base64 extensions: - psf registered: false - !ruby/object:MIME::Type content-type: application/x-font-opentype encoding: base64 extensions: - otf registered: false - !ruby/object:MIME::Type content-type: application/x-font-otf friendly: en: OpenType Font File encoding: base64 extensions: - otf registered: false - !ruby/object:MIME::Type content-type: application/x-font-pcf friendly: en: Portable Compiled Format encoding: base64 extensions: - pcf registered: false - !ruby/object:MIME::Type content-type: application/x-font-snf friendly: en: Server Normal Format encoding: base64 extensions: - snf registered: false - !ruby/object:MIME::Type content-type: application/x-font-truetype encoding: base64 extensions: - ttf registered: false - !ruby/object:MIME::Type content-type: application/x-font-ttf friendly: en: TrueType Font encoding: base64 extensions: - ttc - ttf registered: false - !ruby/object:MIME::Type content-type: application/x-font-type1 friendly: en: PostScript Fonts encoding: base64 extensions: - afm - pfa - pfb - pfm registered: false - !ruby/object:MIME::Type content-type: application/x-fractals encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-freearc encoding: base64 extensions: - arc registered: false - !ruby/object:MIME::Type content-type: application/x-futuresplash friendly: en: FutureSplash Animator encoding: base64 extensions: - spl registered: false - !ruby/object:MIME::Type content-type: application/x-gca-compressed encoding: base64 extensions: - gca registered: false - !ruby/object:MIME::Type content-type: application/x-ghostview encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-glulx encoding: base64 extensions: - ulx registered: false - !ruby/object:MIME::Type content-type: application/x-gnumeric friendly: en: Gnumeric encoding: base64 extensions: - gnumeric registered: false - !ruby/object:MIME::Type content-type: application/x-gramps-xml encoding: base64 extensions: - gramps registered: false - !ruby/object:MIME::Type content-type: application/x-gtar friendly: en: GNU Tar Files encoding: base64 extensions: - gtar - tgz - tbz2 - tbz registered: false - !ruby/object:MIME::Type content-type: application/x-gzip encoding: base64 extensions: - gz obsolete: true use-instead: application/gzip registered: false - !ruby/object:MIME::Type content-type: application/x-hdf friendly: en: Hierarchical Data Format encoding: base64 extensions: - hdf registered: false - !ruby/object:MIME::Type content-type: application/x-hep encoding: base64 extensions: - hep registered: false - !ruby/object:MIME::Type content-type: application/x-html+ruby encoding: 8bit extensions: - rhtml registered: false - !ruby/object:MIME::Type content-type: application/x-httpd-php encoding: 8bit extensions: - phtml - pht - php registered: false - !ruby/object:MIME::Type content-type: application/x-ibooks+zip encoding: base64 extensions: - ibooks registered: false - !ruby/object:MIME::Type content-type: application/x-ica encoding: base64 extensions: - ica registered: false - !ruby/object:MIME::Type content-type: application/x-ideas encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-imagemap encoding: 8bit extensions: - imagemap - imap registered: false - !ruby/object:MIME::Type content-type: application/x-install-instructions encoding: base64 extensions: - install registered: false - !ruby/object:MIME::Type content-type: application/x-iso9660-image encoding: base64 extensions: - iso registered: false - !ruby/object:MIME::Type content-type: application/x-iwork-keynote-sffkey encoding: base64 extensions: - key registered: false - !ruby/object:MIME::Type content-type: application/x-iwork-numbers-sffnumbers encoding: base64 extensions: - numbers registered: false - !ruby/object:MIME::Type content-type: application/x-iwork-pages-sffpages encoding: base64 extensions: - pages registered: false - !ruby/object:MIME::Type content-type: application/x-java-archive encoding: base64 extensions: - jar registered: false - !ruby/object:MIME::Type content-type: application/x-java-jnlp-file friendly: en: Java Network Launching Protocol encoding: base64 extensions: - jnlp registered: false - !ruby/object:MIME::Type content-type: application/x-java-serialized-object encoding: base64 extensions: - ser registered: false - !ruby/object:MIME::Type content-type: application/x-java-vm encoding: base64 extensions: - class registered: false - !ruby/object:MIME::Type content-type: application/x-javascript encoding: 8bit extensions: - js obsolete: true use-instead: application/javascript registered: false - !ruby/object:MIME::Type content-type: application/x-koan encoding: base64 extensions: - skp - skd - skt - skm registered: false - !ruby/object:MIME::Type content-type: application/x-latex friendly: en: LaTeX encoding: 8bit extensions: - ltx - latex registered: false - !ruby/object:MIME::Type content-type: application/x-lotus-123 encoding: base64 extensions: - wks obsolete: true use-instead: application/vnd.lotus-1-2-3 registered: false - !ruby/object:MIME::Type content-type: application/x-lzh-compressed encoding: base64 extensions: - lha - lzh registered: false - !ruby/object:MIME::Type content-type: application/x-mac encoding: base64 extensions: - bin registered: false - !ruby/object:MIME::Type content-type: application/x-mac-compactpro encoding: base64 extensions: - cpt registered: false - !ruby/object:MIME::Type content-type: application/x-macbase64 encoding: base64 extensions: - bin registered: false - !ruby/object:MIME::Type content-type: application/x-macbinary encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-maker encoding: base64 extensions: - frm - maker - frame - fm - fb - book - fbdoc obsolete: true use-instead: application/vnd.framemaker registered: false - !ruby/object:MIME::Type content-type: application/x-mathcad encoding: base64 extensions: - mcd obsolete: true use-instead: application/vnd.mcd registered: false - !ruby/object:MIME::Type content-type: application/x-mathematica-old encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-mie encoding: base64 extensions: - mie registered: false - !ruby/object:MIME::Type content-type: application/x-mif encoding: base64 extensions: - mif registered: false - !ruby/object:MIME::Type content-type: application/x-mobipocket-ebook friendly: en: Mobipocket encoding: base64 extensions: - mobi - prc registered: false - !ruby/object:MIME::Type content-type: application/x-ms-application friendly: en: Microsoft ClickOnce encoding: base64 extensions: - application registered: false - !ruby/object:MIME::Type content-type: application/x-ms-shortcut encoding: base64 extensions: - lnk registered: false - !ruby/object:MIME::Type content-type: application/x-ms-wmd friendly: en: Microsoft Windows Media Player Download Package encoding: base64 extensions: - wmd registered: false - !ruby/object:MIME::Type content-type: application/x-ms-wmz friendly: en: Microsoft Windows Media Player Skin Package encoding: base64 extensions: - wmz registered: false - !ruby/object:MIME::Type content-type: application/x-ms-xbap friendly: en: Microsoft XAML Browser Application encoding: base64 extensions: - xbap registered: false - !ruby/object:MIME::Type content-type: application/x-msaccess friendly: en: Microsoft Access encoding: base64 extensions: - mda - mdb - mde - mdf registered: false - !ruby/object:MIME::Type content-type: application/x-msbinder friendly: en: Microsoft Office Binder encoding: base64 extensions: - obd registered: false - !ruby/object:MIME::Type content-type: application/x-mscardfile friendly: en: Microsoft Information Card encoding: base64 extensions: - crd registered: false - !ruby/object:MIME::Type content-type: application/x-msclip friendly: en: Microsoft Clipboard Clip encoding: base64 extensions: - clp registered: false - !ruby/object:MIME::Type content-type: application/x-msdos-program encoding: base64 extensions: - cmd - bat - com - exe - reg - ps1 - vbs registered: false - !ruby/object:MIME::Type content-type: application/x-msdownload friendly: en: Microsoft Application encoding: base64 extensions: - exe - com - cmd - bat - dll - msi - reg - ps1 - vbs registered: false - !ruby/object:MIME::Type content-type: application/x-msmediaview friendly: en: Microsoft MediaView encoding: base64 extensions: - m13 - m14 - mvb registered: false - !ruby/object:MIME::Type content-type: application/x-msmetafile friendly: en: Microsoft Windows Metafile encoding: base64 extensions: - emf - emz - wmf - wmz registered: false - !ruby/object:MIME::Type content-type: application/x-msmoney friendly: en: Microsoft Money encoding: base64 extensions: - mny registered: false - !ruby/object:MIME::Type content-type: application/x-mspublisher friendly: en: Microsoft Publisher encoding: base64 extensions: - pub registered: false - !ruby/object:MIME::Type content-type: application/x-msschedule friendly: en: Microsoft Schedule+ encoding: base64 extensions: - scd registered: false - !ruby/object:MIME::Type content-type: application/x-msterminal friendly: en: Microsoft Windows Terminal Services encoding: base64 extensions: - trm registered: false - !ruby/object:MIME::Type content-type: application/x-msword encoding: base64 extensions: - doc - dot - wrd obsolete: true use-instead: application/msword registered: false - !ruby/object:MIME::Type content-type: application/x-mswrite friendly: en: Microsoft Wordpad encoding: base64 extensions: - wri registered: false - !ruby/object:MIME::Type content-type: application/x-netcdf friendly: en: Network Common Data Form (NetCDF) encoding: base64 extensions: - nc - cdf registered: false - !ruby/object:MIME::Type content-type: application/x-ns-proxy-autoconfig encoding: base64 extensions: - pac registered: false - !ruby/object:MIME::Type content-type: application/x-nzb encoding: base64 extensions: - nzb registered: false - !ruby/object:MIME::Type content-type: application/x-opera-extension encoding: base64 extensions: - oex registered: false - !ruby/object:MIME::Type content-type: application/x-pagemaker encoding: base64 extensions: - pm - pm5 - pt5 registered: false - !ruby/object:MIME::Type content-type: application/x-perl encoding: 8bit extensions: - pl - pm registered: false - !ruby/object:MIME::Type content-type: application/x-pgp encoding: base64 registered: false signature: true - !ruby/object:MIME::Type content-type: application/x-pkcs12 friendly: en: 'PKCS #12 - Personal Information Exchange Syntax Standard' encoding: base64 extensions: - p12 - pfx registered: false - !ruby/object:MIME::Type content-type: application/x-pkcs7-certificates friendly: en: 'PKCS #7 - Cryptographic Message Syntax Standard (Certificates)' encoding: base64 extensions: - p7b - spc registered: false - !ruby/object:MIME::Type content-type: application/x-pkcs7-certreqresp friendly: en: 'PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)' encoding: base64 extensions: - p7r registered: false - !ruby/object:MIME::Type content-type: application/x-python encoding: 8bit extensions: - py registered: false - !ruby/object:MIME::Type content-type: application/x-quicktimeplayer encoding: base64 extensions: - qtl registered: false - !ruby/object:MIME::Type content-type: application/x-rar-compressed friendly: en: RAR Archive encoding: base64 extensions: - rar registered: false - !ruby/object:MIME::Type content-type: application/x-remote_printing encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-research-info-systems encoding: base64 extensions: - ris registered: false - !ruby/object:MIME::Type content-type: application/x-rtf encoding: base64 extensions: - rtf obsolete: true use-instead: application/rtf registered: false - !ruby/object:MIME::Type content-type: application/x-ruby encoding: 8bit extensions: - rb - rbw registered: false - !ruby/object:MIME::Type content-type: application/x-set encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-sh friendly: en: Bourne Shell Script encoding: 8bit extensions: - sh registered: false - !ruby/object:MIME::Type content-type: application/x-shar friendly: en: Shell Archive encoding: 8bit extensions: - shar registered: false - !ruby/object:MIME::Type content-type: application/x-shockwave-flash friendly: en: Adobe Flash encoding: base64 extensions: - swf registered: false - !ruby/object:MIME::Type content-type: application/x-silverlight-app friendly: en: Microsoft Silverlight encoding: base64 extensions: - xap registered: false - !ruby/object:MIME::Type content-type: application/x-SLA encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-solids encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-spss encoding: base64 extensions: - sav - sbs - sps - spo - spp registered: false - !ruby/object:MIME::Type content-type: application/x-sql encoding: base64 extensions: - sql registered: false - !ruby/object:MIME::Type content-type: application/x-STEP encoding: base64 registered: false - !ruby/object:MIME::Type content-type: application/x-stuffit friendly: en: Stuffit Archive encoding: base64 extensions: - sit registered: false - !ruby/object:MIME::Type content-type: application/x-stuffitx friendly: en: Stuffit Archive encoding: base64 extensions: - sitx registered: false - !ruby/object:MIME::Type content-type: application/x-subrip encoding: base64 extensions: - srt registered: false - !ruby/object:MIME::Type content-type: application/x-sv4cpio friendly: en: System V Release 4 CPIO Archive encoding: base64 extensions: - sv4cpio registered: false - !ruby/object:MIME::Type content-type: application/x-sv4crc friendly: en: System V Release 4 CPIO Checksum Data encoding: base64 extensions: - sv4crc registered: false - !ruby/object:MIME::Type content-type: application/x-t3vm-image encoding: base64 extensions: - t3 registered: false - !ruby/object:MIME::Type content-type: application/x-tads encoding: base64 extensions: - gam registered: false - !ruby/object:MIME::Type content-type: application/x-tar friendly: en: Tar File (Tape Archive) encoding: base64 extensions: - tar registered: false - !ruby/object:MIME::Type content-type: application/x-tcl friendly: en: Tcl Script encoding: 8bit extensions: - tcl registered: false - !ruby/object:MIME::Type content-type: application/x-tex friendly: en: TeX encoding: 8bit extensions: - tex registered: false - !ruby/object:MIME::Type content-type: application/x-tex-tfm friendly: en: TeX Font Metric encoding: base64 extensions: - tfm registered: false - !ruby/object:MIME::Type content-type: application/x-texinfo friendly: en: GNU Texinfo Document encoding: 8bit extensions: - texinfo - texi registered: false - !ruby/object:MIME::Type content-type: application/x-tgif encoding: base64 extensions: - obj registered: false - !ruby/object:MIME::Type content-type: application/x-toolbook encoding: base64 extensions: - tbk registered: false - !ruby/object:MIME::Type content-type: application/x-troff encoding: base64 extensions: - t - tr - roff obsolete: true use-instead: text/troff registered: false - !ruby/object:MIME::Type content-type: application/x-troff-man encoding: 8bit extensions: - man registered: false - !ruby/object:MIME::Type content-type: application/x-troff-me encoding: base64 extensions: - me registered: false - !ruby/object:MIME::Type content-type: application/x-troff-ms encoding: base64 extensions: - ms registered: false - !ruby/object:MIME::Type content-type: application/x-u-star encoding: base64 obsolete: true use-instead: application/x-ustar registered: false - !ruby/object:MIME::Type content-type: application/x-ustar friendly: en: Ustar (Uniform Standard Tape Archive) encoding: base64 extensions: - ustar registered: false - !ruby/object:MIME::Type content-type: application/x-VMSBACKUP encoding: base64 extensions: - bck registered: false - !ruby/object:MIME::Type content-type: application/x-wais-source friendly: en: WAIS Source encoding: base64 extensions: - src registered: false - !ruby/object:MIME::Type content-type: application/x-web-app-manifest+json encoding: base64 extensions: - webapp registered: false - !ruby/object:MIME::Type content-type: application/x-Wingz encoding: base64 extensions: - wz - wkz registered: false - !ruby/object:MIME::Type content-type: application/x-word encoding: base64 extensions: - doc - dot obsolete: true use-instead: application/msword registered: false - !ruby/object:MIME::Type content-type: application/x-wordperfect encoding: base64 extensions: - wp obsolete: true use-instead: application/vnd.wordperfect registered: false - !ruby/object:MIME::Type content-type: application/x-wordperfect6.1 encoding: base64 extensions: - wp6 registered: false - !ruby/object:MIME::Type content-type: application/x-wordperfectd encoding: base64 extensions: - wpd obsolete: true use-instead: application/vnd.wordperfect registered: false - !ruby/object:MIME::Type content-type: application/x-www-form-urlencoded encoding: 7bit xrefs: !ruby/object:MIME::Types::Container person: - W3C - Robin_Berjon template: - application/x-www-form-urlencoded registered: true - !ruby/object:MIME::Type content-type: application/x-x509-ca-cert friendly: en: X.509 Certificate encoding: base64 extensions: - crt - der registered: false - !ruby/object:MIME::Type content-type: application/x-xfig friendly: en: Xfig encoding: base64 extensions: - fig registered: false - !ruby/object:MIME::Type content-type: application/x-xliff+xml encoding: base64 extensions: - xlf registered: false - !ruby/object:MIME::Type content-type: application/x-xpinstall friendly: en: XPInstall - Mozilla encoding: base64 extensions: - xpi registered: false - !ruby/object:MIME::Type content-type: application/x-xz encoding: base64 extensions: - xz registered: false - !ruby/object:MIME::Type content-type: application/x-zmachine encoding: base64 extensions: - z1 - z2 - z3 - z4 - z5 - z6 - z7 - z8 registered: false - !ruby/object:MIME::Type content-type: application/x400-bp encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1494 template: - application/x400-bp registered: true - !ruby/object:MIME::Type content-type: application/x400.bp encoding: base64 obsolete: true use-instead: application/x400-bp registered: false - !ruby/object:MIME::Type content-type: application/xacml+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7061 template: - application/xacml+xml registered: true - !ruby/object:MIME::Type content-type: application/xaml+xml encoding: base64 extensions: - xaml registered: false - !ruby/object:MIME::Type content-type: application/xcap-att+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4825 template: - application/xcap-att+xml registered: true - !ruby/object:MIME::Type content-type: application/xcap-caps+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4825 template: - application/xcap-caps+xml registered: true - !ruby/object:MIME::Type content-type: application/xcap-diff+xml friendly: en: XML Configuration Access Protocol - XCAP Diff encoding: base64 extensions: - xdf xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5874 template: - application/xcap-diff+xml registered: true - !ruby/object:MIME::Type content-type: application/xcap-el+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4825 template: - application/xcap-el+xml registered: true - !ruby/object:MIME::Type content-type: application/xcap-error+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4825 template: - application/xcap-error+xml registered: true - !ruby/object:MIME::Type content-type: application/xcap-ns+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4825 template: - application/xcap-ns+xml registered: true - !ruby/object:MIME::Type content-type: application/xcon-conference-info+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6502 template: - application/xcon-conference-info+xml registered: true - !ruby/object:MIME::Type content-type: application/xcon-conference-info-diff+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6502 template: - application/xcon-conference-info-diff+xml registered: true - !ruby/object:MIME::Type content-type: application/xenc+xml friendly: en: XML Encryption Syntax and Processing encoding: base64 extensions: - xenc xrefs: !ruby/object:MIME::Types::Container person: - Joseph_Reagle - XENC_Working_Group template: - application/xenc+xml registered: true - !ruby/object:MIME::Type content-type: application/xhtml+xml friendly: en: XHTML - The Extensible HyperText Markup Language encoding: 8bit extensions: - xht - xhtml xrefs: !ruby/object:MIME::Types::Container person: - W3C - Robin_Berjon template: - application/xhtml+xml registered: true - !ruby/object:MIME::Type content-type: application/xhtml-voice+xml encoding: base64 obsolete: true xrefs: !ruby/object:MIME::Types::Container draft: - draft-mccobb-xplusv-media-type template: - application/xhtml-voice+xml notes: - "- OBSOLETE; no replacement given" registered: true - !ruby/object:MIME::Type content-type: application/xml friendly: en: XML - Extensible Markup Language encoding: 8bit extensions: - xml - xsl xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7303 template: - application/xml registered: true - !ruby/object:MIME::Type content-type: application/xml-dtd friendly: en: Document Type Definition encoding: 8bit extensions: - dtd xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7303 template: - application/xml-dtd registered: true - !ruby/object:MIME::Type content-type: application/xml-external-parsed-entity encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7303 template: - application/xml-external-parsed-entity registered: true - !ruby/object:MIME::Type content-type: application/xml-patch+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7351 template: - application/xml-patch+xml registered: true - !ruby/object:MIME::Type content-type: application/xmpp+xml encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc3923 template: - application/xmpp+xml registered: true - !ruby/object:MIME::Type content-type: application/xop+xml friendly: en: XML-Binary Optimized Packaging encoding: base64 extensions: - xop xrefs: !ruby/object:MIME::Types::Container person: - Mark_Nottingham template: - application/xop+xml registered: true - !ruby/object:MIME::Type content-type: application/xproc+xml encoding: base64 extensions: - xpl registered: false - !ruby/object:MIME::Type content-type: application/xslt+xml friendly: en: XML Transformations encoding: base64 extensions: - xslt xrefs: !ruby/object:MIME::Types::Container person: - W3C uri: - http://www.w3.org/TR/2007/REC-xslt20-20070123/#media-type-registration registered: true - !ruby/object:MIME::Type content-type: application/xspf+xml friendly: en: XSPF - XML Shareable Playlist Format encoding: base64 extensions: - xspf registered: false - !ruby/object:MIME::Type content-type: application/xv+xml friendly: en: MXML encoding: base64 extensions: - mxml - xhvml - xvm - xvml xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4374 template: - application/xv+xml registered: true - !ruby/object:MIME::Type content-type: application/yang friendly: en: YANG Data Modeling Language encoding: base64 extensions: - yang xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6020 template: - application/yang registered: true - !ruby/object:MIME::Type content-type: application/yin+xml friendly: en: YIN (YANG - XML) encoding: base64 extensions: - yin xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6020 template: - application/yin+xml registered: true - !ruby/object:MIME::Type content-type: application/zip friendly: en: Zip Archive encoding: base64 extensions: - zip xrefs: !ruby/object:MIME::Types::Container person: - Paul_Lindner template: - application/zip registered: true - !ruby/object:MIME::Type content-type: application/zlib encoding: base64 xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6713 template: - application/zlib registered: true mime-types-data-3.2015.1120/types/chemical.yaml0000644000175000017500000000265012627041214022253 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: chemical/x-cdx friendly: en: ChemDraw eXchange file encoding: base64 extensions: - cdx registered: false - !ruby/object:MIME::Type content-type: chemical/x-cif friendly: en: Crystallographic Interchange Format encoding: base64 extensions: - cif registered: false - !ruby/object:MIME::Type content-type: chemical/x-cmdf friendly: en: CrystalMaker Data Format encoding: base64 extensions: - cmdf registered: false - !ruby/object:MIME::Type content-type: chemical/x-cml friendly: en: Chemical Markup Language encoding: base64 extensions: - cml registered: false - !ruby/object:MIME::Type content-type: chemical/x-csml friendly: en: Chemical Style Markup Language encoding: base64 extensions: - csml registered: false - !ruby/object:MIME::Type content-type: chemical/x-pdb encoding: base64 extensions: - pdb obsolete: true use-instead: x-chemical/x-pdb registered: false - !ruby/object:MIME::Type content-type: chemical/x-xyz friendly: en: XYZ File Format encoding: base64 extensions: - xyz obsolete: true use-instead: x-chemical/x-xyz registered: false - !ruby/object:MIME::Type content-type: x-chemical/x-pdb encoding: base64 extensions: - pdb registered: false - !ruby/object:MIME::Type content-type: x-chemical/x-xyz encoding: base64 extensions: - xyz registered: false mime-types-data-3.2015.1120/types/text.yaml0000644000175000017500000005074412627041214021501 0ustar balasankarcbalasankarc--- - !ruby/object:MIME::Type content-type: text/1d-interleaved-parityfec encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6015 template: - text/1d-interleaved-parityfec registered: true - !ruby/object:MIME::Type content-type: text/cache-manifest encoding: quoted-printable extensions: - appcache - manifest xrefs: !ruby/object:MIME::Types::Container person: - W3C - Robin_Berjon template: - text/cache-manifest registered: true - !ruby/object:MIME::Type content-type: text/calendar friendly: en: iCalendar encoding: quoted-printable extensions: - ics - ifb xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5545 template: - text/calendar registered: true - !ruby/object:MIME::Type content-type: text/comma-separated-values encoding: 8bit extensions: - csv obsolete: true use-instead: text/csv registered: false - !ruby/object:MIME::Type content-type: text/css friendly: en: Cascading Style Sheets (CSS) encoding: 8bit extensions: - css xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2318 template: - text/css registered: true - !ruby/object:MIME::Type content-type: text/csv friendly: en: Comma-Separated Values encoding: 8bit extensions: - csv xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4180 - rfc7111 template: - text/csv registered: true - !ruby/object:MIME::Type content-type: text/csv-schema encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - National_Archives_UK - David_Underdown template: - text/csv-schema registered: true - !ruby/object:MIME::Type content-type: text/directory encoding: quoted-printable obsolete: true xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2425 - rfc6350 template: - text/directory notes: - "- DEPRECATED by RFC6350" registered: true - !ruby/object:MIME::Type content-type: text/dns encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4027 template: - text/dns registered: true - !ruby/object:MIME::Type content-type: text/ecmascript encoding: quoted-printable obsolete: true use-instead: application/ecmascript xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4329 template: - text/ecmascript notes: - "- OBSOLETED in favor of application/ecmascript" registered: true - !ruby/object:MIME::Type content-type: text/encaprtp encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6849 template: - text/encaprtp registered: true - !ruby/object:MIME::Type content-type: text/enriched encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1896 registered: true - !ruby/object:MIME::Type content-type: text/example encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4735 template: - text/example registered: true - !ruby/object:MIME::Type content-type: text/fwdred encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6354 template: - text/fwdred registered: true - !ruby/object:MIME::Type content-type: text/grammar-ref-list encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6787 template: - text/grammar-ref-list registered: true - !ruby/object:MIME::Type content-type: text/html friendly: en: HyperText Markup Language (HTML) encoding: 8bit extensions: - html - htm - htmlx - shtml - htx xrefs: !ruby/object:MIME::Types::Container person: - W3C - Robin_Berjon template: - text/html registered: true - !ruby/object:MIME::Type content-type: text/javascript encoding: quoted-printable extensions: - js obsolete: true use-instead: application/javascript xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4329 template: - text/javascript notes: - "- OBSOLETED in favor of application/javascript" registered: true - !ruby/object:MIME::Type content-type: text/jcr-cnd encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Peeter_Piegaze template: - text/jcr-cnd registered: true - !ruby/object:MIME::Type content-type: text/markdown encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container draft: - RFC-ietf-appsawg-text-markdown-12 template: - text/markdown registered: true - !ruby/object:MIME::Type content-type: text/mizar encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Jesse_Alama template: - text/mizar registered: true - !ruby/object:MIME::Type content-type: text/n3 friendly: en: Notation3 encoding: quoted-printable extensions: - n3 xrefs: !ruby/object:MIME::Types::Container person: - W3C - Eric_Prudhommeaux template: - text/n3 registered: true - !ruby/object:MIME::Type content-type: text/parameters encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container draft: - RFC-ietf-mmusic-rfc2326bis-40 template: - text/parameters registered: true - !ruby/object:MIME::Type content-type: text/parityfec encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5109 registered: true - !ruby/object:MIME::Type content-type: text/plain friendly: en: Text File encoding: quoted-printable extensions: - txt - asc - c - cc - h - hh - cpp - hpp - dat - hlp - conf - def - doc - in - list - log - markdown - md - rst - text - textile xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2046 - rfc3676 - rfc5147 registered: true - !ruby/object:MIME::Type content-type: text/provenance-notation encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - W3C - Ivan_Herman template: - text/provenance-notation registered: true - !ruby/object:MIME::Type content-type: text/prs.fallenstein.rst encoding: quoted-printable extensions: - rst xrefs: !ruby/object:MIME::Types::Container person: - Benja_Fallenstein template: - text/prs.fallenstein.rst registered: true - !ruby/object:MIME::Type content-type: text/prs.lines.tag friendly: en: PRS Lines Tag encoding: quoted-printable extensions: - dsc xrefs: !ruby/object:MIME::Types::Container person: - John_Lines template: - text/prs.lines.tag registered: true - !ruby/object:MIME::Type content-type: text/raptorfec encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6682 template: - text/raptorfec registered: true - !ruby/object:MIME::Type content-type: text/RED encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4102 template: - text/RED registered: true - !ruby/object:MIME::Type content-type: text/rfc822-headers encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6522 template: - text/rfc822-headers registered: true - !ruby/object:MIME::Type content-type: text/richtext friendly: en: Rich Text Format (RTF) encoding: 8bit extensions: - rtx xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2045 - rfc2046 registered: true - !ruby/object:MIME::Type content-type: text/rtf encoding: 8bit extensions: - rtf xrefs: !ruby/object:MIME::Types::Container person: - Paul_Lindner template: - text/rtf registered: true - !ruby/object:MIME::Type content-type: text/rtp-enc-aescm128 encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - ThreeGPP template: - text/rtp-enc-aescm128 registered: true - !ruby/object:MIME::Type content-type: text/rtploopback encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6849 template: - text/rtploopback registered: true - !ruby/object:MIME::Type content-type: text/rtx encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4588 template: - text/rtx registered: true - !ruby/object:MIME::Type content-type: text/sgml friendly: en: Standard Generalized Markup Language (SGML) encoding: quoted-printable extensions: - sgml - sgm xrefs: !ruby/object:MIME::Types::Container rfc: - rfc1874 template: - text/SGML registered: true - !ruby/object:MIME::Type content-type: text/t140 encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4103 template: - text/t140 registered: true - !ruby/object:MIME::Type content-type: text/tab-separated-values friendly: en: Tab Separated Values encoding: quoted-printable extensions: - tsv xrefs: !ruby/object:MIME::Types::Container person: - Paul_Lindner template: - text/tab-separated-values registered: true - !ruby/object:MIME::Type content-type: text/troff friendly: en: troff encoding: 8bit extensions: - t - tr - roff - troff - man - me - ms xrefs: !ruby/object:MIME::Types::Container rfc: - rfc4263 template: - text/troff registered: true - !ruby/object:MIME::Type content-type: text/turtle friendly: en: Turtle (Terse RDF Triple Language) encoding: quoted-printable extensions: - ttl xrefs: !ruby/object:MIME::Types::Container person: - W3C - Eric_Prudhommeaux template: - text/turtle registered: true - !ruby/object:MIME::Type content-type: text/ulpfec encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5109 template: - text/ulpfec registered: true - !ruby/object:MIME::Type content-type: text/uri-list friendly: en: URI Resolution Services encoding: quoted-printable extensions: - uri - uris - urls xrefs: !ruby/object:MIME::Types::Container rfc: - rfc2483 template: - text/uri-list registered: true - !ruby/object:MIME::Type content-type: text/vcard encoding: quoted-printable extensions: - vcard xrefs: !ruby/object:MIME::Types::Container rfc: - rfc6350 template: - text/vcard registered: true signature: true - !ruby/object:MIME::Type content-type: text/vnd.a encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Regis_Dehoux template: - text/vnd-a registered: true - !ruby/object:MIME::Type content-type: text/vnd.abc encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Steve_Allen template: - text/vnd.abc registered: true - !ruby/object:MIME::Type content-type: text/vnd.curl friendly: en: Curl - Applet encoding: quoted-printable extensions: - curl xrefs: !ruby/object:MIME::Types::Container person: - Robert_Byrnes template: - text/vnd-curl registered: true - !ruby/object:MIME::Type content-type: text/vnd.curl.dcurl friendly: en: Curl - Detached Applet encoding: quoted-printable extensions: - dcurl registered: false - !ruby/object:MIME::Type content-type: text/vnd.curl.mcurl friendly: en: Curl - Manifest File encoding: quoted-printable extensions: - mcurl registered: false - !ruby/object:MIME::Type content-type: text/vnd.curl.scurl friendly: en: Curl - Source Code encoding: quoted-printable extensions: - scurl registered: false - !ruby/object:MIME::Type content-type: text/vnd.debian.copyright encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Charles_Plessy template: - text/vnd.debian.copyright registered: true - !ruby/object:MIME::Type content-type: text/vnd.DMClientScript encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Dan_Bradley template: - text/vnd.DMClientScript registered: true - !ruby/object:MIME::Type content-type: text/vnd.dvb.subtitle encoding: quoted-printable extensions: - sub xrefs: !ruby/object:MIME::Types::Container person: - Peter_Siebert - Michael_Lagally template: - text/vnd.dvb.subtitle registered: true - !ruby/object:MIME::Type content-type: text/vnd.esmertec.theme-descriptor encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Stefan_Eilemann template: - text/vnd.esmertec.theme-descriptor registered: true - !ruby/object:MIME::Type content-type: text/vnd.flatland.3dml encoding: quoted-printable obsolete: true use-instead: model/vnd.flatland.3dml registered: false - !ruby/object:MIME::Type content-type: text/vnd.fly friendly: en: mod_fly / fly.cgi encoding: quoted-printable extensions: - fly xrefs: !ruby/object:MIME::Types::Container person: - John-Mark_Gurney template: - text/vnd.fly registered: true - !ruby/object:MIME::Type content-type: text/vnd.fmi.flexstor friendly: en: FLEXSTOR encoding: quoted-printable extensions: - flx xrefs: !ruby/object:MIME::Types::Container person: - Kari_E._Hurtta template: - text/vnd.fmi.flexstor registered: true - !ruby/object:MIME::Type content-type: text/vnd.graphviz friendly: en: Graphviz encoding: quoted-printable extensions: - gv xrefs: !ruby/object:MIME::Types::Container person: - John_Ellson template: - text/vnd.graphviz registered: true - !ruby/object:MIME::Type content-type: text/vnd.in3d.3dml friendly: en: In3D - 3DML encoding: quoted-printable extensions: - 3dml xrefs: !ruby/object:MIME::Types::Container person: - Michael_Powers template: - text/vnd.in3d.3dml registered: true - !ruby/object:MIME::Type content-type: text/vnd.in3d.spot friendly: en: In3D - 3DML encoding: quoted-printable extensions: - spot xrefs: !ruby/object:MIME::Types::Container person: - Michael_Powers template: - text/vnd.in3d.spot registered: true - !ruby/object:MIME::Type content-type: text/vnd.IPTC.NewsML encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - IPTC template: - text/vnd.IPTC.NewsML registered: true - !ruby/object:MIME::Type content-type: text/vnd.IPTC.NITF encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - IPTC template: - text/vnd.IPTC.NITF registered: true - !ruby/object:MIME::Type content-type: text/vnd.latex-z encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Mikusiak_Lubos template: - text/vnd.latex-z registered: true - !ruby/object:MIME::Type content-type: text/vnd.motorola.reflex encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Mark_Patton template: - text/vnd.motorola.reflex registered: true - !ruby/object:MIME::Type content-type: text/vnd.ms-mediapackage encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - Jan_Nelson template: - text/vnd.ms-mediapackage registered: true - !ruby/object:MIME::Type content-type: text/vnd.net2phone.commcenter.command encoding: quoted-printable extensions: - ccc xrefs: !ruby/object:MIME::Types::Container person: - Feiyu_Xie template: - text/vnd.net2phone.commcenter.command registered: true - !ruby/object:MIME::Type content-type: text/vnd.radisys.msml-basic-layout encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc5707 template: - text/vnd.radisys.msml-basic-layout registered: true - !ruby/object:MIME::Type content-type: text/vnd.si.uricatalogue encoding: quoted-printable obsolete: true xrefs: !ruby/object:MIME::Types::Container person: - Nicholas_Parks_Young template: - text/vnd.si.uricatalogue notes: - "- OBSOLETED by request" registered: true - !ruby/object:MIME::Type content-type: text/vnd.sun.j2me.app-descriptor friendly: en: J2ME App Descriptor encoding: 8bit extensions: - jad xrefs: !ruby/object:MIME::Types::Container person: - Gary_Adams template: - text/vnd.sun.j2me.app-descriptor registered: true - !ruby/object:MIME::Type content-type: text/vnd.trolltech.linguist encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container person: - David_Lee_Lambert template: - text/vnd.trolltech.linguist registered: true - !ruby/object:MIME::Type content-type: text/vnd.wap.si encoding: quoted-printable extensions: - si xrefs: !ruby/object:MIME::Types::Container person: - WAP-Forum template: - text/vnd.wap.si registered: true - !ruby/object:MIME::Type content-type: text/vnd.wap.sl encoding: quoted-printable extensions: - sl xrefs: !ruby/object:MIME::Types::Container person: - WAP-Forum template: - text/vnd.wap.sl registered: true - !ruby/object:MIME::Type content-type: text/vnd.wap.wml friendly: en: Wireless Markup Language (WML) encoding: quoted-printable extensions: - wml xrefs: !ruby/object:MIME::Types::Container person: - Peter_Stark template: - text/vnd.wap-wml registered: true - !ruby/object:MIME::Type content-type: text/vnd.wap.wmlscript friendly: en: Wireless Markup Language Script (WMLScript) encoding: quoted-printable extensions: - wmls xrefs: !ruby/object:MIME::Types::Container person: - Peter_Stark template: - text/vnd.wap.wmlscript registered: true - !ruby/object:MIME::Type content-type: text/x-asm friendly: en: Assembler Source File encoding: quoted-printable extensions: - asm - s registered: false - !ruby/object:MIME::Type content-type: text/x-c friendly: en: C Source File encoding: quoted-printable extensions: - c - cc - cpp - cxx - dic - h - hh registered: false - !ruby/object:MIME::Type content-type: text/x-coffescript encoding: 8bit extensions: - coffee registered: false - !ruby/object:MIME::Type content-type: text/x-component encoding: 8bit extensions: - htc registered: false - !ruby/object:MIME::Type content-type: text/x-fortran friendly: en: Fortran Source File encoding: quoted-printable extensions: - f - f77 - f90 - for registered: false - !ruby/object:MIME::Type content-type: text/x-java-source friendly: en: Java Source File encoding: quoted-printable extensions: - java registered: false - !ruby/object:MIME::Type content-type: text/x-nfo encoding: quoted-printable extensions: - nfo registered: false - !ruby/object:MIME::Type content-type: text/x-opml encoding: quoted-printable extensions: - opml registered: false - !ruby/object:MIME::Type content-type: text/x-pascal friendly: en: Pascal Source File encoding: quoted-printable extensions: - p - pas registered: false - !ruby/object:MIME::Type content-type: text/x-rtf encoding: 8bit extensions: - rtf obsolete: true use-instead: text/rtf registered: false - !ruby/object:MIME::Type content-type: text/x-setext friendly: en: Setext encoding: quoted-printable extensions: - etx registered: false - !ruby/object:MIME::Type content-type: text/x-sfv encoding: quoted-printable extensions: - sfv registered: false - !ruby/object:MIME::Type content-type: text/x-uuencode friendly: en: UUEncode encoding: quoted-printable extensions: - uu registered: false - !ruby/object:MIME::Type content-type: text/x-vcalendar friendly: en: vCalendar encoding: 8bit extensions: - vcs registered: false - !ruby/object:MIME::Type content-type: text/x-vcard friendly: en: vCard encoding: 8bit extensions: - vcf registered: false signature: true - !ruby/object:MIME::Type content-type: text/x-vnd.flatland.3dml encoding: quoted-printable obsolete: true use-instead: model/vnd.flatland.3dml registered: false - !ruby/object:MIME::Type content-type: text/x-yaml encoding: 8bit extensions: - yaml - yml registered: false - !ruby/object:MIME::Type content-type: text/xml encoding: 8bit extensions: - xml - dtd xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7303 template: - text/xml registered: true - !ruby/object:MIME::Type content-type: text/xml-external-parsed-entity encoding: quoted-printable xrefs: !ruby/object:MIME::Types::Container rfc: - rfc7303 template: - text/xml-external-parsed-entity registered: true mime-types-data-3.2015.1120/README.md0000644000175000017500000000576112627041214017743 0ustar balasankarcbalasankarc# mime-types-data * home :: https://github.com/mime-types/mime-types-data/ * code :: https://github.com/mime-types/mime-types-data/ * issues :: https://github.com/mime-types/mime-types-data/issues ## Description mime-types-data provides a registry for information about MIME media type definitions. It can be used with the Ruby mime-types library or other software to determine defined filename extensions for MIME types, or to use filename extensions to look up the likely MIME type definitions. ### About MIME Media Types MIME media types are used in MIME-compliant communications, as in e-mail or HTTP traffic, to indicate the type of content which is transmitted. The registry provided in mime-types-data contains detailed information about MIME entities. There are many types defined by RFCs and vendors, so the list is long but invariably; don't hesitate to offer additional type definitions for consideration. MIME type definitions found in mime-types are from RFCs, W3C recommendations, the [IANA Media Types registry][registry], and user contributions. It conforms to RFCs 2045 and 2231. ### Data Formats Supported in this Registry This registry contains the MIME media types in three formats: * A YAML format matching the Ruby mime-types library objects (MIME::Type). This is the primary user-editable format. * A JSON format converted from the YAML format. Prior to Ruby mime-types 3.0, this was the main consumption format and is still recommended for any implementation that does not wish to implement the columnar format. * An encoded text format splitting the data for each MIME type across multiple files. This columnar data format reduces the minimal data load substantially, resulting in a performance improvement at the cost of more complex code for loading the data on-demand. This is the default format for Ruby mime-types 3.0. ## mime-types-data Modified Semantic Versioning mime-types-data uses a heavily modified [Semantic Versioning][] scheme to indicate that the data formats compatibility based on a `SCHEMA` version and the date of the data update: `SCHEMA.YEAR.MONTHDAY`. 1. If an incompatible data format change is made to any of the supported formts, `SCHEMA` will be incremented. The current `SCHEMA` is 3, supporting the YAML, JSON, and columnar formats required for Ruby mime-types 3.0. 2. When the data is updated, the `YEAR.MONTHDAY` combination will be updated. An update on the last day of October 2015 would be written as `2015.1031`, resulting in the full version of `3.2015.1031`. 3. If multiple versions of the data need to be released on the same day due to error, there will be an additional `REVISION` field incremented on the end of the version. Thus, if three revisions need to be published on October 31st, 2015, the last release would be `3.2015.1031.2` (remember that the first release has an implied `0`.) [registry]: https://www.iana.org/assignments/media-types/media-types.xhtml [Semantic Versioning]: http://semver.org/ mime-types-data-3.2015.1120/Manifest.txt0000644000175000017500000000056712627041214020772 0ustar balasankarcbalasankarc.gitignore .hoerc Code-of-Conduct.md Contributing.md History.md Licence.md Manifest.txt README.md Rakefile data/mime-types.json data/mime.content_type.column data/mime.docs.column data/mime.encoding.column data/mime.flags.column data/mime.friendly.column data/mime.pext.column data/mime.use_instead.column data/mime.xrefs.column lib/mime-types-data.rb lib/mime/types/data.rb mime-types-data-3.2015.1120/Contributing.md0000644000175000017500000001173212627041214021450 0ustar balasankarcbalasankarc## Contributing Contributions to mime-types-data is encouraged in any form: a bug report, new MIME type defintions, or additional code to help manage the MIME types. As with many of my projects, I have a few suggestions for improving the chance of acceptance of your code contributions: * The support files are written in Ruby and should remain in the coding style that already exists, and I use hoe for releasing the mime-types-data RubyGem. * Use a thoughtfully-named topic branch that contains your change. Rebase your commits into logical chunks as necessary. * Use [quality commit messages][qcm]. * Do not change the version number; when your patch is accepted and a release is made, the version will be updated at that point. * Submit a GitHub pull request with your changes. * New or changed behaviours require new or updated documentation. Although mime-types-data was extracted from the [Ruby mime-types][rmt] gem and the support files are written in Ruby, the *target* of mime-types-data is any implementation that wishes to use the data as a MIME types registry, so I am particularly interested in tools that will create a mime-types-data package for other languages. ### Adding or Modifying MIME Types The Ruby mime-types gem loads its data from files encoded in the `data` directory in this gem by loading `mime-types-data` and reading MIME::Types::Data::PATH. These files are compiled files from the collection of data in the `types` directory. 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`. The format is as shown below for the `application/xml` MIME type in `type-lists/application.yml`. ```yaml - !ruby/object:MIME::Type content-type: application/xml encoding: 8bit extensions: - xml - xsl references: - IANA - RFC3023 xrefs: !ruby/hash:MIME::Types::Container rfc: - rfc3023 registered: true ``` There are other fields that can be added, matching the fields discussed in the documentation for MIME::Type. Pull requests for MIME types should just contain the changes to the YAML files for the new or modified MIME types; I will convert the YAML files to JSON prior to a new release. I would rather not have 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 `rake convert:yaml:json` to convert the YAML to JSON, or `rake convert:yaml:columnar` 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 ### Test Dependencies mime-types-data uses Ryan Davis’s {Hoe}[https://github.com/seattlerb/hoe] to manage the release process, and it adds a number of rake tasks. You will mostly be interested in: $ rake which runs the tests the same way that: $ rake test $ rake travis will do. To assist with the installation of the development dependencies for mime-types-data, I have provided the simplest possible Gemfile pointing to the (generated) `mime-types-data.gemspec` file. This will permit you to do: $ bundle install to get the development dependencies. If you aleady have `hoe` installed, you can accomplish the same thing with: $ rake newb 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 ### Workflow Here's the most direct way to get your work merged into the project: * Fork the project. * Clone down your fork (`git clone git://github.com//mime-types-data.git`). * Create a topic branch to contain your change (`git checkout -b my\_awesome\_feature`). * Hack away, add tests. Not necessarily in that order. * Make sure everything still passes by running `rake`. * If necessary, rebase your commits into logical chunks, without errors. * Push the branch up (`git push origin my\_awesome\_feature`). * Create a pull request against mime-types/mime-types-data and describe what your change does and the why you think it should be merged. ### Contributors * Austin Ziegler created mime-types. Thanks to everyone else who has contributed to mime-types: * Aaron Patterson * Aggelos Avgerinos * Andre Pankratz * Andy Brody * Arnaud Meuret * Brandon Galbraith * Chris Gat * David Genord * Eric Marden * Garret Alfert * Godfrey Chan * Greg Brockman * Hans de Graaff * Henrik Hodne * Jeremy Evans * Juanito Fatas * Łukasz Śliwa * Keerthi Siva * Ken Ip * Martin d'Allens * Mauricio Linhares * nycvotes-dev * Postmodern * Richard Hirner * Richard Hurt * Richard Schneeman * Tibor Szolár * Todd Carrico [qcm]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html [rmt]: https://github.com/mime-types/ruby-mime-types/ mime-types-data-3.2015.1120/Licence.md0000644000175000017500000000222112627041214020334 0ustar balasankarcbalasankarc## Licence * Copyright 2003–2015 Austin Ziegler. The software in this repository is made available under the MIT license. ### MIT License Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.