From 0ca1a37b1b4a009e9d3d317b01919cb0aea01f60 Mon Sep 17 00:00:00 2001 From: Noel De Martin Date: Thu, 8 Oct 2020 12:36:16 +0200 Subject: [PATCH] MOBILE-3320 lint: Fix linting in mimetype service --- .eslintrc.js | 3 +- src/app/services/utils/mimetype.ts | 90 +- src/assets/exttomime.json | 1272 ++++++++++++++++++++++++++++ src/assets/mimetoext.json | 1095 ++++++++++++++++++++++++ 4 files changed, 2425 insertions(+), 35 deletions(-) create mode 100644 src/assets/exttomime.json create mode 100644 src/assets/mimetoext.json diff --git a/.eslintrc.js b/.eslintrc.js index ab6094823..94c70a29c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -56,7 +56,7 @@ module.exports = { accessibility: 'no-public', }, ], - '@typescript-eslint/indent': 'error', + '@typescript-eslint/indent': 'off', '@typescript-eslint/member-delimiter-style': [ 'error', { @@ -169,7 +169,6 @@ module.exports = { 'error', 'unix', ], - 'lines-between-class-members': ['error', 'always'], 'max-len': [ 'error', { diff --git a/src/app/services/utils/mimetype.ts b/src/app/services/utils/mimetype.ts index 9437ce74d..f4761ebed 100644 --- a/src/app/services/utils/mimetype.ts +++ b/src/app/services/utils/mimetype.ts @@ -13,36 +13,54 @@ // limitations under the License. import { Injectable } from '@angular/core'; +import { FileEntry } from '@ionic-native/file'; import { CoreFile } from '@services/file'; import { CoreTextUtils } from '@services/utils/text'; import { makeSingleton, Translate, Http } from '@singletons/core.singletons'; import { CoreLogger } from '@singletons/logger'; +import { CoreWSExternalFile } from '@services/ws'; + +interface MimeTypeInfo { + type: string; + icon?: string; + groups?: string[]; + + // eslint-disable-next-line id-blacklist + string?: string; +} + +interface MimeTypeGroupInfo { + mimetypes: string[]; + extensions: string[]; +} + +const EXTENSION_REGEX = /^[a-z0-9]+$/; /* * "Utils" service with helper functions for mimetypes and extensions. */ @Injectable() export class CoreMimetypeUtilsProvider { + protected logger: CoreLogger; - protected extToMime = {}; // Object to map extensions -> mimetypes. - protected mimeToExt = {}; // Object to map mimetypes -> extensions. - protected groupsMimeInfo = {}; // Object to hold extensions and mimetypes that belong to a certain "group" (audio, video, ...). - protected extensionRegex = /^[a-z0-9]+$/; + protected extToMime: Record = {}; + protected mimeToExt: Record = {}; + protected groupsMimeInfo: Record = {}; constructor() { this.logger = CoreLogger.getInstance('CoreMimetypeUtilsProvider'); - Http.instance.get('assets/exttomime.json').subscribe((result) => { + Http.instance.get('assets/exttomime.json').subscribe((result: Record) => { this.extToMime = result; - }, (err) => { + }, () => { // Error, shouldn't happen. }); - Http.instance.get('assets/mimetoext.json').subscribe((result) => { + Http.instance.get('assets/mimetoext.json').subscribe((result: Record) => { this.mimeToExt = result; - }, (err) => { - // Error, shouldn't happen. + }, () => { + // Error, shouldn't happen }); } @@ -148,31 +166,36 @@ export class CoreMimetypeUtilsProvider { * Set the embed type to display an embedded file and mimetype if not found. * * @param file File object. - * @paran path Alternative path that will override fileurl from file object. + * @param path Alternative path that will override fileurl from file object. */ - getEmbeddedHtml(file: any, path?: string): string { - let ext; - const filename = file.filename || file.name; + getEmbeddedHtml(file: CoreWSExternalFile | FileEntry, path?: string): string { + const filename = 'isFile' in file ? (file as FileEntry).name : file.filename; + const extension = !('isFile' in file) && file.mimetype ? this.getExtension(file.mimetype) : this.getFileExtension(filename); + const mimeType = !('isFile' in file) && file.mimetype ? file.mimetype : this.getMimeType(extension); - if (file.mimetype) { - ext = this.getExtension(file.mimetype); - } else { - ext = this.getFileExtension(filename); - file.mimetype = this.getMimeType(ext); - } + // @todo linting: See if this can be removed + (file as CoreWSExternalFile).mimetype = mimeType; - if (this.canBeEmbedded(ext)) { - file.embedType = this.getExtensionType(ext); + if (this.canBeEmbedded(extension)) { + const embedType = this.getExtensionType(extension); - path = CoreFile.instance.convertFileSrc(path || file.fileurl || file.url || (file.toURL && file.toURL())); + // @todo linting: See if this can be removed + (file as { embedType: string }).embedType = embedType; - if (file.embedType == 'image') { - return ''; - } - if (file.embedType == 'audio' || file.embedType == 'video') { - return '<' + file.embedType + ' controls title="' + filename + '" src="' + path + '">' + - '' + - ''; + path = CoreFile.instance.convertFileSrc(path ?? ('isFile' in file ? file.toURL() : file.fileurl)); + + switch (embedType) { + case 'image': + return ``; + case 'audio': + case 'video': + return [ + `<${embedType} controls title="${filename}" src="${path}">`, + ``, + ``, + ].join(''); + default: + return ''; } } @@ -290,7 +313,7 @@ export class CoreMimetypeUtilsProvider { candidate = candidate.substr(0, position); } - if (this.extensionRegex.test(candidate)) { + if (EXTENSION_REGEX.test(candidate)) { extension = candidate; } } @@ -338,7 +361,7 @@ export class CoreMimetypeUtilsProvider { * @param field The field to get. If not supplied, all the info will be returned. * @return Info for the group. */ - getGroupMimeInfo(group: string, field?: string): any { + getGroupMimeInfo(group: string, field?: string): MimeTypeGroupInfo { if (typeof this.groupsMimeInfo[group] == 'undefined') { this.fillGroupMimeInfo(group); } @@ -372,13 +395,13 @@ export class CoreMimetypeUtilsProvider { * @param capitalise If true, capitalises first character of result. * @return Type description. */ - getMimetypeDescription(obj: any, capitalise?: boolean): string { + getMimetypeDescription(obj: FileEntry | { filename: string; mimetype: string } | string, capitalise?: boolean): string { const langPrefix = 'assets.mimetypes.'; let filename = ''; let mimetype = ''; let extension = ''; - if (typeof obj == 'object' && typeof obj.file == 'function') { + if (typeof obj == 'object' && 'isFile' in obj) { // It's a FileEntry. Don't use the file function because it's asynchronous and the type isn't reliable. filename = obj.name; } else if (typeof obj == 'object') { @@ -548,6 +571,7 @@ export class CoreMimetypeUtilsProvider { return path; } + } export class CoreMimetypeUtils extends makeSingleton(CoreMimetypeUtilsProvider) {} diff --git a/src/assets/exttomime.json b/src/assets/exttomime.json new file mode 100644 index 000000000..2728d8b3d --- /dev/null +++ b/src/assets/exttomime.json @@ -0,0 +1,1272 @@ +{ +"123": {"type":"application/vnd.lotus-1-2-3"}, +"3dm": {"type":"x-world/x-3dmf"}, +"3dmf": {"type":"x-world/x-3dmf"}, +"3dml": {"type":"text/vnd.in3d.3dml"}, +"3ds": {"type":"image/x-3ds"}, +"3g2": {"type":"video/3gpp2"}, +"3gp": {"type":"video/quicktime","icon":"quicktime","string":"video","groups":["video"]}, +"7z": {"type":"application/x-7z-compressed","icon":"archive","string":"archive","groups":["archive"]}, +"a": {"type":"application/octet-stream"}, +"aab": {"type":"application/x-authorware-bin"}, +"aac": {"type":"audio/aac","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]}, +"aam": {"type":"application/x-authorware-map"}, +"aas": {"type":"application/x-authorware-seg"}, +"abc": {"type":"text/vnd.abc"}, +"abw": {"type":"application/x-abiword"}, +"ac": {"type":"application/pkix-attr-cert"}, +"acc": {"type":"application/vnd.americandynamics.acc"}, +"accdb": {"type":"application/msaccess","icon":"base"}, +"ace": {"type":"application/x-ace-compressed","icon":"archive"}, +"acgi": {"type":"text/html"}, +"acu": {"type":"application/vnd.acucobol"}, +"acutc": {"type":"application/vnd.acucorp"}, +"adp": {"type":"audio/adpcm"}, +"aep": {"type":"application/vnd.audiograph"}, +"afl": {"type":"video/animaflex"}, +"afm": {"type":"application/x-font-type1"}, +"afp": {"type":"application/vnd.ibm.modcap"}, +"ahead": {"type":"application/vnd.ahead.space"}, +"ai": {"type":"application/postscript","icon":"eps","string":"image","groups":["image"]}, +"aif": {"type":"audio/x-aiff","icon":"audio","string":"audio","groups":["audio"]}, +"aifc": {"type":"audio/x-aiff","icon":"audio","string":"audio","groups":["audio"]}, +"aiff": {"type":"audio/x-aiff","icon":"audio","string":"audio","groups":["audio"]}, +"aim": {"type":"application/x-aim"}, +"aip": {"type":"text/x-audiosoft-intra"}, +"air": {"type":"application/vnd.adobe.air-application-installer-package+zip"}, +"ait": {"type":"application/vnd.dvb.ait"}, +"ami": {"type":"application/vnd.amiga.ami"}, +"amr": {"type":"audio/amr","icon":"audio","string":"audio","groups":["audio"]}, +"ani": {"type":"application/x-navi-animation"}, +"aos": {"type":"application/x-nokia-9000-communicator-add-on-software"}, +"apk": {"type":"application/vnd.android.package-archive"}, +"appcache": {"type":"text/cache-manifest"}, +"applescript": {"type":"text/plain","icon":"text"}, +"application": {"type":"application/x-ms-application"}, +"apr": {"type":"application/vnd.lotus-approach"}, +"aps": {"type":"application/mime"}, +"arc": {"type":"application/x-freearc"}, +"arj": {"type":"application/arj"}, +"art": {"type":"image/x-jg"}, +"asa": {"type":"text/plain"}, +"asax": {"type":"application/octet-stream"}, +"asc": {"type":"text/plain","icon":"sourcecode"}, +"ascx": {"type":"text/plain"}, +"asf": {"type":"video/x-ms-asf","icon":"wmv","string":"video","groups":["video"]}, +"ashx": {"type":"text/plain"}, +"asm": {"type":"text/plain","icon":"sourcecode"}, +"asmx": {"type":"text/plain"}, +"aso": {"type":"application/vnd.accpac.simply.aso"}, +"asp": {"type":"text/plain"}, +"aspx": {"type":"text/plain"}, +"asx": {"type":"video/x-ms-asf"}, +"atc": {"type":"application/vnd.acucorp"}, +"atom": {"type":"application/atom+xml","icon":"markup"}, +"atomcat": {"type":"application/atomcat+xml","icon":"markup"}, +"atomsvc": {"type":"application/atomsvc+xml","icon":"markup"}, +"atx": {"type":"application/vnd.antix.game-component"}, +"au": {"type":"audio/au","icon":"audio","string":"audio","groups":["audio"]}, +"avi": {"type":"video/x-ms-wm","icon":"avi","string":"video","groups":["video","web_video"]}, +"avs": {"type":"video/avs-video"}, +"aw": {"type":"application/applixware"}, +"axd": {"type":"text/plain"}, +"azf": {"type":"application/vnd.airzip.filesecure.azf","icon":"archive"}, +"azs": {"type":"application/vnd.airzip.filesecure.azs","icon":"archive"}, +"azw": {"type":"application/vnd.amazon.ebook"}, +"bat": {"type":"application/x-msdownload"}, +"bcpio": {"type":"application/x-bcpio"}, +"bdf": {"type":"application/x-font-bdf"}, +"bdm": {"type":"application/vnd.syncml.dm+wbxml"}, +"bdoc": {"type":"application/x-digidoc","icon":"document","groups":["archive"]}, +"bed": {"type":"application/vnd.realvnc.bed"}, +"bh2": {"type":"application/vnd.fujitsu.oasysprs"}, +"bin": {"type":"application/octet-stream"}, +"blb": {"type":"application/x-blorb"}, +"blorb": {"type":"application/x-blorb"}, +"bm": {"type":"image/bmp","icon":"bmp","string":"image","groups":["image","web_image"]}, +"bmi": {"type":"application/vnd.bmi"}, +"bmp": {"type":"image/bmp","icon":"bmp","string":"image","groups":["image","web_image"]}, +"boo": {"type":"application/book"}, +"book": {"type":"application/vnd.framemaker"}, +"box": {"type":"application/vnd.previewsystems.box"}, +"boz": {"type":"application/x-bzip2","icon":"archive"}, +"bpk": {"type":"application/octet-stream"}, +"bsh": {"type":"application/x-bsh"}, +"btif": {"type":"image/prs.btif"}, +"bz": {"type":"application/x-bzip","icon":"archive"}, +"bz2": {"type":"application/x-bzip2","icon":"archive"}, +"c": {"type":"text/plain","icon":"sourcecode"}, +"c++": {"type":"text/plain"}, +"c11amc": {"type":"application/vnd.cluetrust.cartomobile-config"}, +"c11amz": {"type":"application/vnd.cluetrust.cartomobile-config-pkg"}, +"c4d": {"type":"application/vnd.clonk.c4group"}, +"c4f": {"type":"application/vnd.clonk.c4group"}, +"c4g": {"type":"application/vnd.clonk.c4group"}, +"c4p": {"type":"application/vnd.clonk.c4group"}, +"c4u": {"type":"application/vnd.clonk.c4group"}, +"cab": {"type":"application/vnd.ms-cab-compressed","icon":"archive"}, +"caf": {"type":"audio/x-caf"}, +"cap": {"type":"application/vnd.tcpdump.pcap"}, +"car": {"type":"application/vnd.curl.car"}, +"cat": {"type":"application/vnd.ms-pki.seccat"}, +"cb7": {"type":"application/x-cbr"}, +"cba": {"type":"application/x-cbr"}, +"cbr": {"type":"application/x-cbr"}, +"cbt": {"type":"application/x-cbr"}, +"cbz": {"type":"application/x-cbr"}, +"cc": {"type":"text/x-c"}, +"ccad": {"type":"application/clariscad"}, +"cco": {"type":"application/x-cocoa"}, +"cct": {"type":"shockwave/director","icon":"flash"}, +"ccxml": {"type":"application/ccxml+xml"}, +"cdbcmsg": {"type":"application/vnd.contact.cmsg"}, +"cdf": {"type":"application/x-netcdf"}, +"cdkey": {"type":"application/vnd.mediastation.cdkey"}, +"cdmia": {"type":"application/cdmi-capability"}, +"cdmic": {"type":"application/cdmi-container"}, +"cdmid": {"type":"application/cdmi-domain"}, +"cdmio": {"type":"application/cdmi-object"}, +"cdmiq": {"type":"application/cdmi-queue"}, +"cdoc": {"type":"application/x-digidoc","icon":"document","groups":["archive"]}, +"cdx": {"type":"chemical/x-cdx"}, +"cdxml": {"type":"application/vnd.chemdraw+xml"}, +"cdy": {"type":"application/vnd.cinderella"}, +"cer": {"type":"application/pkix-cert"}, +"cfc": {"type":"application/x-coldfusion"}, +"cfm": {"type":"application/x-coldfusion"}, +"cfs": {"type":"application/x-cfs-compressed"}, +"cgm": {"type":"image/cgm"}, +"cha": {"type":"application/x-chat"}, +"chat": {"type":"application/x-chat"}, +"chm": {"type":"application/vnd.ms-htmlhelp"}, +"chrt": {"type":"application/vnd.kde.kchart","icon":"chart"}, +"cif": {"type":"chemical/x-cif"}, +"cii": {"type":"application/vnd.anser-web-certificate-issue-initiation"}, +"cil": {"type":"application/vnd.ms-artgalry"}, +"cla": {"type":"application/vnd.claymore"}, +"class": {"type":"application/java-vm"}, +"clkk": {"type":"application/vnd.crick.clicker.keyboard"}, +"clkp": {"type":"application/vnd.crick.clicker.palette"}, +"clkt": {"type":"application/vnd.crick.clicker.template"}, +"clkw": {"type":"application/vnd.crick.clicker.wordbank"}, +"clkx": {"type":"application/vnd.crick.clicker"}, +"clp": {"type":"application/x-msclip"}, +"cmc": {"type":"application/vnd.cosmocaller"}, +"cmdf": {"type":"chemical/x-cmdf"}, +"cml": {"type":"chemical/x-cml"}, +"cmp": {"type":"application/vnd.yellowriver-custom-menu"}, +"cmx": {"type":"image/x-cmx"}, +"cod": {"type":"application/vnd.rim.cod"}, +"com": {"type":"application/x-msdownload"}, +"conf": {"type":"text/plain"}, +"cpio": {"type":"application/x-cpio"}, +"cpp": {"type":"text/plain","icon":"sourcecode"}, +"cpt": {"type":"application/mac-compactpro"}, +"crd": {"type":"application/x-mscardfile"}, +"crl": {"type":"application/pkix-crl"}, +"crt": {"type":"application/x-x509-ca-cert"}, +"crx": {"type":"application/octet-stream"}, +"cryptonote": {"type":"application/vnd.rig.cryptonote"}, +"cs": {"type":"application/x-csh","icon":"sourcecode"}, +"csh": {"type":"application/x-csh"}, +"csml": {"type":"chemical/x-csml"}, +"csp": {"type":"application/vnd.commonspace"}, +"csr": {"type":"application/pkcs10"}, +"css": {"type":"text/css","icon":"text","groups":["web_file"]}, +"cst": {"type":"application/x-director"}, +"csv": {"type":"text/csv","icon":"spreadsheet","groups":["spreadsheet"]}, +"cu": {"type":"application/cu-seeme"}, +"curl": {"type":"text/vnd.curl"}, +"cww": {"type":"application/prs.cww"}, +"cxt": {"type":"application/x-director"}, +"cxx": {"type":"text/x-c"}, +"dae": {"type":"model/vnd.collada+xml"}, +"daf": {"type":"application/vnd.mobius.daf"}, +"dart": {"type":"application/vnd.dart"}, +"dataless": {"type":"application/vnd.fdsn.seed"}, +"davmount": {"type":"application/davmount+xml"}, +"dbk": {"type":"application/docbook+xml"}, +"dcr": {"type":"application/x-director","icon":"flash"}, +"dcurl": {"type":"text/vnd.curl.dcurl"}, +"dd2": {"type":"application/vnd.oma.dd2+xml"}, +"ddd": {"type":"application/vnd.fujixerox.ddd"}, +"ddoc": {"type":"application/x-digidoc","icon":"document","groups":["archive"]}, +"deb": {"type":"application/x-debian-package"}, +"deepv": {"type":"application/x-deepv"}, +"def": {"type":"text/plain"}, +"deploy": {"type":"application/octet-stream"}, +"der": {"type":"application/x-x509-ca-cert"}, +"dfac": {"type":"application/vnd.dreamfactory"}, +"dgc": {"type":"application/x-dgc-compressed"}, +"dic": {"type":"text/x-c"}, +"dif": {"type":"video/x-dv","icon":"quicktime","string":"video","groups":["video"]}, +"dir": {"type":"application/x-director","icon":"flash"}, +"dis": {"type":"application/vnd.mobius.dis"}, +"dist": {"type":"application/octet-stream"}, +"distz": {"type":"application/octet-stream"}, +"djv": {"type":"image/vnd.djvu"}, +"djvu": {"type":"image/vnd.djvu"}, +"dl": {"type":"video/dl"}, +"dll": {"type":"application/x-msdownload"}, +"dmg": {"type":"application/octet-stream","icon":"unknown"}, +"dmp": {"type":"application/vnd.tcpdump.pcap"}, +"dms": {"type":"application/octet-stream"}, +"dna": {"type":"application/vnd.dna"}, +"doc": {"type":"application/msword","icon":"document","groups":["document"]}, +"docm": {"type":"application/vnd.ms-word.document.macroenabled.12","icon":"document"}, +"docx": {"type":"application/vnd.openxmlformats-officedocument.wordprocessingml.document","icon":"document","groups":["document"]}, +"dot": {"type":"application/msword"}, +"dotm": {"type":"application/vnd.ms-word.template.macroenabled.12","icon":"document"}, +"dotx": {"type":"application/vnd.openxmlformats-officedocument.wordprocessingml.template","icon":"document"}, +"dp": {"type":"application/vnd.osgi.dp"}, +"dpg": {"type":"application/vnd.dpgraph"}, +"dra": {"type":"audio/vnd.dra"}, +"drw": {"type":"application/drafting"}, +"dsc": {"type":"text/prs.lines.tag"}, +"dssc": {"type":"application/dssc+der"}, +"dtb": {"type":"application/x-dtbook+xml"}, +"dtd": {"type":"application/xml-dtd"}, +"dts": {"type":"audio/vnd.dts"}, +"dtshd": {"type":"audio/vnd.dts.hd"}, +"dump": {"type":"application/octet-stream"}, +"dv": {"type":"video/x-dv","icon":"quicktime","string":"video","groups":["video"]}, +"dvb": {"type":"video/vnd.dvb.file"}, +"dvi": {"type":"application/x-dvi"}, +"dwf": {"type":"model/vnd.dwf"}, +"dwg": {"type":"image/vnd.dwg"}, +"dxf": {"type":"image/vnd.dxf"}, +"dxp": {"type":"application/vnd.spotfire.dxp"}, +"dxr": {"type":"application/x-director","icon":"flash"}, +"ecelp4800": {"type":"audio/vnd.nuera.ecelp4800"}, +"ecelp7470": {"type":"audio/vnd.nuera.ecelp7470"}, +"ecelp9600": {"type":"audio/vnd.nuera.ecelp9600"}, +"ecma": {"type":"application/ecmascript"}, +"edm": {"type":"application/vnd.novadigm.edm"}, +"edx": {"type":"application/vnd.novadigm.edx"}, +"efif": {"type":"application/vnd.picsel"}, +"ei6": {"type":"application/vnd.pg.osasli"}, +"el": {"type":"text/x-script.elisp"}, +"elc": {"type":"application/octet-stream"}, +"emf": {"type":"application/x-msmetafile"}, +"eml": {"type":"message/rfc822"}, +"emma": {"type":"application/emma+xml"}, +"emz": {"type":"application/x-msmetafile"}, +"env": {"type":"application/x-envoy"}, +"eol": {"type":"audio/vnd.digital-winds"}, +"eot": {"type":"application/vnd.ms-fontobject"}, +"eps": {"type":"application/postscript","icon":"eps"}, +"epub": {"type":"application/epub+zip","icon":"epub","groups":["document"]}, +"es": {"type":"application/x-esrehber"}, +"es3": {"type":"application/vnd.eszigno3+xml"}, +"esa": {"type":"application/vnd.osgi.subsystem"}, +"esf": {"type":"application/vnd.epson.esf"}, +"et3": {"type":"application/vnd.eszigno3+xml"}, +"etx": {"type":"text/x-setext"}, +"eva": {"type":"application/x-eva"}, +"evy": {"type":"application/x-envoy"}, +"exe": {"type":"application/x-msdownload"}, +"exi": {"type":"application/exi"}, +"ext": {"type":"application/vnd.novadigm.ext"}, +"ez": {"type":"application/andrew-inset"}, +"ez2": {"type":"application/vnd.ezpix-album"}, +"ez3": {"type":"application/vnd.ezpix-package"}, +"f": {"type":"text/x-fortran"}, +"f4v": {"type":"video/mp4","icon":"flash","string":"video","groups":["video","web_video"]}, +"f77": {"type":"text/x-fortran"}, +"f90": {"type":"text/x-fortran"}, +"fbs": {"type":"image/vnd.fastbidsheet"}, +"fcdt": {"type":"application/vnd.adobe.formscentral.fcdt"}, +"fcs": {"type":"application/vnd.isac.fcs"}, +"fdf": {"type":"application/vnd.fdf","icon":"pdf"}, +"fdk": {"type":"application/octet-stream"}, +"fe_launch": {"type":"application/vnd.denovo.fcselayout-link"}, +"fg5": {"type":"application/vnd.fujitsu.oasysgp"}, +"fgd": {"type":"application/x-director"}, +"fh": {"type":"image/x-freehand"}, +"fh4": {"type":"image/x-freehand"}, +"fh5": {"type":"image/x-freehand"}, +"fh7": {"type":"image/x-freehand"}, +"fhc": {"type":"image/x-freehand"}, +"fif": {"type":"application/fractals"}, +"fig": {"type":"application/x-xfig"}, +"flac": {"type":"audio/flac","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]}, +"fli": {"type":"video/x-fli"}, +"flo": {"type":"application/vnd.micrografx.flo"}, +"flv": {"type":"video/x-flv","icon":"flash","string":"video","groups":["video","web_video"]}, +"flw": {"type":"application/vnd.kde.kivio"}, +"flx": {"type":"text/vnd.fmi.flexstor"}, +"fly": {"type":"text/vnd.fly"}, +"fm": {"type":"application/vnd.framemaker"}, +"fmf": {"type":"video/x-atomic3d-feature"}, +"fmp4": {"type":"video/mp4","icon":"mpeg","string":"video","groups":["html_video","video","web_video"]}, +"fnc": {"type":"application/vnd.frogans.fnc"}, +"for": {"type":"text/x-fortran"}, +"fpx": {"type":"image/vnd.fpx"}, +"frame": {"type":"application/vnd.framemaker"}, +"frl": {"type":"application/freeloader"}, +"fsc": {"type":"application/vnd.fsc.weblaunch"}, +"fst": {"type":"image/vnd.fst"}, +"ftc": {"type":"application/vnd.fluxtime.clip"}, +"fti": {"type":"application/vnd.anser-web-funds-transfer-initiation"}, +"funk": {"type":"audio/make"}, +"fvt": {"type":"video/vnd.fvt"}, +"fxp": {"type":"application/vnd.adobe.fxp"}, +"fxpl": {"type":"application/vnd.adobe.fxp"}, +"fzs": {"type":"application/vnd.fuzzysheet"}, +"g": {"type":"text/plain"}, +"g2w": {"type":"application/vnd.geoplan"}, +"g3": {"type":"image/g3fax"}, +"g3w": {"type":"application/vnd.geospace"}, +"gac": {"type":"application/vnd.groove-account"}, +"gallery": {"type":"application/x-smarttech-notebook","icon":"archive"}, +"gallerycollection": {"type":"application/x-smarttech-notebook","icon":"archive"}, +"galleryitem": {"type":"application/x-smarttech-notebook","icon":"archive"}, +"gam": {"type":"application/x-tads"}, +"gbr": {"type":"application/rpki-ghostbusters"}, +"gca": {"type":"application/x-gca-compressed"}, +"gdl": {"type":"model/vnd.gdl"}, +"gdoc": {"type":"application/vnd.google-apps.document","icon":"document","groups":["document"]}, +"gdraw": {"type":"application/vnd.google-apps.drawing","icon":"image","groups":["image"]}, +"geo": {"type":"application/vnd.dynageo"}, +"gex": {"type":"application/vnd.geometry-explorer"}, +"ggb": {"type":"application/vnd.geogebra.file","icon":"archive"}, +"ggt": {"type":"application/vnd.geogebra.tool","icon":"archive"}, +"ghf": {"type":"application/vnd.groove-help"}, +"gif": {"type":"image/gif","icon":"gif","string":"image","groups":["image","web_image"]}, +"gim": {"type":"application/vnd.groove-identity-message"}, +"gl": {"type":"video/gl"}, +"gml": {"type":"application/gml+xml"}, +"gmx": {"type":"application/vnd.gmx"}, +"gnumeric": {"type":"application/x-gnumeric","icon":"calc"}, +"gph": {"type":"application/vnd.flographit"}, +"gpx": {"type":"application/gpx+xml"}, +"gqf": {"type":"application/vnd.grafeq"}, +"gqs": {"type":"application/vnd.grafeq"}, +"gram": {"type":"application/srgs"}, +"gramps": {"type":"application/x-gramps-xml"}, +"gre": {"type":"application/vnd.geometry-explorer"}, +"grv": {"type":"application/vnd.groove-injector"}, +"grxml": {"type":"application/srgs+xml"}, +"gsd": {"type":"audio/x-gsm"}, +"gsf": {"type":"application/x-font-ghostscript"}, +"gsheet": {"type":"application/vnd.google-apps.spreadsheet","icon":"spreadsheet","groups":["spreadsheet"]}, +"gslides": {"type":"application/vnd.google-apps.presentation","icon":"powerpoint","groups":["presentation"]}, +"gsm": {"type":"audio/x-gsm"}, +"gsp": {"type":"application/x-gsp"}, +"gss": {"type":"application/x-gss"}, +"gtar": {"type":"application/x-gtar","icon":"archive","string":"archive","groups":["archive"]}, +"gtm": {"type":"application/vnd.groove-tool-message"}, +"gtw": {"type":"model/vnd.gtw"}, +"gv": {"type":"text/vnd.graphviz"}, +"gxf": {"type":"application/gxf"}, +"gxt": {"type":"application/vnd.geonext"}, +"gz": {"type":"application/g-zip","icon":"archive","string":"archive","groups":["archive"]}, +"gzip": {"type":"application/g-zip","icon":"archive","string":"archive","groups":["archive"]}, +"h": {"type":"text/plain","icon":"sourcecode"}, +"h261": {"type":"video/h261"}, +"h263": {"type":"video/h263"}, +"h264": {"type":"video/h264"}, +"h5p": {"type":"application/zip","icon":"h5p","string":"archive"}, +"hal": {"type":"application/vnd.hal+xml"}, +"hbci": {"type":"application/vnd.hbci"}, +"hdf": {"type":"application/x-hdf"}, +"help": {"type":"application/x-helpfile"}, +"hgl": {"type":"application/vnd.hp-hpgl"}, +"hh": {"type":"text/x-c"}, +"hlb": {"type":"text/x-script"}, +"hlp": {"type":"application/winhlp"}, +"hpg": {"type":"application/vnd.hp-hpgl"}, +"hpgl": {"type":"application/vnd.hp-hpgl"}, +"hpid": {"type":"application/vnd.hp-hpid"}, +"hpp": {"type":"text/plain","icon":"sourcecode"}, +"hps": {"type":"application/vnd.hp-hps"}, +"hqx": {"type":"application/mac-binhex40","icon":"archive","string":"archive","groups":["archive"]}, +"hta": {"type":"application/octet-stream"}, +"htc": {"type":"text/x-component","icon":"markup"}, +"htke": {"type":"application/vnd.kenameaapp"}, +"htm": {"type":"text/html","icon":"html","groups":["web_file"]}, +"html": {"type":"text/html","icon":"html","groups":["web_file"]}, +"htmls": {"type":"text/html"}, +"htt": {"type":"text/webviewhtml"}, +"htx": {"type":"text/html"}, +"hvd": {"type":"application/vnd.yamaha.hv-dic"}, +"hvp": {"type":"application/vnd.yamaha.hv-voice"}, +"hvs": {"type":"application/vnd.yamaha.hv-script"}, +"i2g": {"type":"application/vnd.intergeo"}, +"ibooks": {"type":"application/x-ibooks+zip","icon":"archive"}, +"icc": {"type":"application/vnd.iccprofile"}, +"ice": {"type":"x-conference/x-cooltalk"}, +"icm": {"type":"application/vnd.iccprofile"}, +"ico": {"type":"image/vnd.microsoft.icon","icon":"image","string":"image","groups":["image"]}, +"ics": {"type":"text/calendar","icon":"text"}, +"idc": {"type":"text/plain"}, +"ief": {"type":"image/ief"}, +"iefs": {"type":"image/ief"}, +"ifb": {"type":"text/calendar"}, +"ifm": {"type":"application/vnd.shana.informed.formdata"}, +"iges": {"type":"model/iges"}, +"igl": {"type":"application/vnd.igloader"}, +"igm": {"type":"application/vnd.insors.igm"}, +"igs": {"type":"model/iges"}, +"igx": {"type":"application/vnd.micrografx.igx"}, +"iif": {"type":"application/vnd.shana.informed.interchange"}, +"ima": {"type":"application/x-ima"}, +"imap": {"type":"application/x-httpd-imap"}, +"imp": {"type":"application/vnd.accpac.simply.imp"}, +"ims": {"type":"application/vnd.ms-ims"}, +"in": {"type":"text/plain"}, +"inf": {"type":"application/inf"}, +"ini": {"type":"text/plain"}, +"ink": {"type":"application/inkml+xml"}, +"inkml": {"type":"application/inkml+xml"}, +"ins": {"type":"application/x-internett-signup"}, +"install": {"type":"application/x-install-instructions"}, +"iota": {"type":"application/vnd.astraea-software.iota"}, +"ip": {"type":"application/x-ip2"}, +"ipa": {"type":"application/octet-stream"}, +"ipfix": {"type":"application/ipfix"}, +"ipk": {"type":"application/vnd.shana.informed.package"}, +"irm": {"type":"application/vnd.ibm.rights-management"}, +"irp": {"type":"application/vnd.irepository.package+xml"}, +"isf": {"type":"application/inspiration","icon":"isf"}, +"iso": {"type":"application/x-iso9660-image"}, +"ist": {"type":"application/inspiration.template","icon":"isf"}, +"isu": {"type":"video/x-isvideo"}, +"it": {"type":"audio/it"}, +"itp": {"type":"application/vnd.shana.informed.formtemplate"}, +"iv": {"type":"application/x-inventor"}, +"ivp": {"type":"application/vnd.immervision-ivp"}, +"ivr": {"type":"i-world/i-vrml"}, +"ivu": {"type":"application/vnd.immervision-ivu"}, +"ivy": {"type":"application/x-livescreen"}, +"jad": {"type":"text/vnd.sun.j2me.app-descriptor"}, +"jam": {"type":"application/vnd.jam"}, +"jar": {"type":"application/java-archive","icon":"archive"}, +"jav": {"type":"text/plain"}, +"java": {"type":"text/plain","icon":"sourcecode"}, +"jcb": {"type":"text/xml","icon":"markup"}, +"jcl": {"type":"text/xml","icon":"markup"}, +"jcm": {"type":"application/x-java-commerce"}, +"jcw": {"type":"text/xml","icon":"markup"}, +"jfif": {"type":"image/jpeg"}, +"jfif-tbnl": {"type":"image/jpeg"}, +"jisp": {"type":"application/vnd.jisp"}, +"jlt": {"type":"application/vnd.hp-jlyt"}, +"jmt": {"type":"text/xml","icon":"markup"}, +"jmx": {"type":"text/xml","icon":"markup"}, +"jnlp": {"type":"application/x-java-jnlp-file","icon":"markup"}, +"joda": {"type":"application/vnd.joost.joda-archive"}, +"jpe": {"type":"image/jpeg","icon":"jpeg","string":"image","groups":["image","web_image"]}, +"jpeg": {"type":"image/jpeg","icon":"jpeg","string":"image","groups":["image","web_image"]}, +"jpg": {"type":"image/jpeg","icon":"jpeg","string":"image","groups":["image","web_image"]}, +"jpgm": {"type":"video/jpm"}, +"jpgv": {"type":"video/jpeg"}, +"jpm": {"type":"video/jpm"}, +"jps": {"type":"image/x-jps"}, +"jqz": {"type":"text/xml","icon":"markup"}, +"js": {"type":"application/x-javascript","icon":"text","groups":["web_file"]}, +"json": {"type":"application/json","icon":"text"}, +"jsonml": {"type":"application/jsonml+json"}, +"jut": {"type":"image/jutvision"}, +"kar": {"type":"audio/midi"}, +"karbon": {"type":"application/vnd.kde.karbon"}, +"key": {"type":"application/pkcs8"}, +"kfo": {"type":"application/vnd.kde.kformula"}, +"kia": {"type":"application/vnd.kidspiration"}, +"kml": {"type":"application/vnd.google-earth.kml+xml"}, +"kmz": {"type":"application/vnd.google-earth.kmz"}, +"kne": {"type":"application/vnd.kinar"}, +"knp": {"type":"application/vnd.kinar"}, +"kon": {"type":"application/vnd.kde.kontour"}, +"kpr": {"type":"application/vnd.kde.kpresenter"}, +"kpt": {"type":"application/vnd.kde.kpresenter"}, +"kpxx": {"type":"application/vnd.ds-keypoint"}, +"ksh": {"type":"application/x-ksh"}, +"ksp": {"type":"application/vnd.kde.kspread"}, +"ktr": {"type":"application/vnd.kahootz"}, +"ktx": {"type":"image/ktx"}, +"ktz": {"type":"application/vnd.kahootz"}, +"kwd": {"type":"application/vnd.kde.kword"}, +"kwt": {"type":"application/vnd.kde.kword"}, +"la": {"type":"audio/nspaudio"}, +"lam": {"type":"audio/x-liveaudio"}, +"lasxml": {"type":"application/vnd.las.las+xml"}, +"latex": {"type":"application/x-latex","icon":"text"}, +"lbd": {"type":"application/vnd.llamagraphics.life-balance.desktop"}, +"lbe": {"type":"application/vnd.llamagraphics.life-balance.exchange+xml"}, +"les": {"type":"application/vnd.hhe.lesson-player"}, +"lha": {"type":"application/x-lzh-compressed"}, +"lhx": {"type":"application/octet-stream"}, +"link66": {"type":"application/vnd.route66.link66+xml"}, +"list": {"type":"text/plain"}, +"list3820": {"type":"application/vnd.ibm.modcap"}, +"listafp": {"type":"application/vnd.ibm.modcap"}, +"lma": {"type":"audio/nspaudio"}, +"lnk": {"type":"application/x-ms-shortcut"}, +"log": {"type":"text/plain"}, +"lostxml": {"type":"application/lost+xml"}, +"lrf": {"type":"application/octet-stream"}, +"lrm": {"type":"application/vnd.ms-lrm"}, +"lsp": {"type":"application/x-lisp"}, +"lst": {"type":"text/plain"}, +"lsx": {"type":"text/x-la-asf"}, +"ltf": {"type":"application/vnd.frogans.ltf"}, +"ltx": {"type":"application/x-latex"}, +"lvp": {"type":"audio/vnd.lucent.voice"}, +"lwp": {"type":"application/vnd.lotus-wordpro"}, +"lz": {"type":"application/x-lzip","icon":"archive"}, +"lzh": {"type":"application/x-lzh-compressed"}, +"lzma": {"type":"application/x-lzma"}, +"lzo": {"type":"application/x-lzop"}, +"lzx": {"type":"application/lzx"}, +"m": {"type":"text/plain","icon":"sourcecode"}, +"m13": {"type":"application/x-msmediaview"}, +"m14": {"type":"application/x-msmediaview"}, +"m1v": {"type":"video/mpeg"}, +"m21": {"type":"application/mp21"}, +"m2a": {"type":"audio/mpeg"}, +"m2v": {"type":"video/mpeg"}, +"m3a": {"type":"audio/mpeg"}, +"m3u": {"type":"audio/x-mpegurl","icon":"mp3","string":"audio","groups":["audio"]}, +"m3u8": {"type":"application/x-mpegURL","icon":"mpeg","groups":["media_source"]}, +"m4a": {"type":"audio/mp4","icon":"mp3","string":"audio","groups":["audio","html_audio","web_audio"]}, +"m4u": {"type":"video/vnd.mpegurl"}, +"m4v": {"type":"video/mp4","icon":"mpeg","string":"video","groups":["html_video","video","web_video"]}, +"ma": {"type":"application/mathematica","string":"math"}, +"mads": {"type":"application/mads+xml"}, +"mag": {"type":"application/vnd.ecowin.chart"}, +"maker": {"type":"application/vnd.framemaker"}, +"man": {"type":"text/troff"}, +"map": {"type":"application/x-navimap"}, +"mar": {"type":"application/octet-stream"}, +"mathml": {"type":"application/mathml+xml","string":"math"}, +"mb": {"type":"application/mathematica","string":"math"}, +"mbd": {"type":"application/mbedlet"}, +"mbk": {"type":"application/vnd.mobius.mbk"}, +"mbox": {"type":"application/mbox"}, +"mbz": {"type":"application/vnd.moodle.backup","icon":"moodle"}, +"mc$": {"type":"application/x-magic-cap-package-1.0"}, +"mc1": {"type":"application/vnd.medcalcdata"}, +"mcd": {"type":"application/vnd.mcd"}, +"mcf": {"type":"image/vasa"}, +"mcp": {"type":"application/netmc"}, +"mcurl": {"type":"text/vnd.curl.mcurl"}, +"mdb": {"type":"application/x-msaccess","icon":"base"}, +"mdi": {"type":"image/vnd.ms-modi"}, +"me": {"type":"text/troff"}, +"mesh": {"type":"model/mesh"}, +"meta4": {"type":"application/metalink4+xml"}, +"metalink": {"type":"application/metalink+xml"}, +"mets": {"type":"application/mets+xml"}, +"mfm": {"type":"application/vnd.mfmp"}, +"mft": {"type":"application/rpki-manifest"}, +"mgp": {"type":"application/vnd.osgeo.mapguide.package"}, +"mgz": {"type":"application/vnd.proteus.magazine"}, +"mht": {"type":"message/rfc822","icon":"archive"}, +"mhtml": {"type":"message/rfc822","icon":"archive"}, +"mid": {"type":"audio/midi"}, +"midi": {"type":"audio/midi"}, +"mie": {"type":"application/x-mie"}, +"mif": {"type":"application/vnd.mif"}, +"mime": {"type":"message/rfc822"}, +"mj2": {"type":"video/mj2"}, +"mjf": {"type":"audio/x-vnd.audioexplosion.mjuicemediafile"}, +"mjp2": {"type":"video/mj2"}, +"mjpg": {"type":"video/x-motion-jpeg"}, +"mk3d": {"type":"video/x-matroska"}, +"mka": {"type":"audio/x-matroska"}, +"mks": {"type":"video/x-matroska"}, +"mkv": {"type":"video/x-matroska"}, +"mlp": {"type":"application/vnd.dolby.mlp"}, +"mm": {"type":"application/base64"}, +"mmd": {"type":"application/vnd.chipnuts.karaoke-mmd"}, +"mme": {"type":"application/base64"}, +"mmf": {"type":"application/vnd.smaf"}, +"mmr": {"type":"image/vnd.fujixerox.edmics-mmr"}, +"mng": {"type":"video/x-mng"}, +"mny": {"type":"application/x-msmoney"}, +"mobi": {"type":"application/x-mobipocket-ebook"}, +"mod": {"type":"audio/mod"}, +"mods": {"type":"application/mods+xml"}, +"moov": {"type":"video/quicktime"}, +"mov": {"type":"video/quicktime","icon":"quicktime","string":"video","groups":["video","web_video","html_video"]}, +"movie": {"type":"video/x-sgi-movie","icon":"quicktime","string":"video","groups":["video"]}, +"mp2": {"type":"audio/mpeg"}, +"mp21": {"type":"application/mp21"}, +"mp2a": {"type":"audio/mpeg"}, +"mp3": {"type":"audio/mp3","icon":"mp3","string":"audio","groups":["audio","html_audio","web_audio"]}, +"mp4": {"type":"video/mp4","icon":"mpeg","string":"video","groups":["html_video","video","web_video"]}, +"mp4a": {"type":"audio/mp4","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]}, +"mp4s": {"type":"application/mp4"}, +"mp4v": {"type":"video/mp4","icon":"mpeg","string":"video","groups":["video","web_video"]}, +"mpa": {"type":"audio/mpeg"}, +"mpc": {"type":"application/vnd.mophun.certificate"}, +"mpd": {"type":"application/dash+xml","icon":"mpeg","groups":["media_source"]}, +"mpe": {"type":"video/mpeg","icon":"mpeg","string":"video","groups":["video","web_video"]}, +"mpeg": {"type":"video/mpeg","icon":"mpeg","string":"video","groups":["video","web_video"]}, +"mpg": {"type":"video/mpeg","icon":"mpeg","string":"video","groups":["video","web_video"]}, +"mpg4": {"type":"video/mp4"}, +"mpga": {"type":"audio/mpeg"}, +"mpkg": {"type":"application/vnd.apple.installer+xml"}, +"mpm": {"type":"application/vnd.blueice.multipass"}, +"mpn": {"type":"application/vnd.mophun.application"}, +"mpp": {"type":"application/vnd.ms-project"}, +"mpr": {"type":"application/vnd.moodle.profiling","icon":"moodle"}, +"mpt": {"type":"application/vnd.ms-project"}, +"mpv": {"type":"application/x-project"}, +"mpx": {"type":"application/x-project"}, +"mpy": {"type":"application/vnd.ibm.minipay"}, +"mqy": {"type":"application/vnd.mobius.mqy"}, +"mrc": {"type":"application/marc"}, +"mrcx": {"type":"application/marcxml+xml"}, +"ms": {"type":"text/troff"}, +"mscml": {"type":"application/mediaservercontrol+xml"}, +"mseed": {"type":"application/vnd.fdsn.mseed"}, +"mseq": {"type":"application/vnd.mseq"}, +"msf": {"type":"application/vnd.epson.msf"}, +"msh": {"type":"model/mesh"}, +"msi": {"type":"application/x-msdownload"}, +"msl": {"type":"application/vnd.mobius.msl"}, +"msty": {"type":"application/vnd.muvee.style"}, +"mts": {"type":"model/vnd.mts"}, +"mus": {"type":"application/vnd.musician"}, +"musicxml": {"type":"application/vnd.recordare.musicxml+xml"}, +"mv": {"type":"video/x-sgi-movie"}, +"mvb": {"type":"application/x-msmediaview"}, +"mw": {"type":"application/maple","icon":"math"}, +"mwf": {"type":"application/vnd.mfer"}, +"mws": {"type":"application/maple","icon":"math"}, +"mxf": {"type":"application/mxf"}, +"mxl": {"type":"application/vnd.recordare.musicxml"}, +"mxml": {"type":"application/xv+xml"}, +"mxs": {"type":"application/vnd.triscape.mxs"}, +"mxu": {"type":"video/vnd.mpegurl"}, +"my": {"type":"audio/make"}, +"mzz": {"type":"application/x-vnd.audioexplosion.mzz"}, +"n-gage": {"type":"application/vnd.nokia.n-gage.symbian.install"}, +"n3": {"type":"text/n3"}, +"nap": {"type":"image/naplps"}, +"naplps": {"type":"image/naplps"}, +"nb": {"type":"application/mathematica","string":"math"}, +"nbk": {"type":"application/x-smarttech-notebook","icon":"archive"}, +"nbp": {"type":"application/vnd.wolfram.player"}, +"nc": {"type":"application/x-netcdf"}, +"ncm": {"type":"application/vnd.nokia.configuration-message"}, +"ncx": {"type":"application/x-dtbncx+xml"}, +"nfo": {"type":"text/x-nfo"}, +"ngdat": {"type":"application/vnd.nokia.n-gage.data"}, +"nif": {"type":"image/x-niff"}, +"niff": {"type":"image/x-niff"}, +"nitf": {"type":"application/vnd.nitf"}, +"nix": {"type":"application/x-mix-transfer"}, +"nlu": {"type":"application/vnd.neurolanguage.nlu"}, +"nml": {"type":"application/vnd.enliven"}, +"nnd": {"type":"application/vnd.noblenet-directory"}, +"nns": {"type":"application/vnd.noblenet-sealer"}, +"nnw": {"type":"application/vnd.noblenet-web"}, +"notebook": {"type":"application/x-smarttech-notebook","icon":"archive"}, +"npx": {"type":"image/vnd.net-fpx"}, +"nsc": {"type":"application/x-conference"}, +"nsf": {"type":"application/vnd.lotus-notes"}, +"ntf": {"type":"application/vnd.nitf"}, +"nvd": {"type":"application/x-navidoc"}, +"nzb": {"type":"application/x-nzb"}, +"o": {"type":"application/octet-stream"}, +"oa2": {"type":"application/vnd.fujitsu.oasys2"}, +"oa3": {"type":"application/vnd.fujitsu.oasys3"}, +"oas": {"type":"application/vnd.fujitsu.oasys"}, +"obd": {"type":"application/x-msbinder"}, +"obj": {"type":"application/x-tgif"}, +"oda": {"type":"application/oda"}, +"odb": {"type":"application/vnd.oasis.opendocument.database","icon":"base"}, +"odc": {"type":"application/vnd.oasis.opendocument.chart","icon":"chart"}, +"odf": {"type":"application/vnd.oasis.opendocument.formula","icon":"math"}, +"odft": {"type":"application/vnd.oasis.opendocument.formula-template","icon":"math"}, +"odg": {"type":"application/vnd.oasis.opendocument.graphics","icon":"draw"}, +"odi": {"type":"application/vnd.oasis.opendocument.image","icon":"draw"}, +"odm": {"type":"application/vnd.oasis.opendocument.text-master","icon":"writer"}, +"odp": {"type":"application/vnd.oasis.opendocument.presentation","icon":"impress","groups":["presentation"]}, +"ods": {"type":"application/vnd.oasis.opendocument.spreadsheet","icon":"calc","groups":["spreadsheet"]}, +"odt": {"type":"application/vnd.oasis.opendocument.text","icon":"writer","groups":["document"]}, +"oga": {"type":"audio/ogg","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]}, +"ogg": {"type":"audio/ogg","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]}, +"ogv": {"type":"video/ogg","icon":"video","string":"video","groups":["html_video","video","web_video"]}, +"ogx": {"type":"application/ogg"}, +"omc": {"type":"application/x-omc"}, +"omcd": {"type":"application/x-omcdatamaker"}, +"omcr": {"type":"application/x-omcregerator"}, +"omdoc": {"type":"application/omdoc+xml"}, +"onepkg": {"type":"application/onenote"}, +"onetmp": {"type":"application/onenote"}, +"onetoc": {"type":"application/onenote"}, +"onetoc2": {"type":"application/onenote"}, +"opf": {"type":"application/oebps-package+xml"}, +"opml": {"type":"text/x-opml"}, +"oprc": {"type":"application/vnd.palm"}, +"org": {"type":"application/vnd.lotus-organizer"}, +"osf": {"type":"application/vnd.yamaha.openscoreformat"}, +"osfpvg": {"type":"application/vnd.yamaha.openscoreformat.osfpvg+xml"}, +"otc": {"type":"application/vnd.oasis.opendocument.chart-template","icon":"chart"}, +"otf": {"type":"application/x-font-otf"}, +"otg": {"type":"application/vnd.oasis.opendocument.graphics-template","icon":"draw"}, +"oth": {"type":"application/vnd.oasis.opendocument.text-web","icon":"oth","groups":["document"]}, +"oti": {"type":"application/vnd.oasis.opendocument.image-template"}, +"otp": {"type":"application/vnd.oasis.opendocument.presentation-template","icon":"impress","groups":["presentation"]}, +"ots": {"type":"application/vnd.oasis.opendocument.spreadsheet-template","icon":"calc","groups":["spreadsheet"]}, +"ott": {"type":"application/vnd.oasis.opendocument.text-template","icon":"writer","groups":["document"]}, +"oxps": {"type":"application/oxps"}, +"oxt": {"type":"application/vnd.openofficeorg.extension"}, +"p": {"type":"text/x-pascal"}, +"p10": {"type":"application/pkcs10"}, +"p12": {"type":"application/x-pkcs12"}, +"p7a": {"type":"application/x-pkcs7-signature"}, +"p7b": {"type":"application/x-pkcs7-certificates"}, +"p7c": {"type":"application/pkcs7-mime"}, +"p7m": {"type":"application/pkcs7-mime"}, +"p7r": {"type":"application/x-pkcs7-certreqresp"}, +"p7s": {"type":"application/pkcs7-signature"}, +"p8": {"type":"application/pkcs8"}, +"part": {"type":"application/pro_eng"}, +"pas": {"type":"text/x-pascal"}, +"paw": {"type":"application/vnd.pawaafile"}, +"pbd": {"type":"application/vnd.powerbuilder6"}, +"pbm": {"type":"image/x-portable-bitmap"}, +"pcap": {"type":"application/vnd.tcpdump.pcap"}, +"pcf": {"type":"application/x-font-pcf"}, +"pcl": {"type":"application/vnd.hp-pcl"}, +"pclxl": {"type":"application/vnd.hp-pclxl"}, +"pct": {"type":"image/pict","icon":"image","string":"image","groups":["image"]}, +"pcurl": {"type":"application/vnd.curl.pcurl"}, +"pcx": {"type":"image/x-pcx"}, +"pdb": {"type":"application/vnd.palm"}, +"pdf": {"type":"application/pdf","icon":"pdf","groups":["document"]}, +"pem": {"type":"application/x-pem-file"}, +"pfa": {"type":"application/x-font-type1"}, +"pfb": {"type":"application/x-font-type1"}, +"pfm": {"type":"application/x-font-type1"}, +"pfr": {"type":"application/font-tdpfr"}, +"pfunk": {"type":"audio/make"}, +"pfx": {"type":"application/x-pkcs12"}, +"pgm": {"type":"image/x-portable-graymap"}, +"pgn": {"type":"application/x-chess-pgn"}, +"pgp": {"type":"application/pgp-encrypted"}, +"phar": {"type":"application/octet-stream"}, +"php": {"type":"text/plain","icon":"sourcecode"}, +"phps": {"type":"application/x-httpd-phps"}, +"pic": {"type":"image/pict","icon":"image","string":"image","groups":["image"]}, +"pict": {"type":"image/pict","icon":"image","string":"image","groups":["image"]}, +"pkg": {"type":"application/octet-stream"}, +"pki": {"type":"application/pkixcmp"}, +"pkipath": {"type":"application/pkix-pkipath"}, +"pko": {"type":"application/vnd.ms-pki.pko"}, +"pl": {"type":"text/plain"}, +"plb": {"type":"application/vnd.3gpp.pic-bw-large"}, +"plc": {"type":"application/vnd.mobius.plc"}, +"plf": {"type":"application/vnd.pocketlearn"}, +"plist": {"type":"application/x-plist"}, +"pls": {"type":"application/pls+xml"}, +"plx": {"type":"application/x-pixclscript"}, +"pm": {"type":"image/x-xpixmap"}, +"pm4": {"type":"application/x-pagemaker"}, +"pm5": {"type":"application/x-pagemaker"}, +"pml": {"type":"application/vnd.ctc-posml"}, +"png": {"type":"image/png","icon":"png","string":"image","groups":["image","web_image"]}, +"pnm": {"type":"image/x-portable-anymap"}, +"portpkg": {"type":"application/vnd.macports.portpkg"}, +"pot": {"type":"application/vnd.ms-powerpoint","icon":"powerpoint","groups":["presentation"]}, +"potm": {"type":"application/vnd.ms-powerpoint.template.macroenabled.12","icon":"powerpoint","groups":["presentation"]}, +"potx": {"type":"application/vnd.openxmlformats-officedocument.presentationml.template","icon":"powerpoint","groups":["presentation"]}, +"pov": {"type":"model/x-pov"}, +"ppa": {"type":"application/vnd.ms-powerpoint","icon":"powerpoint","groups":["presentation"]}, +"ppam": {"type":"application/vnd.ms-powerpoint.addin.macroenabled.12","icon":"powerpoint","groups":["presentation"]}, +"ppd": {"type":"application/vnd.cups-ppd"}, +"ppm": {"type":"image/x-portable-pixmap"}, +"pps": {"type":"application/vnd.ms-powerpoint","icon":"powerpoint","groups":["presentation"]}, +"ppsm": {"type":"application/vnd.ms-powerpoint.slideshow.macroenabled.12","icon":"powerpoint","groups":["presentation"]}, +"ppsx": {"type":"application/vnd.openxmlformats-officedocument.presentationml.slideshow","icon":"powerpoint","groups":["presentation"]}, +"ppt": {"type":"application/vnd.ms-powerpoint","icon":"powerpoint","groups":["presentation"]}, +"pptm": {"type":"application/vnd.ms-powerpoint.presentation.macroenabled.12","icon":"powerpoint","groups":["presentation"]}, +"pptx": {"type":"application/vnd.openxmlformats-officedocument.presentationml.presentation","icon":"powerpoint","groups":["presentation"]}, +"ppz": {"type":"application/mspowerpoint"}, +"pqa": {"type":"application/vnd.palm"}, +"prc": {"type":"application/x-mobipocket-ebook"}, +"pre": {"type":"application/vnd.lotus-freelance"}, +"prf": {"type":"application/pics-rules"}, +"prt": {"type":"application/pro_eng"}, +"ps": {"type":"application/postscript","icon":"pdf"}, +"psb": {"type":"application/vnd.3gpp.pic-bw-small"}, +"psd": {"type":"image/vnd.adobe.photoshop","icon":"psd"}, +"psf": {"type":"application/x-font-linux-psf"}, +"pskcxml": {"type":"application/pskc+xml"}, +"ptid": {"type":"application/vnd.pvi.ptid1"}, +"pub": {"type":"application/x-mspublisher","icon":"publisher","groups":["presentation"]}, +"pvb": {"type":"application/vnd.3gpp.pic-bw-var"}, +"pvu": {"type":"paleovu/x-pv"}, +"pwn": {"type":"application/vnd.3m.post-it-notes"}, +"pwz": {"type":"application/vnd.ms-powerpoint","icon":"powerpoint","groups":["presentation"]}, +"py": {"type":"text/x-script.phyton"}, +"pya": {"type":"audio/vnd.ms-playready.media.pya"}, +"pyc": {"type":"application/x-bytecode.python"}, +"pyv": {"type":"video/vnd.ms-playready.media.pyv"}, +"qam": {"type":"application/vnd.epson.quickanime"}, +"qbo": {"type":"application/vnd.intu.qbo"}, +"qcp": {"type":"audio/vnd.qcelp"}, +"qd3": {"type":"x-world/x-3dmf"}, +"qd3d": {"type":"x-world/x-3dmf"}, +"qfx": {"type":"application/vnd.intu.qfx"}, +"qif": {"type":"image/x-quicktime"}, +"qps": {"type":"application/vnd.publishare-delta-tree"}, +"qt": {"type":"video/quicktime","icon":"quicktime","string":"video","groups":["video","web_video"]}, +"qtc": {"type":"video/x-qtc"}, +"qti": {"type":"image/x-quicktime"}, +"qtif": {"type":"image/x-quicktime"}, +"qwd": {"type":"application/vnd.quark.quarkxpress"}, +"qwt": {"type":"application/vnd.quark.quarkxpress"}, +"qxb": {"type":"application/vnd.quark.quarkxpress"}, +"qxd": {"type":"application/vnd.quark.quarkxpress"}, +"qxl": {"type":"application/vnd.quark.quarkxpress"}, +"qxt": {"type":"application/vnd.quark.quarkxpress"}, +"ra": {"type":"audio/x-realaudio-plugin","icon":"audio","string":"audio","groups":["audio","web_audio"]}, +"ram": {"type":"audio/x-pn-realaudio-plugin","icon":"audio","string":"audio","groups":["audio"]}, +"rar": {"type":"application/x-rar-compressed","icon":"archive","string":"archive","groups":["archive"]}, +"ras": {"type":"image/x-cmu-raster"}, +"rast": {"type":"image/cmu-raster"}, +"rb": {"type":"text/plain"}, +"rcprofile": {"type":"application/vnd.ipunplugged.rcprofile"}, +"rdf": {"type":"application/rdf+xml"}, +"rdz": {"type":"application/vnd.data-vision.rdz"}, +"rep": {"type":"application/vnd.businessobjects"}, +"res": {"type":"application/x-dtbresource+xml"}, +"resx": {"type":"text/xml"}, +"rexx": {"type":"text/x-script.rexx"}, +"rf": {"type":"image/vnd.rn-realflash"}, +"rgb": {"type":"image/x-rgb"}, +"rhb": {"type":"text/xml","icon":"markup"}, +"rif": {"type":"application/reginfo+xml"}, +"rip": {"type":"audio/vnd.rip"}, +"ris": {"type":"application/x-research-info-systems"}, +"rl": {"type":"application/resource-lists+xml"}, +"rlc": {"type":"image/vnd.fujixerox.edmics-rlc"}, +"rld": {"type":"application/resource-lists-diff+xml"}, +"rm": {"type":"audio/x-pn-realaudio-plugin","icon":"audio","string":"audio","groups":["audio"]}, +"rmi": {"type":"audio/midi"}, +"rmm": {"type":"audio/x-pn-realaudio"}, +"rmp": {"type":"audio/x-pn-realaudio-plugin"}, +"rms": {"type":"application/vnd.jcp.javame.midlet-rms"}, +"rmvb": {"type":"application/vnd.rn-realmedia-vbr","icon":"video","string":"video","groups":["video"]}, +"rnc": {"type":"application/relax-ng-compact-syntax"}, +"rng": {"type":"application/ringing-tones"}, +"rnx": {"type":"application/vnd.rn-realplayer"}, +"roa": {"type":"application/rpki-roa"}, +"roff": {"type":"text/troff"}, +"rp": {"type":"image/vnd.rn-realpix"}, +"rp9": {"type":"application/vnd.cloanto.rp9"}, +"rpm": {"type":"application/x-rpm"}, +"rpss": {"type":"application/vnd.nokia.radio-presets"}, +"rpst": {"type":"application/vnd.nokia.radio-preset"}, +"rq": {"type":"application/sparql-query"}, +"rs": {"type":"application/rls-services+xml"}, +"rsd": {"type":"application/rsd+xml"}, +"rss": {"type":"application/rss+xml"}, +"rt": {"type":"text/richtext"}, +"rtf": {"type":"text/rtf","icon":"text","groups":["document"]}, +"rtx": {"type":"text/richtext","icon":"text"}, +"rv": {"type":"audio/x-pn-realaudio-plugin","icon":"audio","string":"video","groups":["video"]}, +"s": {"type":"text/x-asm"}, +"s3m": {"type":"audio/s3m"}, +"saf": {"type":"application/vnd.yamaha.smaf-audio"}, +"safariextz": {"type":"application/octet-stream"}, +"sass": {"type":"text/x-sass"}, +"saveme": {"type":"application/octet-stream"}, +"sbk": {"type":"application/x-tbook"}, +"sbml": {"type":"application/sbml+xml"}, +"sc": {"type":"application/vnd.ibm.secure-container"}, +"scd": {"type":"application/x-msschedule"}, +"scm": {"type":"application/vnd.lotus-screencam"}, +"scq": {"type":"application/scvp-cv-request"}, +"scs": {"type":"application/scvp-cv-response"}, +"scss": {"type":"text/x-scss","icon":"text","groups":["web_file"]}, +"scurl": {"type":"text/vnd.curl.scurl"}, +"sda": {"type":"application/vnd.stardivision.draw","icon":"draw"}, +"sdc": {"type":"application/vnd.stardivision.calc","icon":"calc"}, +"sdd": {"type":"application/vnd.stardivision.impress","icon":"impress"}, +"sdkd": {"type":"application/vnd.solent.sdkm+xml"}, +"sdkm": {"type":"application/vnd.solent.sdkm+xml"}, +"sdml": {"type":"text/plain"}, +"sdp": {"type":"application/sdp"}, +"sdr": {"type":"application/sounder"}, +"sdw": {"type":"application/vnd.stardivision.writer","icon":"writer"}, +"sea": {"type":"application/sea"}, +"see": {"type":"application/vnd.seemail"}, +"seed": {"type":"application/vnd.fdsn.seed"}, +"sema": {"type":"application/vnd.sema"}, +"semd": {"type":"application/vnd.semd"}, +"semf": {"type":"application/vnd.semf"}, +"ser": {"type":"application/java-serialized-object"}, +"set": {"type":"application/set"}, +"setpay": {"type":"application/set-payment-initiation"}, +"setreg": {"type":"application/set-registration-initiation"}, +"sfd-hdstx": {"type":"application/vnd.hydrostatix.sof-data"}, +"sfs": {"type":"application/vnd.spotfire.sfs"}, +"sfv": {"type":"text/x-sfv"}, +"sgi": {"type":"image/sgi"}, +"sgl": {"type":"application/vnd.stardivision.writer-global"}, +"sgm": {"type":"text/sgml"}, +"sgml": {"type":"text/sgml"}, +"sh": {"type":"application/x-sh","icon":"sourcecode"}, +"shar": {"type":"application/x-shar"}, +"shf": {"type":"application/shf+xml"}, +"shtml": {"type":"text/html"}, +"sid": {"type":"image/x-mrsid-image"}, +"sig": {"type":"application/pgp-signature"}, +"sil": {"type":"audio/silk"}, +"silo": {"type":"model/mesh"}, +"sis": {"type":"application/vnd.symbian.install"}, +"sisx": {"type":"application/vnd.symbian.install"}, +"sit": {"type":"application/x-stuffit","icon":"archive","string":"archive","groups":["archive"]}, +"sitx": {"type":"application/x-stuffitx"}, +"skd": {"type":"application/vnd.koan"}, +"skm": {"type":"application/vnd.koan"}, +"skp": {"type":"application/vnd.koan"}, +"skt": {"type":"application/vnd.koan"}, +"sl": {"type":"application/x-seelogo"}, +"sldm": {"type":"application/vnd.ms-powerpoint.slide.macroenabled.12","icon":"powerpoint","groups":["presentation"]}, +"sldx": {"type":"application/vnd.openxmlformats-officedocument.presentationml.slide"}, +"slt": {"type":"application/vnd.epson.salt"}, +"sm": {"type":"application/vnd.stepmania.stepchart"}, +"smf": {"type":"application/vnd.stardivision.math","icon":"math"}, +"smi": {"type":"application/smil","icon":"text"}, +"smil": {"type":"application/smil","icon":"text"}, +"smv": {"type":"video/x-smv"}, +"smzip": {"type":"application/vnd.stepmania.package"}, +"snd": {"type":"audio/basic"}, +"snf": {"type":"application/x-font-snf"}, +"so": {"type":"application/octet-stream"}, +"sol": {"type":"application/solids"}, +"spc": {"type":"application/x-pkcs7-certificates"}, +"spf": {"type":"application/vnd.yamaha.smaf-phrase"}, +"spl": {"type":"application/x-futuresplash"}, +"spot": {"type":"text/vnd.in3d.spot"}, +"spp": {"type":"application/scvp-vp-response"}, +"spq": {"type":"application/scvp-vp-request"}, +"spr": {"type":"application/x-sprite"}, +"sprite": {"type":"application/x-sprite"}, +"spx": {"type":"audio/ogg"}, +"sql": {"type":"application/x-sql"}, +"sqt": {"type":"text/xml","icon":"markup"}, +"src": {"type":"application/x-wais-source"}, +"srt": {"type":"application/x-subrip"}, +"sru": {"type":"application/sru+xml"}, +"srx": {"type":"application/sparql-results+xml"}, +"ssdl": {"type":"application/ssdl+xml"}, +"sse": {"type":"application/vnd.kodak-descriptor"}, +"ssf": {"type":"application/vnd.epson.ssf"}, +"ssi": {"type":"text/x-server-parsed-html"}, +"ssm": {"type":"application/streamingmedia"}, +"ssml": {"type":"application/ssml+xml"}, +"sst": {"type":"application/vnd.ms-pki.certstore"}, +"st": {"type":"application/vnd.sailingtracker.track"}, +"stc": {"type":"application/vnd.sun.xml.calc.template","icon":"calc"}, +"std": {"type":"application/vnd.sun.xml.draw.template","icon":"draw"}, +"step": {"type":"application/step"}, +"stf": {"type":"application/vnd.wt.stf"}, +"sti": {"type":"application/vnd.sun.xml.impress.template","icon":"impress","groups":["presentation"]}, +"stk": {"type":"application/hyperstudio"}, +"stl": {"type":"application/vnd.ms-pki.stl"}, +"stp": {"type":"application/step"}, +"str": {"type":"application/vnd.pg.format"}, +"stw": {"type":"application/vnd.sun.xml.writer.template","icon":"writer"}, +"styl": {"type":"text/x-styl"}, +"sub": {"type":"image/vnd.dvb.subtitle"}, +"sus": {"type":"application/vnd.sus-calendar"}, +"susp": {"type":"application/vnd.sus-calendar"}, +"sv4cpio": {"type":"application/x-sv4cpio"}, +"sv4crc": {"type":"application/x-sv4crc"}, +"svc": {"type":"application/vnd.dvb.service"}, +"svd": {"type":"application/vnd.svd"}, +"svf": {"type":"image/vnd.dwg"}, +"svg": {"type":"image/svg+xml","icon":"image","string":"image","groups":["image","web_image"]}, +"svgz": {"type":"image/svg+xml","icon":"image","string":"image","groups":["image","web_image"]}, +"svr": {"type":"application/x-world"}, +"swa": {"type":"application/x-director","icon":"flash"}, +"swf": {"type":"application/x-shockwave-flash","icon":"flash","groups":["video"]}, +"swfl": {"type":"application/x-shockwave-flash","icon":"flash","groups":["video"]}, +"swi": {"type":"application/vnd.aristanetworks.swi"}, +"sxc": {"type":"application/vnd.sun.xml.calc","icon":"calc"}, +"sxd": {"type":"application/vnd.sun.xml.draw","icon":"draw"}, +"sxg": {"type":"application/vnd.sun.xml.writer.global","icon":"writer"}, +"sxi": {"type":"application/vnd.sun.xml.impress","icon":"impress","groups":["presentation"]}, +"sxm": {"type":"application/vnd.sun.xml.math","icon":"math"}, +"sxw": {"type":"application/vnd.sun.xml.writer","icon":"writer"}, +"t": {"type":"text/troff"}, +"t3": {"type":"application/x-t3vm-image"}, +"taglet": {"type":"application/vnd.mynfc"}, +"talk": {"type":"text/x-speech"}, +"tao": {"type":"application/vnd.tao.intent-module-archive"}, +"tar": {"type":"application/x-tar","icon":"archive","string":"archive","groups":["archive"]}, +"tbk": {"type":"application/toolbook"}, +"tcap": {"type":"application/vnd.3gpp2.tcap"}, +"tcl": {"type":"application/x-tcl"}, +"tcsh": {"type":"text/x-script.tcsh"}, +"teacher": {"type":"application/vnd.smart.teacher"}, +"tei": {"type":"application/tei+xml"}, +"teicorpus": {"type":"application/tei+xml"}, +"tex": {"type":"application/x-tex","icon":"text"}, +"texi": {"type":"application/x-texinfo","icon":"text"}, +"texinfo": {"type":"application/x-texinfo","icon":"text"}, +"text": {"type":"text/plain"}, +"tfi": {"type":"application/thraud+xml"}, +"tfm": {"type":"application/x-tex-tfm"}, +"tga": {"type":"image/x-tga"}, +"tgz": {"type":"application/g-zip","icon":"archive","string":"archive","groups":["archive"]}, +"thmx": {"type":"application/vnd.ms-officetheme"}, +"tif": {"type":"image/tiff","icon":"tiff","string":"image","groups":["image"]}, +"tiff": {"type":"image/tiff","icon":"tiff","string":"image","groups":["image"]}, +"tmo": {"type":"application/vnd.tmobile-livetv"}, +"torrent": {"type":"application/x-bittorrent"}, +"tpl": {"type":"application/vnd.groove-tool-template"}, +"tpt": {"type":"application/vnd.trid.tpt"}, +"tr": {"type":"text/troff"}, +"tra": {"type":"application/vnd.trueapp"}, +"trm": {"type":"application/x-msterminal"}, +"ts": {"type":"video/MP2T","icon":"mpeg","string":"video","groups":["video","web_video"]}, +"tsd": {"type":"application/timestamped-data"}, +"tsi": {"type":"audio/tsp-audio"}, +"tsp": {"type":"application/dsptype"}, +"tsv": {"type":"text/tab-separated-values","icon":"text"}, +"ttc": {"type":"application/x-font-ttf"}, +"ttf": {"type":"application/x-font-ttf"}, +"ttl": {"type":"text/turtle"}, +"turbot": {"type":"image/florian"}, +"twd": {"type":"application/vnd.simtech-mindmapper"}, +"twds": {"type":"application/vnd.simtech-mindmapper"}, +"txd": {"type":"application/vnd.genomatix.tuxedo"}, +"txf": {"type":"application/vnd.mobius.txf"}, +"txt": {"type":"text/plain","icon":"text","defaulticon":true}, +"udeb": {"type":"application/x-debian-package"}, +"ufd": {"type":"application/vnd.ufdl"}, +"ufdl": {"type":"application/vnd.ufdl"}, +"uil": {"type":"text/x-uil"}, +"ulx": {"type":"application/x-glulx"}, +"umj": {"type":"application/vnd.umajin"}, +"uni": {"type":"text/uri-list"}, +"unis": {"type":"text/uri-list"}, +"unityweb": {"type":"application/vnd.unity"}, +"unv": {"type":"application/i-deas"}, +"uoml": {"type":"application/vnd.uoml+xml"}, +"uri": {"type":"text/uri-list"}, +"uris": {"type":"text/uri-list"}, +"urls": {"type":"text/uri-list"}, +"ustar": {"type":"application/x-ustar"}, +"utz": {"type":"application/vnd.uiq.theme"}, +"uu": {"type":"text/x-uuencode"}, +"uue": {"type":"text/x-uuencode"}, +"uva": {"type":"audio/vnd.dece.audio"}, +"uvd": {"type":"application/vnd.dece.data"}, +"uvf": {"type":"application/vnd.dece.data"}, +"uvg": {"type":"image/vnd.dece.graphic"}, +"uvh": {"type":"video/vnd.dece.hd"}, +"uvi": {"type":"image/vnd.dece.graphic"}, +"uvm": {"type":"video/vnd.dece.mobile"}, +"uvp": {"type":"video/vnd.dece.pd"}, +"uvs": {"type":"video/vnd.dece.sd"}, +"uvt": {"type":"application/vnd.dece.ttml+xml"}, +"uvu": {"type":"video/vnd.uvvu.mp4"}, +"uvv": {"type":"video/vnd.dece.video"}, +"uvva": {"type":"audio/vnd.dece.audio"}, +"uvvd": {"type":"application/vnd.dece.data"}, +"uvvf": {"type":"application/vnd.dece.data"}, +"uvvg": {"type":"image/vnd.dece.graphic"}, +"uvvh": {"type":"video/vnd.dece.hd"}, +"uvvi": {"type":"image/vnd.dece.graphic"}, +"uvvm": {"type":"video/vnd.dece.mobile"}, +"uvvp": {"type":"video/vnd.dece.pd"}, +"uvvs": {"type":"video/vnd.dece.sd"}, +"uvvt": {"type":"application/vnd.dece.ttml+xml"}, +"uvvu": {"type":"video/vnd.uvvu.mp4"}, +"uvvv": {"type":"video/vnd.dece.video"}, +"uvvx": {"type":"application/vnd.dece.unspecified"}, +"uvvz": {"type":"application/vnd.dece.zip"}, +"uvx": {"type":"application/vnd.dece.unspecified"}, +"uvz": {"type":"application/vnd.dece.zip"}, +"vcard": {"type":"text/vcard"}, +"vcd": {"type":"application/x-cdlink"}, +"vcf": {"type":"text/x-vcard"}, +"vcg": {"type":"application/vnd.groove-vcard"}, +"vcs": {"type":"text/x-vcalendar"}, +"vcx": {"type":"application/vnd.vcx"}, +"vda": {"type":"application/vda"}, +"vdo": {"type":"video/vdo"}, +"vew": {"type":"application/groupwise"}, +"vis": {"type":"application/vnd.visionary"}, +"viv": {"type":"video/vnd.vivo"}, +"vivo": {"type":"video/vivo"}, +"vmd": {"type":"application/vocaltec-media-desc"}, +"vmf": {"type":"application/vocaltec-media-file"}, +"vob": {"type":"video/x-ms-vob"}, +"voc": {"type":"audio/voc"}, +"vor": {"type":"application/vnd.stardivision.writer","icon":"writer"}, +"vos": {"type":"video/vosaic"}, +"vox": {"type":"audio/voxware"}, +"vqe": {"type":"audio/x-twinvq-plugin"}, +"vqf": {"type":"audio/x-twinvq"}, +"vql": {"type":"audio/x-twinvq-plugin"}, +"vrml": {"type":"model/vrml"}, +"vrt": {"type":"x-world/x-vrt"}, +"vsd": {"type":"application/vnd.visio"}, +"vsf": {"type":"application/vnd.vsf"}, +"vss": {"type":"application/vnd.visio"}, +"vst": {"type":"application/vnd.visio"}, +"vsw": {"type":"application/vnd.visio"}, +"vtt": {"type":"text/vtt","icon":"text","groups":["html_track"]}, +"vtu": {"type":"model/vnd.vtu"}, +"vxml": {"type":"application/voicexml+xml"}, +"w3d": {"type":"application/x-director"}, +"w60": {"type":"application/wordperfect6.0"}, +"w61": {"type":"application/wordperfect6.1"}, +"w6w": {"type":"application/msword"}, +"wad": {"type":"application/x-doom"}, +"wav": {"type":"audio/wav","icon":"wav","string":"audio","groups":["audio","html_audio","web_audio"]}, +"wax": {"type":"audio/x-ms-wax"}, +"wb1": {"type":"application/x-qpro"}, +"wbmp": {"type":"image/vnd.wap.wbmp"}, +"wbs": {"type":"application/vnd.criticaltools.wbs+xml"}, +"wbxml": {"type":"application/vnd.wap.wbxml"}, +"wcm": {"type":"application/vnd.ms-works"}, +"wdb": {"type":"application/vnd.ms-works"}, +"wdp": {"type":"image/vnd.ms-photo"}, +"web": {"type":"application/vnd.xara"}, +"weba": {"type":"audio/webm","icon":"audio","string":"audio","groups":["audio","html_audio","web_audio"]}, +"webm": {"type":"video/webm","icon":"video","string":"video","groups":["html_video","video","web_video"]}, +"webp": {"type":"image/webp"}, +"wg": {"type":"application/vnd.pmi.widget"}, +"wgt": {"type":"application/widget"}, +"wiz": {"type":"application/msword"}, +"wk1": {"type":"application/x-123"}, +"wks": {"type":"application/vnd.ms-works"}, +"wm": {"type":"video/x-ms-wm"}, +"wma": {"type":"audio/x-ms-wma","icon":"audio","string":"audio","groups":["audio"]}, +"wmd": {"type":"application/x-ms-wmd"}, +"wmf": {"type":"application/x-msmetafile"}, +"wml": {"type":"text/vnd.wap.wml"}, +"wmlc": {"type":"application/vnd.wap.wmlc"}, +"wmls": {"type":"text/vnd.wap.wmlscript"}, +"wmlsc": {"type":"application/vnd.wap.wmlscriptc"}, +"wmv": {"type":"video/x-ms-wmv","icon":"wmv","string":"video","groups":["video"]}, +"wmx": {"type":"video/x-ms-wmx"}, +"wmz": {"type":"application/x-ms-wmz"}, +"woff": {"type":"application/x-font-woff"}, +"word": {"type":"application/msword"}, +"wp": {"type":"application/wordperfect"}, +"wp5": {"type":"application/wordperfect"}, +"wp6": {"type":"application/wordperfect"}, +"wpd": {"type":"application/vnd.wordperfect"}, +"wpl": {"type":"application/vnd.ms-wpl"}, +"wps": {"type":"application/vnd.ms-works"}, +"wq1": {"type":"application/x-lotus"}, +"wqd": {"type":"application/vnd.wqd"}, +"wri": {"type":"application/x-mswrite"}, +"wrl": {"type":"model/vrml"}, +"wrz": {"type":"model/vrml"}, +"wsc": {"type":"text/scriplet"}, +"wsdl": {"type":"application/wsdl+xml"}, +"wspolicy": {"type":"application/wspolicy+xml"}, +"wsrc": {"type":"application/x-wais-source"}, +"wtb": {"type":"application/vnd.webturbo"}, +"wtk": {"type":"application/x-wintalk"}, +"wvx": {"type":"video/x-ms-wvx"}, +"x-png": {"type":"image/png","icon":"png","string":"image","groups":["image","web_image"]}, +"x3d": {"type":"model/x3d+xml"}, +"x3db": {"type":"model/x3d+binary"}, +"x3dbz": {"type":"model/x3d+binary"}, +"x3dv": {"type":"model/x3d+vrml"}, +"x3dvz": {"type":"model/x3d+vrml"}, +"x3dz": {"type":"model/x3d+xml"}, +"xaml": {"type":"application/xaml+xml"}, +"xap": {"type":"application/x-silverlight-app"}, +"xar": {"type":"application/vnd.xara"}, +"xbap": {"type":"application/x-ms-xbap"}, +"xbd": {"type":"application/vnd.fujixerox.docuworks.binder"}, +"xbk": {"type":"application/x-smarttech-notebook","icon":"archive"}, +"xbm": {"type":"image/x-xbitmap"}, +"xdf": {"type":"application/xcap-diff+xml"}, +"xdm": {"type":"application/vnd.syncml.dm+xml"}, +"xdp": {"type":"application/vnd.adobe.xdp+xml","icon":"pdf"}, +"xdr": {"type":"video/x-amt-demorun"}, +"xdssc": {"type":"application/dssc+xml"}, +"xdw": {"type":"application/vnd.fujixerox.docuworks"}, +"xenc": {"type":"application/xenc+xml"}, +"xer": {"type":"application/patch-ops-error+xml"}, +"xfd": {"type":"application/vnd.xfdl","icon":"pdf"}, +"xfdf": {"type":"application/vnd.adobe.xfdf","icon":"pdf"}, +"xfdl": {"type":"application/vnd.xfdl"}, +"xgz": {"type":"xgl/drawing"}, +"xht": {"type":"application/xhtml+xml"}, +"xhtml": {"type":"application/xhtml+xml","icon":"html","groups":["web_file"]}, +"xhvml": {"type":"application/xv+xml"}, +"xif": {"type":"image/vnd.xiff"}, +"xl": {"type":"application/excel"}, +"xla": {"type":"application/vnd.ms-excel","icon":"spreadsheet"}, +"xlam": {"type":"application/vnd.ms-excel.addin.macroenabled.12","icon":"spreadsheet"}, +"xlb": {"type":"application/excel"}, +"xlc": {"type":"application/vnd.ms-excel","icon":"spreadsheet"}, +"xld": {"type":"application/excel"}, +"xlf": {"type":"application/x-xliff+xml"}, +"xlk": {"type":"application/excel"}, +"xll": {"type":"application/excel"}, +"xlm": {"type":"application/vnd.ms-excel","icon":"spreadsheet"}, +"xls": {"type":"application/vnd.ms-excel","icon":"spreadsheet","groups":["spreadsheet"]}, +"xlsb": {"type":"application/vnd.ms-excel.sheet.binary.macroenabled.12","icon":"spreadsheet"}, +"xlsm": {"type":"application/vnd.ms-excel.sheet.macroenabled.12","icon":"spreadsheet","groups":["spreadsheet"]}, +"xlsx": {"type":"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet","icon":"spreadsheet","groups":["spreadsheet"]}, +"xlt": {"type":"application/vnd.ms-excel","icon":"spreadsheet"}, +"xltm": {"type":"application/vnd.ms-excel.template.macroenabled.12","icon":"spreadsheet"}, +"xltx": {"type":"application/vnd.openxmlformats-officedocument.spreadsheetml.template","icon":"spreadsheet"}, +"xlv": {"type":"application/excel"}, +"xlw": {"type":"application/vnd.ms-excel","icon":"spreadsheet"}, +"xm": {"type":"audio/xm"}, +"xml": {"type":"application/xml","icon":"markup"}, +"xmz": {"type":"xgl/movie"}, +"xo": {"type":"application/vnd.olpc-sugar"}, +"xop": {"type":"application/xop+xml"}, +"xpi": {"type":"application/x-xpinstall"}, +"xpix": {"type":"application/x-vnd.ls-xpix"}, +"xpl": {"type":"application/xproc+xml"}, +"xpm": {"type":"image/x-xpixmap"}, +"xpr": {"type":"application/vnd.is-xpr"}, +"xps": {"type":"application/vnd.ms-xpsdocument"}, +"xpw": {"type":"application/vnd.intercon.formnet"}, +"xpx": {"type":"application/vnd.intercon.formnet"}, +"xsl": {"type":"text/xml","icon":"markup"}, +"xslt": {"type":"application/xslt+xml"}, +"xsm": {"type":"application/vnd.syncml+xml"}, +"xspf": {"type":"application/xspf+xml"}, +"xsr": {"type":"video/x-amt-showrun"}, +"xul": {"type":"application/vnd.mozilla.xul+xml"}, +"xvm": {"type":"application/xv+xml"}, +"xvml": {"type":"application/xv+xml"}, +"xwd": {"type":"image/x-xwindowdump"}, +"xxx": {"type":"document/unknown","icon":"unknown"}, +"xyz": {"type":"chemical/x-xyz"}, +"xz": {"type":"application/x-xz"}, +"yaml": {"type":"text/yaml"}, +"yang": {"type":"application/yang"}, +"yin": {"type":"application/yin+xml"}, +"yml": {"type":"text/yaml"}, +"z": {"type":"application/x-compress"}, +"z1": {"type":"application/x-zmachine"}, +"z2": {"type":"application/x-zmachine"}, +"z3": {"type":"application/x-zmachine"}, +"z4": {"type":"application/x-zmachine"}, +"z5": {"type":"application/x-zmachine"}, +"z6": {"type":"application/x-zmachine"}, +"z7": {"type":"application/x-zmachine"}, +"z8": {"type":"application/x-zmachine"}, +"zaz": {"type":"application/vnd.zzazz.deck+xml"}, +"zip": {"type":"application/zip","icon":"archive","string":"archive","groups":["archive"]}, +"zir": {"type":"application/vnd.zul"}, +"zirz": {"type":"application/vnd.zul"}, +"zmm": {"type":"application/vnd.handheld-entertainment+xml"}, +"zoo": {"type":"application/octet-stream"}, +"zsh": {"type":"text/x-script.zsh"} +} \ No newline at end of file diff --git a/src/assets/mimetoext.json b/src/assets/mimetoext.json new file mode 100644 index 000000000..438731f8b --- /dev/null +++ b/src/assets/mimetoext.json @@ -0,0 +1,1095 @@ +{ +"application/acad": ["dwg"], +"application/andrew-inset": ["ez"], +"application/applixware": ["aw"], +"application/arj": ["arj"], +"application/atom+xml": ["atom"], +"application/atomcat+xml": ["atomcat"], +"application/atomsvc+xml": ["atomsvc"], +"application/base64": ["mm","mme"], +"application/binhex": ["hqx"], +"application/binhex4": ["hqx"], +"application/book": ["boo","book"], +"application/ccxml+xml": ["ccxml"], +"application/cdf": ["cdf"], +"application/cdmi-capability": ["cdmia"], +"application/cdmi-container": ["cdmic"], +"application/cdmi-domain": ["cdmid"], +"application/cdmi-object": ["cdmio"], +"application/cdmi-queue": ["cdmiq"], +"application/clariscad": ["ccad"], +"application/commonground": ["dp"], +"application/cu-seeme": ["cu"], +"application/dash+xml": ["mpd"], +"application/davmount+xml": ["davmount"], +"application/docbook+xml": ["dbk"], +"application/drafting": ["drw"], +"application/dsptype": ["tsp"], +"application/dssc+der": ["dssc"], +"application/dssc+xml": ["xdssc"], +"application/dxf": ["dxf"], +"application/ecmascript": ["ecma","js"], +"application/emma+xml": ["emma"], +"application/envoy": ["evy"], +"application/epub+zip": ["epub"], +"application/excel": ["xl","xlw","xlb","xlc","xld","xlk","xla","xlm","xls","xlt","xlv","xll"], +"application/exi": ["exi"], +"application/font-tdpfr": ["pfr"], +"application/font-woff": ["woff"], +"application/fractals": ["fif"], +"application/freeloader": ["frl"], +"application/futuresplash": ["spl"], +"application/g-zip": ["tgz","gz","gzip"], +"application/gml+xml": ["gml"], +"application/gnutar": ["tgz"], +"application/gpx+xml": ["gpx"], +"application/groupwise": ["vew"], +"application/gxf": ["gxf"], +"application/hlp": ["hlp"], +"application/hta": ["hta"], +"application/hyperstudio": ["stk"], +"application/i-deas": ["unv"], +"application/iges": ["iges","igs"], +"application/inf": ["inf"], +"application/inkml+xml": ["ink","inkml"], +"application/inspiration": ["isf"], +"application/inspiration.template": ["ist"], +"application/ipfix": ["ipfix"], +"application/java": ["class"], +"application/java-archive": ["jar"], +"application/java-byte-code": ["class"], +"application/java-serialized-object": ["ser"], +"application/java-vm": ["class"], +"application/javascript": ["js"], +"application/json": ["json"], +"application/jsonml+json": ["jsonml"], +"application/lha": ["lha"], +"application/lost+xml": ["lostxml"], +"application/lzx": ["lzx"], +"application/mac-binary": ["bin"], +"application/mac-binhex": ["hqx"], +"application/mac-binhex40": ["hqx"], +"application/mac-compactpro": ["cpt"], +"application/macbinary": ["bin"], +"application/mads+xml": ["mads"], +"application/maple": ["mw","mws"], +"application/marc": ["mrc"], +"application/marcxml+xml": ["mrcx"], +"application/mathematica": ["ma","mb","nb"], +"application/mathml+xml": ["mathml"], +"application/mbedlet": ["mbd"], +"application/mbox": ["mbox"], +"application/mcad": ["mcd"], +"application/mediaservercontrol+xml": ["mscml"], +"application/metalink+xml": ["metalink"], +"application/metalink4+xml": ["meta4"], +"application/mets+xml": ["mets"], +"application/mime": ["aps"], +"application/mods+xml": ["mods"], +"application/mp21": ["mp21","m21"], +"application/mp4": ["mp4s"], +"application/msaccess": ["accdb"], +"application/mspowerpoint": ["pot","pps","ppt","ppz"], +"application/msword": ["doc","dot","w6w","wiz","word"], +"application/mswrite": ["wri"], +"application/mxf": ["mxf"], +"application/netmc": ["mcp"], +"application/octet-stream": ["bin","a","arj","asax","zoo","bpk","com","crx","deploy","dist","distz","dmg","dms","dump","elc","exe","fdk","arc","ipa","lha","lhx","lrf","lzh","lzx","mar","o","phar","pkg","psd","safariextz","saveme","so","uu","hta"], +"application/oda": ["oda"], +"application/oebps-package+xml": ["opf"], +"application/ogg": ["ogx"], +"application/omdoc+xml": ["omdoc"], +"application/onenote": ["onepkg","onetmp","onetoc","onetoc2"], +"application/oxps": ["oxps"], +"application/patch-ops-error+xml": ["xer"], +"application/pdf": ["pdf","fdf","xdp","xfd","xfdf"], +"application/pgp-encrypted": ["pgp"], +"application/pgp-signature": ["asc","sig"], +"application/pics-rules": ["prf"], +"application/pkcs-12": ["p12"], +"application/pkcs-crl": ["crl"], +"application/pkcs10": ["p10","csr"], +"application/pkcs7-mime": ["p7c","p7m"], +"application/pkcs7-signature": ["p7s"], +"application/pkcs8": ["p8","key"], +"application/pkix-attr-cert": ["ac"], +"application/pkix-cert": ["cer","crt"], +"application/pkix-crl": ["crl"], +"application/pkix-pkipath": ["pkipath"], +"application/pkixcmp": ["pki"], +"application/plain": ["text"], +"application/pls+xml": ["pls"], +"application/postscript": ["ps","ai","eps"], +"application/powerpoint": ["ppt"], +"application/pro_eng": ["part","prt"], +"application/prs.cww": ["cww"], +"application/pskc+xml": ["pskcxml"], +"application/rdf+xml": ["rdf"], +"application/reginfo+xml": ["rif"], +"application/relax-ng-compact-syntax": ["rnc"], +"application/resource-lists+xml": ["rl"], +"application/resource-lists-diff+xml": ["rld"], +"application/ringing-tones": ["rng"], +"application/rls-services+xml": ["rs"], +"application/rpki-ghostbusters": ["gbr"], +"application/rpki-manifest": ["mft"], +"application/rpki-roa": ["roa"], +"application/rsd+xml": ["rsd"], +"application/rss+xml": ["rss"], +"application/rtf": ["rtf","rtx"], +"application/sbml+xml": ["sbml"], +"application/scvp-cv-request": ["scq"], +"application/scvp-cv-response": ["scs"], +"application/scvp-vp-request": ["spq"], +"application/scvp-vp-response": ["spp"], +"application/sdp": ["sdp"], +"application/sea": ["sea"], +"application/set": ["set"], +"application/set-payment-initiation": ["setpay"], +"application/set-registration-initiation": ["setreg"], +"application/shf+xml": ["shf"], +"application/sla": ["stl"], +"application/smil": ["smil","smi"], +"application/smil+xml": ["smi","smil"], +"application/solids": ["sol"], +"application/sounder": ["sdr"], +"application/sparql-query": ["rq"], +"application/sparql-results+xml": ["srx"], +"application/srgs": ["gram"], +"application/srgs+xml": ["grxml"], +"application/sru+xml": ["sru"], +"application/ssdl+xml": ["ssdl"], +"application/ssml+xml": ["ssml"], +"application/step": ["step","stp"], +"application/streamingmedia": ["ssm"], +"application/tei+xml": ["tei","teicorpus"], +"application/thraud+xml": ["tfi"], +"application/timestamped-data": ["tsd"], +"application/toolbook": ["tbk"], +"application/vda": ["vda"], +"application/vnd.3gpp.pic-bw-large": ["plb"], +"application/vnd.3gpp.pic-bw-small": ["psb"], +"application/vnd.3gpp.pic-bw-var": ["pvb"], +"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.formscentral.fcdt": ["fcdt"], +"application/vnd.adobe.fxp": ["fxp","fxpl"], +"application/vnd.adobe.xdp+xml": ["xdp"], +"application/vnd.adobe.xfdf": ["xfdf"], +"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.android.package-archive": ["apk"], +"application/vnd.anser-web-certificate-issue-initiation": ["cii"], +"application/vnd.anser-web-funds-transfer-initiation": ["fti"], +"application/vnd.antix.game-component": ["atx"], +"application/vnd.apple.installer+xml": ["mpkg"], +"application/vnd.apple.mpegurl": ["m3u8"], +"application/vnd.aristanetworks.swi": ["swi"], +"application/vnd.astraea-software.iota": ["iota"], +"application/vnd.audiograph": ["aep"], +"application/vnd.blueice.multipass": ["mpm"], +"application/vnd.bmi": ["bmi"], +"application/vnd.businessobjects": ["rep"], +"application/vnd.chemdraw+xml": ["cdxml"], +"application/vnd.chipnuts.karaoke-mmd": ["mmd"], +"application/vnd.cinderella": ["cdy"], +"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.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.cups-ppd": ["ppd"], +"application/vnd.curl.car": ["car"], +"application/vnd.curl.pcurl": ["pcurl"], +"application/vnd.dart": ["dart"], +"application/vnd.data-vision.rdz": ["rdz"], +"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.dna": ["dna"], +"application/vnd.dolby.mlp": ["mlp"], +"application/vnd.dpgraph": ["dpg"], +"application/vnd.dreamfactory": ["dfac"], +"application/vnd.ds-keypoint": ["kpxx"], +"application/vnd.dvb.ait": ["ait"], +"application/vnd.dvb.service": ["svc"], +"application/vnd.dynageo": ["geo"], +"application/vnd.ecowin.chart": ["mag"], +"application/vnd.enliven": ["nml"], +"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.eszigno3+xml": ["es3","et3"], +"application/vnd.ezpix-album": ["ez2"], +"application/vnd.ezpix-package": ["ez3"], +"application/vnd.fdf": ["fdf"], +"application/vnd.fdsn.mseed": ["mseed"], +"application/vnd.fdsn.seed": ["dataless","seed"], +"application/vnd.flographit": ["gph"], +"application/vnd.fluxtime.clip": ["ftc"], +"application/vnd.framemaker": ["book","fm","frame","maker"], +"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.ddd": ["ddd"], +"application/vnd.fujixerox.docuworks": ["xdw"], +"application/vnd.fujixerox.docuworks.binder": ["xbd"], +"application/vnd.fuzzysheet": ["fzs"], +"application/vnd.genomatix.tuxedo": ["txd"], +"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.gmx": ["gmx"], +"application/vnd.google-apps.document": ["gdoc"], +"application/vnd.google-apps.presentation": ["gslides"], +"application/vnd.google-apps.spreadsheet": ["gsheet"], +"application/vnd.google-earth.kml+xml": ["kml"], +"application/vnd.google-earth.kmz": ["kmz"], +"application/vnd.grafeq": ["gqf","gqs"], +"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+xml": ["hal"], +"application/vnd.handheld-entertainment+xml": ["zmm"], +"application/vnd.hbci": ["hbci"], +"application/vnd.hhe.lesson-player": ["les"], +"application/vnd.hp-hpgl": ["hpgl","hgl","hpg"], +"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.hydrostatix.sof-data": ["sfd-hdstx"], +"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.igloader": ["igl"], +"application/vnd.immervision-ivp": ["ivp"], +"application/vnd.immervision-ivu": ["ivu"], +"application/vnd.insors.igm": ["igm"], +"application/vnd.intercon.formnet": ["xpw","xpx"], +"application/vnd.intergeo": ["i2g"], +"application/vnd.intu.qbo": ["qbo"], +"application/vnd.intu.qfx": ["qfx"], +"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.jcp.javame.midlet-rms": ["rms"], +"application/vnd.jisp": ["jisp"], +"application/vnd.joost.joda-archive": ["joda"], +"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"], +"application/vnd.koan": ["skd","skm","skp","skt"], +"application/vnd.kodak-descriptor": ["sse"], +"application/vnd.las.las+xml": ["lasxml"], +"application/vnd.llamagraphics.life-balance.desktop": ["lbd"], +"application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"], +"application/vnd.lotus-1-2-3": ["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.mcd": ["mcd"], +"application/vnd.medcalcdata": ["mc1"], +"application/vnd.mediastation.cdkey": ["cdkey"], +"application/vnd.mfer": ["mwf"], +"application/vnd.mfmp": ["mfm"], +"application/vnd.micrografx.flo": ["flo"], +"application/vnd.micrografx.igx": ["igx"], +"application/vnd.mif": ["mif"], +"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.moodle.backup": ["mbz"], +"application/vnd.moodle.profiling": ["mpr"], +"application/vnd.mophun.application": ["mpn"], +"application/vnd.mophun.certificate": ["mpc"], +"application/vnd.mozilla.xul+xml": ["xul"], +"application/vnd.ms-artgalry": ["cil"], +"application/vnd.ms-cab-compressed": ["cab"], +"application/vnd.ms-excel": ["xls","xla","xlb","xlc","xll","xlm","xlt","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-officetheme": ["thmx"], +"application/vnd.ms-pki.certstore": ["sst"], +"application/vnd.ms-pki.pko": ["pko"], +"application/vnd.ms-pki.seccat": ["cat"], +"application/vnd.ms-pki.stl": ["stl"], +"application/vnd.ms-powerpoint": ["ppt","pot","ppa","pps","pwz"], +"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-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.mseq": ["mseq"], +"application/vnd.musician": ["mus"], +"application/vnd.muvee.style": ["msty"], +"application/vnd.mynfc": ["taglet"], +"application/vnd.neurolanguage.nlu": ["nlu"], +"application/vnd.nitf": ["nitf","ntf"], +"application/vnd.noblenet-directory": ["nnd"], +"application/vnd.noblenet-sealer": ["nns"], +"application/vnd.noblenet-web": ["nnw"], +"application/vnd.nokia.configuration-message": ["ncm"], +"application/vnd.nokia.n-gage.data": ["ngdat"], +"application/vnd.nokia.n-gage.symbian.install": ["n-gage"], +"application/vnd.nokia.radio-preset": ["rpst"], +"application/vnd.nokia.radio-presets": ["rpss"], +"application/vnd.nokia.ringing-tone": ["rng"], +"application/vnd.novadigm.edm": ["edm"], +"application/vnd.novadigm.edx": ["edx"], +"application/vnd.novadigm.ext": ["ext"], +"application/vnd.oasis.opendocument.chart": ["odc"], +"application/vnd.oasis.opendocument.chart-template": ["otc"], +"application/vnd.oasis.opendocument.database": ["odb"], +"application/vnd.oasis.opendocument.formula": ["odf"], +"application/vnd.oasis.opendocument.formula-template": ["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": ["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.olpc-sugar": ["xo"], +"application/vnd.oma.dd2+xml": ["dd2"], +"application/vnd.openofficeorg.extension": ["oxt"], +"application/vnd.openxmlformats-officedocument.presentationml.presentation": ["pptx"], +"application/vnd.openxmlformats-officedocument.presentationml.slide": ["sldx"], +"application/vnd.openxmlformats-officedocument.presentationml.slideshow": ["ppsx"], +"application/vnd.openxmlformats-officedocument.presentationml.template": ["potx"], +"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"], +"application/vnd.openxmlformats-officedocument.spreadsheetml.template": ["xltx"], +"application/vnd.openxmlformats-officedocument.wordprocessingml.document": ["docx"], +"application/vnd.openxmlformats-officedocument.wordprocessingml.template": ["dotx"], +"application/vnd.osgeo.mapguide.package": ["mgp"], +"application/vnd.osgi.dp": ["dp"], +"application/vnd.osgi.subsystem": ["esa"], +"application/vnd.palm": ["oprc","pdb","pqa"], +"application/vnd.pawaafile": ["paw"], +"application/vnd.pg.format": ["str"], +"application/vnd.pg.osasli": ["ei6"], +"application/vnd.picsel": ["efif"], +"application/vnd.pmi.widget": ["wg"], +"application/vnd.pocketlearn": ["plf"], +"application/vnd.powerbuilder6": ["pbd"], +"application/vnd.previewsystems.box": ["box"], +"application/vnd.proteus.magazine": ["mgz"], +"application/vnd.publishare-delta-tree": ["qps"], +"application/vnd.pvi.ptid1": ["ptid"], +"application/vnd.quark.quarkxpress": ["qwd","qwt","qxb","qxd","qxl","qxt"], +"application/vnd.realvnc.bed": ["bed"], +"application/vnd.recordare.musicxml": ["mxl"], +"application/vnd.recordare.musicxml+xml": ["musicxml"], +"application/vnd.rig.cryptonote": ["cryptonote"], +"application/vnd.rim.cod": ["cod"], +"application/vnd.rn-realmedia": ["rm"], +"application/vnd.rn-realmedia-vbr": ["rmvb"], +"application/vnd.rn-realplayer": ["rnx"], +"application/vnd.route66.link66+xml": ["link66"], +"application/vnd.sailingtracker.track": ["st"], +"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.smaf": ["mmf"], +"application/vnd.smart.teacher": ["teacher"], +"application/vnd.solent.sdkm+xml": ["sdkd","sdkm"], +"application/vnd.spotfire.dxp": ["dxp"], +"application/vnd.spotfire.sfs": ["sfs"], +"application/vnd.stardivision.calc": ["sdc"], +"application/vnd.stardivision.draw": ["sda"], +"application/vnd.stardivision.impress": ["sdd"], +"application/vnd.stardivision.math": ["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.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.symbian.install": ["sis","sisx"], +"application/vnd.syncml+xml": ["xsm"], +"application/vnd.syncml.dm+wbxml": ["bdm"], +"application/vnd.syncml.dm+xml": ["xdm"], +"application/vnd.tao.intent-module-archive": ["tao"], +"application/vnd.tcpdump.pcap": ["cap","dmp","pcap"], +"application/vnd.tmobile-livetv": ["tmo"], +"application/vnd.trid.tpt": ["tpt"], +"application/vnd.triscape.mxs": ["mxs"], +"application/vnd.trueapp": ["tra"], +"application/vnd.ufdl": ["ufdl","ufd"], +"application/vnd.uiq.theme": ["utz"], +"application/vnd.umajin": ["umj"], +"application/vnd.unity": ["unityweb"], +"application/vnd.uoml+xml": ["uoml"], +"application/vnd.vcx": ["vcx"], +"application/vnd.visio": ["vsd","vss","vst","vsw"], +"application/vnd.visionary": ["vis"], +"application/vnd.vsf": ["vsf"], +"application/vnd.wap.wbxml": ["wbxml"], +"application/vnd.wap.wmlc": ["wmlc"], +"application/vnd.wap.wmlscriptc": ["wmlsc"], +"application/vnd.webturbo": ["wtb"], +"application/vnd.wolfram.player": ["nbp"], +"application/vnd.wordperfect": ["wpd"], +"application/vnd.wqd": ["wqd"], +"application/vnd.wt.stf": ["stf"], +"application/vnd.xara": ["xar","web"], +"application/vnd.xfdl": ["xfdl","xfd"], +"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.smaf-audio": ["saf"], +"application/vnd.yamaha.smaf-phrase": ["spf"], +"application/vnd.yellowriver-custom-menu": ["cmp"], +"application/vnd.zul": ["zir","zirz"], +"application/vnd.zzazz.deck+xml": ["zaz"], +"application/vocaltec-media-desc": ["vmd"], +"application/vocaltec-media-file": ["vmf"], +"application/voicexml+xml": ["vxml"], +"application/widget": ["wgt"], +"application/winhlp": ["hlp"], +"application/wordperfect": ["wp","wp5","wp6","wpd"], +"application/wordperfect6.0": ["w60","wp5"], +"application/wordperfect6.1": ["w61"], +"application/wsdl+xml": ["wsdl"], +"application/wspolicy+xml": ["wspolicy"], +"application/x-123": ["wk1"], +"application/x-7z-compressed": ["7z"], +"application/x-abiword": ["abw"], +"application/x-ace-compressed": ["ace"], +"application/x-aim": ["aim"], +"application/x-apple-diskimage": ["dmg"], +"application/x-authorware-bin": ["aab"], +"application/x-authorware-map": ["aam"], +"application/x-authorware-seg": ["aas"], +"application/x-bcpio": ["bcpio"], +"application/x-binary": ["bin"], +"application/x-binhex40": ["hqx"], +"application/x-bittorrent": ["torrent"], +"application/x-blorb": ["blorb","blb"], +"application/x-bsh": ["bsh","sh","shar"], +"application/x-bytecode.elisp (compiled elisp)": ["elc"], +"application/x-bytecode.python": ["pyc"], +"application/x-bzip": ["bz"], +"application/x-bzip2": ["bz2","boz"], +"application/x-cbr": ["cbr","cb7","cba","cbt","cbz"], +"application/x-cdf": ["cdf"], +"application/x-cdlink": ["vcd"], +"application/x-cfs-compressed": ["cfs"], +"application/x-chat": ["chat","cha"], +"application/x-chess-pgn": ["pgn"], +"application/x-cmu-raster": ["ras"], +"application/x-cocoa": ["cco"], +"application/x-coldfusion": ["cfc","cfm"], +"application/x-compactpro": ["cpt"], +"application/x-compress": ["z"], +"application/x-compressed": ["gz","tgz","z","zip"], +"application/x-conference": ["nsc"], +"application/x-cpio": ["cpio"], +"application/x-cpt": ["cpt"], +"application/x-csh": ["csh","cs"], +"application/x-debian-package": ["deb","udeb"], +"application/x-deepv": ["deepv"], +"application/x-dgc-compressed": ["dgc"], +"application/x-digidoc": ["bdoc","cdoc","ddoc"], +"application/x-director": ["cct","cst","cxt","dcr","dir","dxr","fgd","swa","w3d"], +"application/x-doom": ["wad"], +"application/x-dtbncx+xml": ["ncx"], +"application/x-dtbook+xml": ["dtb"], +"application/x-dtbresource+xml": ["res"], +"application/x-dvi": ["dvi"], +"application/x-elc": ["elc"], +"application/x-envoy": ["evy","env"], +"application/x-esrehber": ["es"], +"application/x-eva": ["eva"], +"application/x-excel": ["xla","xlw","xlc","xld","xlk","xlb","xlm","xls","xlt","xlv","xll"], +"application/x-font-bdf": ["bdf"], +"application/x-font-ghostscript": ["gsf"], +"application/x-font-linux-psf": ["psf"], +"application/x-font-otf": ["otf"], +"application/x-font-pcf": ["pcf"], +"application/x-font-snf": ["snf"], +"application/x-font-ttf": ["ttf","ttc"], +"application/x-font-type1": ["afm","pfa","pfb","pfm"], +"application/x-font-woff": ["woff"], +"application/x-frame": ["mif"], +"application/x-freearc": ["arc"], +"application/x-freelance": ["pre"], +"application/x-futuresplash": ["spl"], +"application/x-gca-compressed": ["gca"], +"application/x-glulx": ["ulx"], +"application/x-gnumeric": ["gnumeric"], +"application/x-gramps-xml": ["gramps"], +"application/x-gsp": ["gsp"], +"application/x-gss": ["gss"], +"application/x-gtar": ["gtar"], +"application/x-gzip": ["gz","gzip","tgz"], +"application/x-hdf": ["hdf"], +"application/x-helpfile": ["help","hlp"], +"application/x-httpd-imap": ["imap"], +"application/x-httpd-phps": ["phps"], +"application/x-ibooks+zip": ["ibooks"], +"application/x-ima": ["ima"], +"application/x-install-instructions": ["install"], +"application/x-internett-signup": ["ins"], +"application/x-inventor": ["iv"], +"application/x-ip2": ["ip"], +"application/x-iso9660-image": ["iso"], +"application/x-java-class": ["class"], +"application/x-java-commerce": ["jcm"], +"application/x-java-jnlp-file": ["jnlp"], +"application/x-javascript": ["js"], +"application/x-koan": ["skd","skm","skp","skt"], +"application/x-ksh": ["ksh"], +"application/x-latex": ["latex","ltx"], +"application/x-lha": ["lha"], +"application/x-lisp": ["lsp"], +"application/x-livescreen": ["ivy"], +"application/x-lotus": ["wq1"], +"application/x-lotusscreencam": ["scm"], +"application/x-lzh": ["lzh"], +"application/x-lzh-compressed": ["lha","lzh"], +"application/x-lzip": ["lz"], +"application/x-lzma": ["lzma"], +"application/x-lzop": ["lzo"], +"application/x-lzx": ["lzx"], +"application/x-mac-binhex40": ["hqx"], +"application/x-macbinary": ["bin"], +"application/x-magic-cap-package-1.0": ["mc$"], +"application/x-mathcad": ["mcd"], +"application/x-meme": ["mm"], +"application/x-midi": ["mid","midi"], +"application/x-mie": ["mie"], +"application/x-mif": ["mif"], +"application/x-mix-transfer": ["nix"], +"application/x-mobipocket-ebook": ["mobi","prc"], +"application/x-mplayer2": ["asx"], +"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": ["mdb"], +"application/x-msbinder": ["obd"], +"application/x-mscardfile": ["crd"], +"application/x-msclip": ["clp"], +"application/x-msdownload": ["dll","bat","com","exe","msi"], +"application/x-msexcel": ["xla","xls","xlw"], +"application/x-msmediaview": ["mvb","m13","m14"], +"application/x-msmetafile": ["emf","emz","wmf"], +"application/x-msmoney": ["mny"], +"application/x-mspowerpoint": ["ppt"], +"application/x-mspublisher": ["pub"], +"application/x-msschedule": ["scd"], +"application/x-msterminal": ["trm"], +"application/x-mswrite": ["wri"], +"application/x-navi-animation": ["ani"], +"application/x-navidoc": ["nvd"], +"application/x-navimap": ["map"], +"application/x-navistyle": ["stl"], +"application/x-netcdf": ["cdf","nc"], +"application/x-newton-compatible-pkg": ["pkg"], +"application/x-nokia-9000-communicator-add-on-software": ["aos"], +"application/x-nzb": ["nzb"], +"application/x-omc": ["omc"], +"application/x-omcdatamaker": ["omcd"], +"application/x-omcregerator": ["omcr"], +"application/x-pagemaker": ["pm4","pm5"], +"application/x-pcl": ["pcl"], +"application/x-pem-file": ["pem"], +"application/x-pixclscript": ["plx"], +"application/x-pkcs10": ["p10"], +"application/x-pkcs12": ["p12","pfx"], +"application/x-pkcs7-certificates": ["p7b","spc"], +"application/x-pkcs7-certreqresp": ["p7r"], +"application/x-pkcs7-crl": ["crl"], +"application/x-pkcs7-mime": ["p7c","p7m"], +"application/x-pkcs7-signature": ["p7a"], +"application/x-plist": ["plist"], +"application/x-pointplus": ["css"], +"application/x-portable-anymap": ["pnm"], +"application/x-project": ["mpc","mpt","mpv","mpx"], +"application/x-qpro": ["wb1"], +"application/x-rar-compressed": ["rar"], +"application/x-research-info-systems": ["ris"], +"application/x-rpm": ["rpm"], +"application/x-rtf": ["rtf"], +"application/x-sdp": ["sdp"], +"application/x-sea": ["sea"], +"application/x-seelogo": ["sl"], +"application/x-sh": ["sh"], +"application/x-shar": ["shar","sh"], +"application/x-shockwave-flash": ["swf","swfl"], +"application/x-silverlight-app": ["xap"], +"application/x-sit": ["sit"], +"application/x-smarttech-notebook": ["gallery","gallerycollection","galleryitem","nbk","notebook","xbk"], +"application/x-sprite": ["spr","sprite"], +"application/x-sql": ["sql"], +"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-tbook": ["sbk","tbk"], +"application/x-tcl": ["tcl"], +"application/x-tex": ["tex"], +"application/x-tex-tfm": ["tfm"], +"application/x-texinfo": ["texi","texinfo"], +"application/x-tgif": ["obj"], +"application/x-troff": ["roff","t","tr"], +"application/x-troff-man": ["man"], +"application/x-troff-me": ["me"], +"application/x-troff-ms": ["ms"], +"application/x-troff-msvideo": ["avi"], +"application/x-ustar": ["ustar"], +"application/x-visio": ["vsd","vst","vsw"], +"application/x-vnd.audioexplosion.mzz": ["mzz"], +"application/x-vnd.ls-xpix": ["xpix"], +"application/x-vrml": ["vrml"], +"application/x-wais-source": ["src","wsrc"], +"application/x-winhelp": ["hlp"], +"application/x-wintalk": ["wtk"], +"application/x-world": ["svr","wrl"], +"application/x-wpwin": ["wpd"], +"application/x-wri": ["wri"], +"application/x-x509-ca-cert": ["crt","cer","der"], +"application/x-x509-user-cert": ["crt"], +"application/x-xfig": ["fig"], +"application/x-xliff+xml": ["xlf"], +"application/x-xpinstall": ["xpi"], +"application/x-xz": ["xz"], +"application/x-zip-compressed": ["zip"], +"application/x-zmachine": ["z1","z2","z3","z4","z5","z6","z7","z8"], +"application/xaml+xml": ["xaml"], +"application/xcap-diff+xml": ["xdf"], +"application/xenc+xml": ["xenc"], +"application/xhtml+xml": ["xhtml","xht"], +"application/xml": ["xml","xsl"], +"application/xml-dtd": ["dtd"], +"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","h5p"], +"audio/aac": ["aac"], +"audio/adpcm": ["adp"], +"audio/aiff": ["aif","aifc","aiff"], +"audio/amr": ["amr"], +"audio/au": ["au"], +"audio/basic": ["au","snd"], +"audio/flac": ["flac"], +"audio/it": ["it"], +"audio/make": ["funk","my","pfunk"], +"audio/make.my.funk": ["pfunk"], +"audio/mid": ["rmi"], +"audio/midi": ["midi","kar","mid","rmi"], +"audio/mod": ["mod"], +"audio/mp3": ["mp3"], +"audio/mp4": ["mp4a","m4a"], +"audio/mpeg": ["m2a","m3a","mp2","mp2a","mp3","mpa","mpg","mpga"], +"audio/mpeg3": ["mp3"], +"audio/nspaudio": ["la","lma"], +"audio/ogg": ["ogg","oga","spx"], +"audio/s3m": ["s3m"], +"audio/silk": ["sil"], +"audio/tsp-audio": ["tsi"], +"audio/tsplayer": ["tsp"], +"audio/vnd.dece.audio": ["uva","uvva"], +"audio/vnd.digital-winds": ["eol"], +"audio/vnd.dra": ["dra"], +"audio/vnd.dts": ["dts"], +"audio/vnd.dts.hd": ["dtshd"], +"audio/vnd.lucent.voice": ["lvp"], +"audio/vnd.ms-playready.media.pya": ["pya"], +"audio/vnd.nuera.ecelp4800": ["ecelp4800"], +"audio/vnd.nuera.ecelp7470": ["ecelp7470"], +"audio/vnd.nuera.ecelp9600": ["ecelp9600"], +"audio/vnd.qcelp": ["qcp"], +"audio/vnd.rip": ["rip"], +"audio/voc": ["voc"], +"audio/voxware": ["vox"], +"audio/wav": ["wav"], +"audio/webm": ["weba"], +"audio/x-aac": ["aac"], +"audio/x-adpcm": ["snd"], +"audio/x-aiff": ["aiff","aif","aifc"], +"audio/x-au": ["au"], +"audio/x-caf": ["caf"], +"audio/x-flac": ["flac"], +"audio/x-gsm": ["gsd","gsm"], +"audio/x-jam": ["jam"], +"audio/x-liveaudio": ["lam"], +"audio/x-matroska": ["mka"], +"audio/x-mid": ["mid","midi"], +"audio/x-midi": ["mid","midi"], +"audio/x-mod": ["mod"], +"audio/x-mpeg": ["mp2"], +"audio/x-mpeg-3": ["mp3"], +"audio/x-mpegurl": ["m3u","m3u8"], +"audio/x-mpequrl": ["m3u"], +"audio/x-ms-wax": ["wax"], +"audio/x-ms-wma": ["wma"], +"audio/x-nspaudio": ["la","lma"], +"audio/x-pn-realaudio": ["ra","ram","rm","rmm","rmp"], +"audio/x-pn-realaudio-plugin": ["rmp","ra","ram","rm","rpm","rv"], +"audio/x-psid": ["sid"], +"audio/x-realaudio": ["ra"], +"audio/x-realaudio-plugin": ["ra"], +"audio/x-twinvq": ["vqf"], +"audio/x-twinvq-plugin": ["vqe","vql"], +"audio/x-vnd.audioexplosion.mjuicemediafile": ["mjf"], +"audio/x-voc": ["voc"], +"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","xyz"], +"chemical/x-xyz": ["xyz"], +"document/unknown": ["xxx"], +"drawing/x-dwf (old)": ["dwf"], +"i-world/i-vrml": ["ivr"], +"image/bmp": ["bmp","bm"], +"image/cgm": ["cgm"], +"image/cmu-raster": ["ras","rast"], +"image/fif": ["fif"], +"image/florian": ["flo","turbot"], +"image/g3fax": ["g3"], +"image/gif": ["gif"], +"image/ief": ["ief","iefs"], +"image/jpeg": ["jpeg","jfif","jfif-tbnl","jpe","jpg"], +"image/jutvision": ["jut"], +"image/ktx": ["ktx"], +"image/naplps": ["nap","naplps"], +"image/pict": ["pct","pic","pict"], +"image/pjpeg": ["jfif","jpe","jpeg","jpg"], +"image/png": ["png","x-png"], +"image/prs.btif": ["btif"], +"image/sgi": ["sgi"], +"image/svg+xml": ["svg","svgz"], +"image/tiff": ["tiff","tif"], +"image/vasa": ["mcf"], +"image/vnd.adobe.photoshop": ["psd"], +"image/vnd.dece.graphic": ["uvg","uvi","uvvg","uvvi"], +"image/vnd.djvu": ["djvu","djv"], +"image/vnd.dvb.subtitle": ["sub"], +"image/vnd.dwg": ["dwg","dxf","svf"], +"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.microsoft.icon": ["ico"], +"image/vnd.ms-modi": ["mdi"], +"image/vnd.ms-photo": ["wdp"], +"image/vnd.net-fpx": ["npx","fpx"], +"image/vnd.rn-realflash": ["rf"], +"image/vnd.rn-realpix": ["rp"], +"image/vnd.wap.wbmp": ["wbmp"], +"image/vnd.xiff": ["xif"], +"image/webp": ["webp"], +"image/x-3ds": ["3ds"], +"image/x-cmu-raster": ["ras"], +"image/x-cmx": ["cmx"], +"image/x-dwg": ["dwg","dxf","svf"], +"image/x-freehand": ["fh","fh4","fh5","fh7","fhc"], +"image/x-icon": ["ico"], +"image/x-jg": ["art"], +"image/x-jps": ["jps"], +"image/x-mrsid-image": ["sid"], +"image/x-niff": ["nif","niff"], +"image/x-pcx": ["pcx"], +"image/x-pict": ["pct","pic","pict"], +"image/x-portable-anymap": ["pnm"], +"image/x-portable-bitmap": ["pbm"], +"image/x-portable-graymap": ["pgm"], +"image/x-portable-greymap": ["pgm"], +"image/x-portable-pixmap": ["ppm"], +"image/x-quicktime": ["qif","qti","qtif"], +"image/x-rgb": ["rgb"], +"image/x-tga": ["tga"], +"image/x-tiff": ["tif","tiff"], +"image/x-windows-bmp": ["bmp"], +"image/x-xbitmap": ["xbm"], +"image/x-xbm": ["xbm"], +"image/x-xpixmap": ["xpm","pm"], +"image/x-xwd": ["xwd"], +"image/x-xwindowdump": ["xwd"], +"image/xbm": ["xbm"], +"image/xpm": ["xpm"], +"message/rfc822": ["eml","mht","mhtml","mime"], +"model/iges": ["iges","igs"], +"model/mesh": ["mesh","msh","silo"], +"model/vnd.collada+xml": ["dae"], +"model/vnd.dwf": ["dwf"], +"model/vnd.gdl": ["gdl"], +"model/vnd.gtw": ["gtw"], +"model/vnd.mts": ["mts"], +"model/vnd.vtu": ["vtu"], +"model/vrml": ["vrml","wrl","wrz"], +"model/x-pov": ["pov"], +"model/x3d+binary": ["x3db","x3dbz"], +"model/x3d+vrml": ["x3dv","x3dvz"], +"model/x3d+xml": ["x3d","x3dz"], +"multipart/x-gzip": ["gzip"], +"multipart/x-ustar": ["ustar"], +"multipart/x-zip": ["zip"], +"music/crescendo": ["mid","midi"], +"music/x-karaoke": ["kar"], +"paleovu/x-pv": ["pvu"], +"shockwave/director": ["cct"], +"text/asp": ["asp"], +"text/cache-manifest": ["appcache"], +"text/calendar": ["ics","ifb"], +"text/css": ["css"], +"text/csv": ["csv"], +"text/ecmascript": ["js"], +"text/html": ["html","acgi","htc","htm","htmls","htx","shtml"], +"text/javascript": ["js"], +"text/mcf": ["mcf"], +"text/n3": ["n3"], +"text/pascal": ["pas"], +"text/plain": ["txt","applescript","asc","ascx","ashx","asm","asmx","asp","aspx","axd","c","c++","cc","com","conf","cpp","cs","cxx","def","f","f90","asa","g","h","hh","hpp","idc","in","ini","jav","java","list","log","lst","m","mar","php","pl","rb","sdml","text","for"], +"text/prs.lines.tag": ["dsc"], +"text/richtext": ["rtx","rt","rtf"], +"text/rtf": ["rtf"], +"text/scriplet": ["wsc"], +"text/sgml": ["sgml","sgm"], +"text/tab-separated-values": ["tsv"], +"text/troff": ["man","me","ms","roff","t","tr"], +"text/turtle": ["ttl"], +"text/uri-list": ["uri","uni","unis","uris","urls"], +"text/vcard": ["vcard"], +"text/vnd.abc": ["abc"], +"text/vnd.curl": ["curl"], +"text/vnd.curl.dcurl": ["dcurl"], +"text/vnd.curl.mcurl": ["mcurl"], +"text/vnd.curl.scurl": ["scurl"], +"text/vnd.dvb.subtitle": ["sub"], +"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.rn-realtext": ["rt"], +"text/vnd.sun.j2me.app-descriptor": ["jad"], +"text/vnd.wap.wml": ["wml"], +"text/vnd.wap.wmlscript": ["wmls"], +"text/vtt": ["vtt"], +"text/webviewhtml": ["htt"], +"text/x-asm": ["asm","s"], +"text/x-audiosoft-intra": ["aip"], +"text/x-c": ["c","cc","cpp","cxx","dic","h","hh"], +"text/x-component": ["htc"], +"text/x-fortran": ["f","f77","f90","for"], +"text/x-h": ["h","hh"], +"text/x-java-source": ["jav","java"], +"text/x-la-asf": ["lsx"], +"text/x-m": ["m"], +"text/x-nfo": ["nfo"], +"text/x-opml": ["opml"], +"text/x-pascal": ["p","pas"], +"text/x-sass": ["sass"], +"text/x-script": ["hlb"], +"text/x-script.csh": ["csh"], +"text/x-script.elisp": ["el"], +"text/x-script.guile": ["scm"], +"text/x-script.ksh": ["ksh"], +"text/x-script.lisp": ["lsp"], +"text/x-script.perl": ["pl"], +"text/x-script.perl-module": ["pm"], +"text/x-script.phyton": ["py"], +"text/x-script.rexx": ["rexx"], +"text/x-script.scheme": ["scm"], +"text/x-script.sh": ["sh"], +"text/x-script.tcl": ["tcl"], +"text/x-script.tcsh": ["tcsh"], +"text/x-script.zsh": ["zsh"], +"text/x-scss": ["scss"], +"text/x-server-parsed-html": ["shtml","ssi"], +"text/x-setext": ["etx"], +"text/x-sfv": ["sfv"], +"text/x-sgml": ["sgm","sgml"], +"text/x-speech": ["spc","talk"], +"text/x-styl": ["styl"], +"text/x-uil": ["uil"], +"text/x-uuencode": ["uu","uue"], +"text/x-vcalendar": ["vcs"], +"text/x-vcard": ["vcf"], +"text/xml": ["resx","jcb","jcw","jmt","jmx","jcl","xsl","rhb","sqt","xml","jqz"], +"text/yaml": ["yaml","yml"], +"video/3gpp": ["3gp"], +"video/3gpp2": ["3g2"], +"video/animaflex": ["afl"], +"video/avi": ["avi"], +"video/avs-video": ["avs"], +"video/dl": ["dl"], +"video/fli": ["fli"], +"video/gl": ["gl"], +"video/h261": ["h261"], +"video/h263": ["h263"], +"video/h264": ["h264"], +"video/jpeg": ["jpgv"], +"video/jpm": ["jpgm","jpm"], +"video/mj2": ["mj2","mjp2"], +"video/mp4": ["mp4","f4v","m4v","mp4v","mpg4","fmp4"], +"video/mpeg": ["mpeg","m1v","m2v","mp2","mp3","mpa","mpe","mpg"], +"video/MP2T": ["ts"], +"video/msvideo": ["avi"], +"video/ogg": ["ogv"], +"video/quicktime": ["mov","3gp","moov","qt"], +"video/vdo": ["vdo"], +"video/vivo": ["viv","vivo"], +"video/vnd.dece.hd": ["uvh","uvvh"], +"video/vnd.dece.mobile": ["uvm","uvvm"], +"video/vnd.dece.pd": ["uvp","uvvp"], +"video/vnd.dece.sd": ["uvs","uvvs"], +"video/vnd.dece.video": ["uvv","uvvv"], +"video/vnd.dvb.file": ["dvb"], +"video/vnd.fvt": ["fvt"], +"video/vnd.mpegurl": ["m4u","mxu"], +"video/vnd.ms-playready.media.pyv": ["pyv"], +"video/vnd.rn-realvideo": ["rv"], +"video/vnd.uvvu.mp4": ["uvu","uvvu"], +"video/vnd.vivo": ["viv","vivo"], +"video/vosaic": ["vos"], +"video/webm": ["webm"], +"video/x-amt-demorun": ["xdr"], +"video/x-amt-showrun": ["xsr"], +"video/x-atomic3d-feature": ["fmf"], +"video/x-dl": ["dl"], +"video/x-dv": ["dv","dif"], +"video/x-f4v": ["f4v"], +"video/x-fli": ["fli"], +"video/x-flv": ["flv"], +"video/x-gl": ["gl"], +"video/x-isvideo": ["isu"], +"video/x-m4v": ["m4v"], +"video/x-matroska": ["mkv","mk3d","mks"], +"video/x-mng": ["mng"], +"video/x-motion-jpeg": ["mjpg"], +"video/x-mpeg": ["mp2","mp3"], +"video/x-mpeq2a": ["mp2"], +"video/x-ms-asf": ["asf","asx"], +"video/x-ms-asf-plugin": ["asx"], +"video/x-ms-vob": ["vob"], +"video/x-ms-wm": ["wm","avi"], +"video/x-ms-wmv": ["wmv"], +"video/x-ms-wmx": ["wmx"], +"video/x-ms-wvx": ["wvx"], +"video/x-msvideo": ["avi"], +"video/x-qtc": ["qtc"], +"video/x-scm": ["scm"], +"video/x-sgi-movie": ["movie","mv"], +"video/x-smv": ["smv"], +"windows/metafile": ["wmf"], +"www/mime": ["mime"], +"x-conference/x-cooltalk": ["ice"], +"x-music/x-midi": ["mid","midi"], +"x-world/x-3dmf": ["3dm","3dmf","qd3","qd3d"], +"x-world/x-svr": ["svr"], +"x-world/x-vrml": ["vrml","wrl","wrz"], +"x-world/x-vrt": ["vrt"], +"xgl/drawing": ["xgz"], +"xgl/movie": ["xmz"] +} \ No newline at end of file