file.mimetypes.inc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859
  1. <?php
  2. /**
  3. * @file
  4. * Provides mimetype mappings.
  5. */
  6. /**
  7. * Return an array of MIME extension mappings.
  8. *
  9. * Returns the mapping after modules have altered the default mapping.
  10. *
  11. * @return
  12. * Array of mimetypes correlated to the extensions that relate to them.
  13. *
  14. * @see file_get_mimetype()
  15. */
  16. function file_mimetype_mapping() {
  17. $mapping = &drupal_static(__FUNCTION__);
  18. if (!isset($mapping)) {
  19. $mapping = file_default_mimetype_mapping();
  20. // Allow modules to alter the default mapping.
  21. drupal_alter('file_mimetype_mapping', $mapping);
  22. }
  23. return $mapping;
  24. }
  25. /**
  26. * Default MIME extension mapping.
  27. *
  28. * @return
  29. * Array of mimetypes correlated to the extensions that relate to them.
  30. *
  31. * @see file_get_mimetype()
  32. */
  33. function file_default_mimetype_mapping() {
  34. return array(
  35. 'mimetypes' => array(
  36. 0 => 'application/andrew-inset',
  37. 1 => 'application/atom',
  38. 2 => 'application/atomcat+xml',
  39. 3 => 'application/atomserv+xml',
  40. 4 => 'application/cap',
  41. 5 => 'application/cu-seeme',
  42. 6 => 'application/dsptype',
  43. 7 => 'application/hta',
  44. 8 => 'application/java-archive',
  45. 9 => 'application/java-serialized-object',
  46. 10 => 'application/java-vm',
  47. 11 => 'application/mac-binhex40',
  48. 12 => 'application/mathematica',
  49. 13 => 'application/msaccess',
  50. 14 => 'application/msword',
  51. 15 => 'application/octet-stream',
  52. 16 => 'application/oda',
  53. 17 => 'application/ogg',
  54. 18 => 'application/pdf',
  55. 19 => 'application/pgp-keys',
  56. 20 => 'application/pgp-signature',
  57. 21 => 'application/pics-rules',
  58. 22 => 'application/postscript',
  59. 23 => 'application/rar',
  60. 24 => 'application/rdf+xml',
  61. 25 => 'application/rss+xml',
  62. 26 => 'application/rtf',
  63. 27 => 'application/smil',
  64. 28 => 'application/vnd.cinderella',
  65. 29 => 'application/vnd.google-earth.kml+xml',
  66. 30 => 'application/vnd.google-earth.kmz',
  67. 31 => 'application/vnd.mozilla.xul+xml',
  68. 32 => 'application/vnd.ms-excel',
  69. 33 => 'application/vnd.ms-excel.addin.macroEnabled.12',
  70. 34 => 'application/vnd.ms-excel.sheet.binary.macroEnabled.12',
  71. 35 => 'application/vnd.ms-excel.sheet.macroEnabled.12',
  72. 36 => 'application/vnd.ms-excel.template.macroEnabled.12',
  73. 37 => 'application/vnd.ms-pki.seccat',
  74. 38 => 'application/vnd.ms-pki.stl',
  75. 39 => 'application/vnd.ms-powerpoint',
  76. 40 => 'application/vnd.ms-powerpoint.addin.macroEnabled.12',
  77. 41 => 'application/vnd.ms-powerpoint.presentation.macroEnabled.12',
  78. 42 => 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12',
  79. 43 => 'application/vnd.ms-powerpoint.template.macroEnabled.12',
  80. 44 => 'application/vnd.ms-word.document.macroEnabled.12',
  81. 45 => 'application/vnd.ms-word.template.macroEnabled.12',
  82. 46 => 'application/vnd.ms-xpsdocument',
  83. 47 => 'application/vnd.oasis.opendocument.chart',
  84. 48 => 'application/vnd.oasis.opendocument.database',
  85. 49 => 'application/vnd.oasis.opendocument.formula',
  86. 50 => 'application/vnd.oasis.opendocument.graphics',
  87. 51 => 'application/vnd.oasis.opendocument.graphics-template',
  88. 52 => 'application/vnd.oasis.opendocument.image',
  89. 53 => 'application/vnd.oasis.opendocument.presentation',
  90. 54 => 'application/vnd.oasis.opendocument.presentation-template',
  91. 55 => 'application/vnd.oasis.opendocument.spreadsheet',
  92. 56 => 'application/vnd.oasis.opendocument.spreadsheet-template',
  93. 57 => 'application/vnd.oasis.opendocument.text',
  94. 58 => 'application/vnd.oasis.opendocument.text-master',
  95. 59 => 'application/vnd.oasis.opendocument.text-template',
  96. 60 => 'application/vnd.oasis.opendocument.text-web',
  97. 61 => 'application/vnd.openxmlformats-officedocument.presentationml.presentation',
  98. 62 => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow',
  99. 63 => 'application/vnd.openxmlformats-officedocument.presentationml.template',
  100. 64 => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
  101. 65 => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template',
  102. 66 => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
  103. 67 => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template',
  104. 68 => 'application/vnd.rim.cod',
  105. 69 => 'application/vnd.smaf',
  106. 70 => 'application/vnd.stardivision.calc',
  107. 71 => 'application/vnd.stardivision.chart',
  108. 72 => 'application/vnd.stardivision.draw',
  109. 73 => 'application/vnd.stardivision.impress',
  110. 74 => 'application/vnd.stardivision.math',
  111. 75 => 'application/vnd.stardivision.writer',
  112. 76 => 'application/vnd.stardivision.writer-global',
  113. 77 => 'application/vnd.sun.xml.calc',
  114. 78 => 'application/vnd.sun.xml.calc.template',
  115. 79 => 'application/vnd.sun.xml.draw',
  116. 80 => 'application/vnd.sun.xml.draw.template',
  117. 81 => 'application/vnd.sun.xml.impress',
  118. 82 => 'application/vnd.sun.xml.impress.template',
  119. 83 => 'application/vnd.sun.xml.math',
  120. 84 => 'application/vnd.sun.xml.writer',
  121. 85 => 'application/vnd.sun.xml.writer.global',
  122. 86 => 'application/vnd.sun.xml.writer.template',
  123. 87 => 'application/vnd.symbian.install',
  124. 88 => 'application/vnd.visio',
  125. 89 => 'application/vnd.wap.wbxml',
  126. 90 => 'application/vnd.wap.wmlc',
  127. 91 => 'application/vnd.wap.wmlscriptc',
  128. 92 => 'application/wordperfect',
  129. 93 => 'application/wordperfect5.1',
  130. 94 => 'application/x-123',
  131. 95 => 'application/x-7z-compressed',
  132. 96 => 'application/x-abiword',
  133. 97 => 'application/x-apple-diskimage',
  134. 98 => 'application/x-bcpio',
  135. 99 => 'application/x-bittorrent',
  136. 100 => 'application/x-cab',
  137. 101 => 'application/x-cbr',
  138. 102 => 'application/x-cbz',
  139. 103 => 'application/x-cdf',
  140. 104 => 'application/x-cdlink',
  141. 105 => 'application/x-chess-pgn',
  142. 106 => 'application/x-cpio',
  143. 107 => 'application/x-debian-package',
  144. 108 => 'application/x-director',
  145. 109 => 'application/x-dms',
  146. 110 => 'application/x-doom',
  147. 111 => 'application/x-dvi',
  148. 112 => 'application/x-flac',
  149. 113 => 'application/x-font',
  150. 114 => 'application/x-freemind',
  151. 115 => 'application/x-futuresplash',
  152. 116 => 'application/x-gnumeric',
  153. 117 => 'application/x-go-sgf',
  154. 118 => 'application/x-graphing-calculator',
  155. 119 => 'application/x-gtar',
  156. 120 => 'application/x-hdf',
  157. 121 => 'application/x-httpd-eruby',
  158. 122 => 'application/x-httpd-php',
  159. 123 => 'application/x-httpd-php-source',
  160. 124 => 'application/x-httpd-php3',
  161. 125 => 'application/x-httpd-php3-preprocessed',
  162. 126 => 'application/x-httpd-php4',
  163. 127 => 'application/x-ica',
  164. 128 => 'application/x-internet-signup',
  165. 129 => 'application/x-iphone',
  166. 130 => 'application/x-iso9660-image',
  167. 131 => 'application/x-java-jnlp-file',
  168. 132 => 'application/x-javascript',
  169. 133 => 'application/x-jmol',
  170. 134 => 'application/x-kchart',
  171. 135 => 'application/x-killustrator',
  172. 136 => 'application/x-koan',
  173. 137 => 'application/x-kpresenter',
  174. 138 => 'application/x-kspread',
  175. 139 => 'application/x-kword',
  176. 140 => 'application/x-latex',
  177. 141 => 'application/x-lha',
  178. 142 => 'application/x-lyx',
  179. 143 => 'application/x-lzh',
  180. 144 => 'application/x-lzx',
  181. 145 => 'application/x-maker',
  182. 146 => 'application/x-mif',
  183. 147 => 'application/x-ms-wmd',
  184. 148 => 'application/x-ms-wmz',
  185. 149 => 'application/x-msdos-program',
  186. 150 => 'application/x-msi',
  187. 151 => 'application/x-netcdf',
  188. 152 => 'application/x-ns-proxy-autoconfig',
  189. 153 => 'application/x-nwc',
  190. 154 => 'application/x-object',
  191. 155 => 'application/x-oz-application',
  192. 156 => 'application/x-pkcs7-certreqresp',
  193. 157 => 'application/x-pkcs7-crl',
  194. 158 => 'application/x-python-code',
  195. 159 => 'application/x-quicktimeplayer',
  196. 160 => 'application/x-redhat-package-manager',
  197. 161 => 'application/x-shar',
  198. 162 => 'application/x-shockwave-flash',
  199. 163 => 'application/x-stuffit',
  200. 164 => 'application/x-sv4cpio',
  201. 165 => 'application/x-sv4crc',
  202. 166 => 'application/x-tar',
  203. 167 => 'application/x-tcl',
  204. 168 => 'application/x-tex-gf',
  205. 169 => 'application/x-tex-pk',
  206. 170 => 'application/x-texinfo',
  207. 171 => 'application/x-trash',
  208. 172 => 'application/x-troff',
  209. 173 => 'application/x-troff-man',
  210. 174 => 'application/x-troff-me',
  211. 175 => 'application/x-troff-ms',
  212. 176 => 'application/x-ustar',
  213. 177 => 'application/x-wais-source',
  214. 178 => 'application/x-wingz',
  215. 179 => 'application/x-x509-ca-cert',
  216. 180 => 'application/x-xcf',
  217. 181 => 'application/x-xfig',
  218. 182 => 'application/x-xpinstall',
  219. 183 => 'application/xhtml+xml',
  220. 184 => 'application/xml',
  221. 185 => 'application/zip',
  222. 186 => 'audio/basic',
  223. 187 => 'audio/midi',
  224. 346 => 'audio/mp4',
  225. 188 => 'audio/mpeg',
  226. 189 => 'audio/ogg',
  227. 190 => 'audio/prs.sid',
  228. 191 => 'audio/x-aiff',
  229. 192 => 'audio/x-gsm',
  230. 193 => 'audio/x-mpegurl',
  231. 194 => 'audio/x-ms-wax',
  232. 195 => 'audio/x-ms-wma',
  233. 196 => 'audio/x-pn-realaudio',
  234. 197 => 'audio/x-realaudio',
  235. 198 => 'audio/x-scpls',
  236. 199 => 'audio/x-sd2',
  237. 200 => 'audio/x-wav',
  238. 201 => 'chemical/x-alchemy',
  239. 202 => 'chemical/x-cache',
  240. 203 => 'chemical/x-cache-csf',
  241. 204 => 'chemical/x-cactvs-binary',
  242. 205 => 'chemical/x-cdx',
  243. 206 => 'chemical/x-cerius',
  244. 207 => 'chemical/x-chem3d',
  245. 208 => 'chemical/x-chemdraw',
  246. 209 => 'chemical/x-cif',
  247. 210 => 'chemical/x-cmdf',
  248. 211 => 'chemical/x-cml',
  249. 212 => 'chemical/x-compass',
  250. 213 => 'chemical/x-crossfire',
  251. 214 => 'chemical/x-csml',
  252. 215 => 'chemical/x-ctx',
  253. 216 => 'chemical/x-cxf',
  254. 217 => 'chemical/x-embl-dl-nucleotide',
  255. 218 => 'chemical/x-galactic-spc',
  256. 219 => 'chemical/x-gamess-input',
  257. 220 => 'chemical/x-gaussian-checkpoint',
  258. 221 => 'chemical/x-gaussian-cube',
  259. 222 => 'chemical/x-gaussian-input',
  260. 223 => 'chemical/x-gaussian-log',
  261. 224 => 'chemical/x-gcg8-sequence',
  262. 225 => 'chemical/x-genbank',
  263. 226 => 'chemical/x-hin',
  264. 227 => 'chemical/x-isostar',
  265. 228 => 'chemical/x-jcamp-dx',
  266. 229 => 'chemical/x-kinemage',
  267. 230 => 'chemical/x-macmolecule',
  268. 231 => 'chemical/x-macromodel-input',
  269. 232 => 'chemical/x-mdl-molfile',
  270. 233 => 'chemical/x-mdl-rdfile',
  271. 234 => 'chemical/x-mdl-rxnfile',
  272. 235 => 'chemical/x-mdl-sdfile',
  273. 236 => 'chemical/x-mdl-tgf',
  274. 237 => 'chemical/x-mmcif',
  275. 238 => 'chemical/x-mol2',
  276. 239 => 'chemical/x-molconn-Z',
  277. 240 => 'chemical/x-mopac-graph',
  278. 241 => 'chemical/x-mopac-input',
  279. 242 => 'chemical/x-mopac-out',
  280. 243 => 'chemical/x-mopac-vib',
  281. 244 => 'chemical/x-ncbi-asn1-ascii',
  282. 245 => 'chemical/x-ncbi-asn1-binary',
  283. 246 => 'chemical/x-ncbi-asn1-spec',
  284. 247 => 'chemical/x-pdb',
  285. 248 => 'chemical/x-rosdal',
  286. 249 => 'chemical/x-swissprot',
  287. 250 => 'chemical/x-vamas-iso14976',
  288. 251 => 'chemical/x-vmd',
  289. 252 => 'chemical/x-xtel',
  290. 253 => 'chemical/x-xyz',
  291. 254 => 'image/gif',
  292. 255 => 'image/ief',
  293. 256 => 'image/jpeg',
  294. 257 => 'image/pcx',
  295. 258 => 'image/png',
  296. 259 => 'image/svg+xml',
  297. 260 => 'image/tiff',
  298. 261 => 'image/vnd.djvu',
  299. 262 => 'image/vnd.microsoft.icon',
  300. 263 => 'image/vnd.wap.wbmp',
  301. 264 => 'image/x-cmu-raster',
  302. 265 => 'image/x-coreldraw',
  303. 266 => 'image/x-coreldrawpattern',
  304. 267 => 'image/x-coreldrawtemplate',
  305. 268 => 'image/x-corelphotopaint',
  306. 269 => 'image/x-jg',
  307. 270 => 'image/x-jng',
  308. 271 => 'image/x-ms-bmp',
  309. 272 => 'image/x-photoshop',
  310. 273 => 'image/x-portable-anymap',
  311. 274 => 'image/x-portable-bitmap',
  312. 275 => 'image/x-portable-graymap',
  313. 276 => 'image/x-portable-pixmap',
  314. 277 => 'image/x-rgb',
  315. 278 => 'image/x-xbitmap',
  316. 279 => 'image/x-xpixmap',
  317. 280 => 'image/x-xwindowdump',
  318. 281 => 'message/rfc822',
  319. 282 => 'model/iges',
  320. 283 => 'model/mesh',
  321. 284 => 'model/vrml',
  322. 285 => 'text/calendar',
  323. 286 => 'text/css',
  324. 287 => 'text/csv',
  325. 288 => 'text/h323',
  326. 289 => 'text/html',
  327. 290 => 'text/iuls',
  328. 291 => 'text/mathml',
  329. 292 => 'text/plain',
  330. 293 => 'text/richtext',
  331. 294 => 'text/scriptlet',
  332. 295 => 'text/tab-separated-values',
  333. 296 => 'text/texmacs',
  334. 297 => 'text/vnd.sun.j2me.app-descriptor',
  335. 298 => 'text/vnd.wap.wml',
  336. 299 => 'text/vnd.wap.wmlscript',
  337. 300 => 'text/x-bibtex',
  338. 301 => 'text/x-boo',
  339. 302 => 'text/x-c++hdr',
  340. 303 => 'text/x-c++src',
  341. 304 => 'text/x-chdr',
  342. 305 => 'text/x-component',
  343. 306 => 'text/x-csh',
  344. 307 => 'text/x-csrc',
  345. 308 => 'text/x-diff',
  346. 309 => 'text/x-dsrc',
  347. 310 => 'text/x-haskell',
  348. 311 => 'text/x-java',
  349. 312 => 'text/x-literate-haskell',
  350. 313 => 'text/x-moc',
  351. 314 => 'text/x-pascal',
  352. 315 => 'text/x-pcs-gcd',
  353. 316 => 'text/x-perl',
  354. 317 => 'text/x-python',
  355. 318 => 'text/x-setext',
  356. 319 => 'text/x-sh',
  357. 320 => 'text/x-tcl',
  358. 321 => 'text/x-tex',
  359. 322 => 'text/x-vcalendar',
  360. 323 => 'text/x-vcard',
  361. 324 => 'video/3gpp',
  362. 325 => 'video/dl',
  363. 326 => 'video/dv',
  364. 327 => 'video/fli',
  365. 328 => 'video/gl',
  366. 329 => 'video/mp4',
  367. 330 => 'video/mpeg',
  368. 331 => 'video/ogg',
  369. 332 => 'video/quicktime',
  370. 333 => 'video/vnd.mpegurl',
  371. 347 => 'video/x-flv',
  372. 334 => 'video/x-la-asf',
  373. 348 => 'video/x-m4v',
  374. 335 => 'video/x-mng',
  375. 336 => 'video/x-ms-asf',
  376. 337 => 'video/x-ms-wm',
  377. 338 => 'video/x-ms-wmv',
  378. 339 => 'video/x-ms-wmx',
  379. 340 => 'video/x-ms-wvx',
  380. 341 => 'video/x-msvideo',
  381. 342 => 'video/x-sgi-movie',
  382. 343 => 'x-conference/x-cooltalk',
  383. 344 => 'x-epoc/x-sisx-app',
  384. 345 => 'x-world/x-vrml',
  385. ),
  386. // Extensions added to this list MUST be lower-case.
  387. 'extensions' => array(
  388. 'ez' => 0,
  389. 'atom' => 1,
  390. 'atomcat' => 2,
  391. 'atomsrv' => 3,
  392. 'cap' => 4,
  393. 'pcap' => 4,
  394. 'cu' => 5,
  395. 'tsp' => 6,
  396. 'hta' => 7,
  397. 'jar' => 8,
  398. 'ser' => 9,
  399. 'class' => 10,
  400. 'hqx' => 11,
  401. 'nb' => 12,
  402. 'mdb' => 13,
  403. 'dot' => 14,
  404. 'doc' => 14,
  405. 'bin' => 15,
  406. 'oda' => 16,
  407. 'ogx' => 17,
  408. 'pdf' => 18,
  409. 'key' => 19,
  410. 'pgp' => 20,
  411. 'prf' => 21,
  412. 'eps' => 22,
  413. 'ai' => 22,
  414. 'ps' => 22,
  415. 'rar' => 23,
  416. 'rdf' => 24,
  417. 'rss' => 25,
  418. 'rtf' => 26,
  419. 'smi' => 27,
  420. 'smil' => 27,
  421. 'cdy' => 28,
  422. 'kml' => 29,
  423. 'kmz' => 30,
  424. 'xul' => 31,
  425. 'xlb' => 32,
  426. 'xlt' => 32,
  427. 'xls' => 32,
  428. 'xlam' => 33,
  429. 'xlsb' => 34,
  430. 'xlsm' => 35,
  431. 'xltm' => 36,
  432. 'cat' => 37,
  433. 'stl' => 38,
  434. 'pps' => 39,
  435. 'ppt' => 39,
  436. 'ppam' => 40,
  437. 'pptm' => 41,
  438. 'ppsm' => 42,
  439. 'potm' => 43,
  440. 'docm' => 44,
  441. 'dotm' => 45,
  442. 'xps' => 46,
  443. 'odc' => 47,
  444. 'odb' => 48,
  445. 'odf' => 49,
  446. 'odg' => 50,
  447. 'otg' => 51,
  448. 'odi' => 52,
  449. 'odp' => 53,
  450. 'otp' => 54,
  451. 'ods' => 55,
  452. 'ots' => 56,
  453. 'odt' => 57,
  454. 'odm' => 58,
  455. 'ott' => 59,
  456. 'oth' => 60,
  457. 'pptx' => 61,
  458. 'ppsx' => 62,
  459. 'potx' => 63,
  460. 'xlsx' => 64,
  461. 'xltx' => 65,
  462. 'docx' => 66,
  463. 'dotx' => 67,
  464. 'cod' => 68,
  465. 'mmf' => 69,
  466. 'sdc' => 70,
  467. 'sds' => 71,
  468. 'sda' => 72,
  469. 'sdd' => 73,
  470. 'sdw' => 75,
  471. 'sgl' => 76,
  472. 'sxc' => 77,
  473. 'stc' => 78,
  474. 'sxd' => 79,
  475. 'std' => 80,
  476. 'sxi' => 81,
  477. 'sti' => 82,
  478. 'sxm' => 83,
  479. 'sxw' => 84,
  480. 'sxg' => 85,
  481. 'stw' => 86,
  482. 'sis' => 87,
  483. 'vsd' => 88,
  484. 'wbxml' => 89,
  485. 'wmlc' => 90,
  486. 'wmlsc' => 91,
  487. 'wpd' => 92,
  488. 'wp5' => 93,
  489. 'wk' => 94,
  490. '7z' => 95,
  491. 'abw' => 96,
  492. 'dmg' => 97,
  493. 'bcpio' => 98,
  494. 'torrent' => 99,
  495. 'cab' => 100,
  496. 'cbr' => 101,
  497. 'cbz' => 102,
  498. 'cdf' => 103,
  499. 'vcd' => 104,
  500. 'pgn' => 105,
  501. 'cpio' => 106,
  502. 'udeb' => 107,
  503. 'deb' => 107,
  504. 'dir' => 108,
  505. 'dxr' => 108,
  506. 'dcr' => 108,
  507. 'dms' => 109,
  508. 'wad' => 110,
  509. 'dvi' => 111,
  510. 'flac' => 112,
  511. 'pfa' => 113,
  512. 'pfb' => 113,
  513. 'pcf' => 113,
  514. 'gsf' => 113,
  515. 'pcf.z' => 113,
  516. 'mm' => 114,
  517. 'spl' => 115,
  518. 'gnumeric' => 116,
  519. 'sgf' => 117,
  520. 'gcf' => 118,
  521. 'taz' => 119,
  522. 'gtar' => 119,
  523. 'tgz' => 119,
  524. 'hdf' => 120,
  525. 'rhtml' => 121,
  526. 'phtml' => 122,
  527. 'pht' => 122,
  528. 'php' => 122,
  529. 'phps' => 123,
  530. 'php3' => 124,
  531. 'php3p' => 125,
  532. 'php4' => 126,
  533. 'ica' => 127,
  534. 'ins' => 128,
  535. 'isp' => 128,
  536. 'iii' => 129,
  537. 'iso' => 130,
  538. 'jnlp' => 131,
  539. 'js' => 132,
  540. 'jmz' => 133,
  541. 'chrt' => 134,
  542. 'kil' => 135,
  543. 'skp' => 136,
  544. 'skd' => 136,
  545. 'skm' => 136,
  546. 'skt' => 136,
  547. 'kpr' => 137,
  548. 'kpt' => 137,
  549. 'ksp' => 138,
  550. 'kwd' => 139,
  551. 'kwt' => 139,
  552. 'latex' => 140,
  553. 'lha' => 141,
  554. 'lyx' => 142,
  555. 'lzh' => 143,
  556. 'lzx' => 144,
  557. 'maker' => 145,
  558. 'frm' => 145,
  559. 'frame' => 145,
  560. 'fm' => 145,
  561. 'book' => 145,
  562. 'fb' => 145,
  563. 'fbdoc' => 145,
  564. 'mif' => 146,
  565. 'wmd' => 147,
  566. 'wmz' => 148,
  567. 'dll' => 149,
  568. 'bat' => 149,
  569. 'exe' => 149,
  570. 'com' => 149,
  571. 'msi' => 150,
  572. 'nc' => 151,
  573. 'pac' => 152,
  574. 'nwc' => 153,
  575. 'o' => 154,
  576. 'oza' => 155,
  577. 'p7r' => 156,
  578. 'crl' => 157,
  579. 'pyo' => 158,
  580. 'pyc' => 158,
  581. 'qtl' => 159,
  582. 'rpm' => 160,
  583. 'shar' => 161,
  584. 'swf' => 162,
  585. 'swfl' => 162,
  586. 'sitx' => 163,
  587. 'sit' => 163,
  588. 'sv4cpio' => 164,
  589. 'sv4crc' => 165,
  590. 'tar' => 166,
  591. 'gf' => 168,
  592. 'pk' => 169,
  593. 'texi' => 170,
  594. 'texinfo' => 170,
  595. 'sik' => 171,
  596. '~' => 171,
  597. 'bak' => 171,
  598. '%' => 171,
  599. 'old' => 171,
  600. 't' => 172,
  601. 'roff' => 172,
  602. 'tr' => 172,
  603. 'man' => 173,
  604. 'me' => 174,
  605. 'ms' => 175,
  606. 'ustar' => 176,
  607. 'src' => 177,
  608. 'wz' => 178,
  609. 'crt' => 179,
  610. 'xcf' => 180,
  611. 'fig' => 181,
  612. 'xpi' => 182,
  613. 'xht' => 183,
  614. 'xhtml' => 183,
  615. 'xml' => 184,
  616. 'xsl' => 184,
  617. 'zip' => 185,
  618. 'au' => 186,
  619. 'snd' => 186,
  620. 'mid' => 187,
  621. 'midi' => 187,
  622. 'kar' => 187,
  623. 'mpega' => 188,
  624. 'mpga' => 188,
  625. 'm4a' => 188,
  626. 'mp3' => 188,
  627. 'mp2' => 188,
  628. 'ogg' => 189,
  629. 'oga' => 189,
  630. 'spx' => 189,
  631. 'sid' => 190,
  632. 'aif' => 191,
  633. 'aiff' => 191,
  634. 'aifc' => 191,
  635. 'gsm' => 192,
  636. 'm3u' => 193,
  637. 'wax' => 194,
  638. 'wma' => 195,
  639. 'rm' => 196,
  640. 'ram' => 196,
  641. 'ra' => 197,
  642. 'pls' => 198,
  643. 'sd2' => 199,
  644. 'wav' => 200,
  645. 'alc' => 201,
  646. 'cac' => 202,
  647. 'cache' => 202,
  648. 'csf' => 203,
  649. 'cascii' => 204,
  650. 'cbin' => 204,
  651. 'ctab' => 204,
  652. 'cdx' => 205,
  653. 'cer' => 206,
  654. 'c3d' => 207,
  655. 'chm' => 208,
  656. 'cif' => 209,
  657. 'cmdf' => 210,
  658. 'cml' => 211,
  659. 'cpa' => 212,
  660. 'bsd' => 213,
  661. 'csml' => 214,
  662. 'csm' => 214,
  663. 'ctx' => 215,
  664. 'cxf' => 216,
  665. 'cef' => 216,
  666. 'emb' => 217,
  667. 'embl' => 217,
  668. 'spc' => 218,
  669. 'gam' => 219,
  670. 'inp' => 219,
  671. 'gamin' => 219,
  672. 'fchk' => 220,
  673. 'fch' => 220,
  674. 'cub' => 221,
  675. 'gau' => 222,
  676. 'gjf' => 222,
  677. 'gjc' => 222,
  678. 'gal' => 223,
  679. 'gcg' => 224,
  680. 'gen' => 225,
  681. 'hin' => 226,
  682. 'istr' => 227,
  683. 'ist' => 227,
  684. 'dx' => 228,
  685. 'jdx' => 228,
  686. 'kin' => 229,
  687. 'mcm' => 230,
  688. 'mmd' => 231,
  689. 'mmod' => 231,
  690. 'mol' => 232,
  691. 'rd' => 233,
  692. 'rxn' => 234,
  693. 'sdf' => 235,
  694. 'sd' => 235,
  695. 'tgf' => 236,
  696. 'mcif' => 237,
  697. 'mol2' => 238,
  698. 'b' => 239,
  699. 'gpt' => 240,
  700. 'mopcrt' => 241,
  701. 'zmt' => 241,
  702. 'mpc' => 241,
  703. 'dat' => 241,
  704. 'mop' => 241,
  705. 'moo' => 242,
  706. 'mvb' => 243,
  707. 'prt' => 244,
  708. 'aso' => 245,
  709. 'val' => 245,
  710. 'asn' => 246,
  711. 'ent' => 247,
  712. 'pdb' => 247,
  713. 'ros' => 248,
  714. 'sw' => 249,
  715. 'vms' => 250,
  716. 'vmd' => 251,
  717. 'xtel' => 252,
  718. 'xyz' => 253,
  719. 'gif' => 254,
  720. 'ief' => 255,
  721. 'jpeg' => 256,
  722. 'jpe' => 256,
  723. 'jpg' => 256,
  724. 'pcx' => 257,
  725. 'png' => 258,
  726. 'svgz' => 259,
  727. 'svg' => 259,
  728. 'tif' => 260,
  729. 'tiff' => 260,
  730. 'djvu' => 261,
  731. 'djv' => 261,
  732. 'ico' => 262,
  733. 'wbmp' => 263,
  734. 'ras' => 264,
  735. 'cdr' => 265,
  736. 'pat' => 266,
  737. 'cdt' => 267,
  738. 'cpt' => 268,
  739. 'art' => 269,
  740. 'jng' => 270,
  741. 'bmp' => 271,
  742. 'psd' => 272,
  743. 'pnm' => 273,
  744. 'pbm' => 274,
  745. 'pgm' => 275,
  746. 'ppm' => 276,
  747. 'rgb' => 277,
  748. 'xbm' => 278,
  749. 'xpm' => 279,
  750. 'xwd' => 280,
  751. 'eml' => 281,
  752. 'igs' => 282,
  753. 'iges' => 282,
  754. 'silo' => 283,
  755. 'msh' => 283,
  756. 'mesh' => 283,
  757. 'icz' => 285,
  758. 'ics' => 285,
  759. 'css' => 286,
  760. 'csv' => 287,
  761. '323' => 288,
  762. 'html' => 289,
  763. 'htm' => 289,
  764. 'shtml' => 289,
  765. 'uls' => 290,
  766. 'mml' => 291,
  767. 'txt' => 292,
  768. 'pot' => 292,
  769. 'text' => 292,
  770. 'asc' => 292,
  771. 'rtx' => 293,
  772. 'wsc' => 294,
  773. 'sct' => 294,
  774. 'tsv' => 295,
  775. 'ts' => 296,
  776. 'tm' => 296,
  777. 'jad' => 297,
  778. 'wml' => 298,
  779. 'wmls' => 299,
  780. 'bib' => 300,
  781. 'boo' => 301,
  782. 'hpp' => 302,
  783. 'hh' => 302,
  784. 'h++' => 302,
  785. 'hxx' => 302,
  786. 'cxx' => 303,
  787. 'cc' => 303,
  788. 'cpp' => 303,
  789. 'c++' => 303,
  790. 'h' => 304,
  791. 'htc' => 305,
  792. 'csh' => 306,
  793. 'c' => 307,
  794. 'patch' => 308,
  795. 'diff' => 308,
  796. 'd' => 309,
  797. 'hs' => 310,
  798. 'java' => 311,
  799. 'lhs' => 312,
  800. 'moc' => 313,
  801. 'pas' => 314,
  802. 'p' => 314,
  803. 'gcd' => 315,
  804. 'pm' => 316,
  805. 'pl' => 316,
  806. 'py' => 317,
  807. 'etx' => 318,
  808. 'sh' => 319,
  809. 'tk' => 320,
  810. 'tcl' => 320,
  811. 'cls' => 321,
  812. 'ltx' => 321,
  813. 'sty' => 321,
  814. 'tex' => 321,
  815. 'vcs' => 322,
  816. 'vcf' => 323,
  817. '3gp' => 324,
  818. 'dl' => 325,
  819. 'dif' => 326,
  820. 'dv' => 326,
  821. 'fli' => 327,
  822. 'gl' => 328,
  823. 'mp4' => 329,
  824. 'f4v' => 329,
  825. 'f4p' => 329,
  826. 'mpe' => 330,
  827. 'mpeg' => 330,
  828. 'mpg' => 330,
  829. 'ogv' => 331,
  830. 'qt' => 332,
  831. 'mov' => 332,
  832. 'mxu' => 333,
  833. 'lsf' => 334,
  834. 'lsx' => 334,
  835. 'mng' => 335,
  836. 'asx' => 336,
  837. 'asf' => 336,
  838. 'wm' => 337,
  839. 'wmv' => 338,
  840. 'wmx' => 339,
  841. 'wvx' => 340,
  842. 'avi' => 341,
  843. 'movie' => 342,
  844. 'ice' => 343,
  845. 'sisx' => 344,
  846. 'wrl' => 345,
  847. 'vrm' => 345,
  848. 'vrml' => 345,
  849. 'f4a' => 346,
  850. 'f4b' => 346,
  851. 'flv' => 347,
  852. 'm4v' => 348,
  853. ),
  854. );
  855. }