vagrant-unbundled 2.2.18.0 → 2.2.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +15 -0
  3. data/Gemfile.lock +6 -6
  4. data/contrib/zsh/generate_zsh_completion.rb +2 -2
  5. data/lib/vagrant/errors.rb +8 -0
  6. data/plugins/commands/upload/command.rb +1 -1
  7. data/plugins/guests/atomic/guest.rb +1 -1
  8. data/plugins/guests/coreos/cap/configure_networks.rb +65 -0
  9. data/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +6 -3
  10. data/plugins/guests/suse/cap/halt.rb +5 -1
  11. data/plugins/guests/windows/cap/rsync.rb +5 -1
  12. data/plugins/hosts/darwin/cap/path.rb +4 -0
  13. data/plugins/hosts/darwin/cap/version.rb +23 -0
  14. data/plugins/hosts/darwin/plugin.rb +5 -0
  15. data/plugins/hosts/windows/cap/ssh.rb +1 -1
  16. data/plugins/providers/virtualbox/action/network.rb +39 -2
  17. data/plugins/provisioners/chef/cap/freebsd/chef_installed.rb +5 -3
  18. data/plugins/provisioners/chef/cap/linux/chef_installed.rb +5 -3
  19. data/plugins/provisioners/chef/cap/omnios/chef_installed.rb +7 -5
  20. data/plugins/provisioners/chef/cap/windows/chef_installed.rb +3 -2
  21. data/templates/locales/en.yml +25 -0
  22. data/vagrant.gemspec +1 -1
  23. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/CONTRIBUTING.md +23 -0
  24. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/CONTRIBUTORS.md +140 -0
  25. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/LICENSE.md +20 -0
  26. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/README.md +492 -0
  27. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/data/cacert.pem +3232 -0
  28. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/excon.gemspec +45 -0
  29. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/connection.rb +599 -0
  30. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/constants.rb +172 -0
  31. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/error.rb +229 -0
  32. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/extensions/uri.rb +34 -0
  33. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/headers.rb +85 -0
  34. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/instrumentors/logging_instrumentor.rb +48 -0
  35. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/instrumentors/standard_instrumentor.rb +21 -0
  36. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/base.rb +31 -0
  37. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/capture_cookies.rb +32 -0
  38. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/decompress.rb +44 -0
  39. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/escape_path.rb +12 -0
  40. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/expects.rb +25 -0
  41. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/idempotent.rb +57 -0
  42. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/instrumentor.rb +49 -0
  43. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/mock.rb +61 -0
  44. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/redirect_follower.rb +87 -0
  45. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/response_parser.rb +16 -0
  46. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/pretty_printer.rb +39 -0
  47. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/response.rb +234 -0
  48. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/socket.rb +297 -0
  49. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/ssl_socket.rb +194 -0
  50. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/exec.rb +26 -0
  51. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/puma.rb +23 -0
  52. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/unicorn.rb +40 -0
  53. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/webrick.rb +26 -0
  54. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/server.rb +106 -0
  55. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/unix_socket.rb +42 -0
  56. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/utils.rb +143 -0
  57. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/version.rb +4 -0
  58. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon.rb +255 -0
  59. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/MIT-LICENSE +20 -0
  60. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/README.md +122 -0
  61. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/base.rb +289 -0
  62. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cache.rb +113 -0
  63. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cache_file.rb +36 -0
  64. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cascade.rb +56 -0
  65. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/chain.rb +130 -0
  66. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/fallbacks.rb +97 -0
  67. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/flatten.rb +118 -0
  68. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/gettext.rb +85 -0
  69. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/interpolation_compiler.rb +123 -0
  70. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/key_value.rb +206 -0
  71. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/memoize.rb +54 -0
  72. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/metadata.rb +71 -0
  73. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/pluralization.rb +55 -0
  74. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/simple.rb +108 -0
  75. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/transliterator.rb +108 -0
  76. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend.rb +21 -0
  77. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/config.rb +165 -0
  78. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/core_ext/hash.rb +59 -0
  79. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/exceptions.rb +111 -0
  80. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext/helpers.rb +75 -0
  81. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext/po_parser.rb +329 -0
  82. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext.rb +28 -0
  83. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/interpolate/ruby.rb +39 -0
  84. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/fallbacks.rb +99 -0
  85. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/parents.rb +24 -0
  86. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/rfc4646.rb +74 -0
  87. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/simple.rb +39 -0
  88. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag.rb +28 -0
  89. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale.rb +8 -0
  90. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/middleware.rb +17 -0
  91. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/basics.rb +60 -0
  92. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/defaults.rb +52 -0
  93. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/interpolation.rb +163 -0
  94. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/link.rb +66 -0
  95. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date.rb +117 -0
  96. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date_time.rb +103 -0
  97. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/procs.rb +117 -0
  98. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/time.rb +103 -0
  99. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization.rb +19 -0
  100. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/lookup.rb +81 -0
  101. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/pluralization.rb +35 -0
  102. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/procs.rb +60 -0
  103. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests.rb +14 -0
  104. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/version.rb +5 -0
  105. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n.rb +415 -0
  106. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Code-of-Conduct.md +73 -0
  107. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Contributing.md +132 -0
  108. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/History.md +269 -0
  109. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Licence.md +25 -0
  110. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Manifest.txt +31 -0
  111. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/README.rdoc +194 -0
  112. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Rakefile +270 -0
  113. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/type/columnar.rb +57 -0
  114. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/type.rb +634 -0
  115. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/_columnar.rb +137 -0
  116. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/cache.rb +58 -0
  117. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/columnar.rb +3 -0
  118. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/container.rb +96 -0
  119. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/deprecations.rb +36 -0
  120. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/full.rb +19 -0
  121. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/loader.rb +159 -0
  122. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/logger.rb +37 -0
  123. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/registry.rb +90 -0
  124. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types.rb +233 -0
  125. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime-types.rb +3 -0
  126. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/bad-fixtures/malformed +9 -0
  127. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/json.json +1 -0
  128. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/old-data +9 -0
  129. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/yaml.yaml +55 -0
  130. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/minitest_helper.rb +11 -0
  131. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_type.rb +621 -0
  132. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types.rb +169 -0
  133. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_cache.rb +118 -0
  134. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_class.rb +159 -0
  135. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_lazy.rb +49 -0
  136. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_loader.rb +32 -0
  137. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Code-of-Conduct.md +75 -0
  138. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Contributing.md +241 -0
  139. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/History.md +494 -0
  140. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Licence.md +24 -0
  141. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Manifest.txt +34 -0
  142. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/README.md +73 -0
  143. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Rakefile +155 -0
  144. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/content_type_mime.db +878 -0
  145. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/ext_mime.db +1198 -0
  146. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime-types.json +1 -0
  147. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.content_type.column +2376 -0
  148. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.docs.column +2376 -0
  149. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.encoding.column +2376 -0
  150. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.flags.column +2376 -0
  151. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.friendly.column +2376 -0
  152. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.pext.column +2376 -0
  153. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.use_instead.column +2376 -0
  154. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.xrefs.column +2376 -0
  155. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/lib/mime/types/data.rb +21 -0
  156. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/lib/mime-types-data.rb +3 -0
  157. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/application.yaml +17254 -0
  158. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/audio.yaml +1716 -0
  159. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/chemical.yaml +71 -0
  160. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/conference.yaml +9 -0
  161. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/drawing.yaml +15 -0
  162. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/font.yaml +65 -0
  163. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/image.yaml +1251 -0
  164. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/message.yaml +200 -0
  165. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/model.yaml +390 -0
  166. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/multipart.yaml +179 -0
  167. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/provisional-standard-types.yaml +129 -0
  168. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/text.yaml +1166 -0
  169. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/video.yaml +1121 -0
  170. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/world.yaml +8 -0
  171. data/vendor/bundle/ruby/3.0.0/specifications/excon-0.89.0.gemspec +58 -0
  172. data/vendor/bundle/ruby/3.0.0/specifications/i18n-1.8.11.gemspec +32 -0
  173. data/vendor/bundle/ruby/3.0.0/specifications/mime-types-3.4.1.gemspec +63 -0
  174. data/vendor/bundle/ruby/3.0.0/specifications/mime-types-data-3.2021.1115.gemspec +54 -0
  175. data/version.txt +1 -1
  176. metadata +157 -4
@@ -0,0 +1,2376 @@
1
+ -
2
+ -
3
+ -
4
+ -
5
+ -
6
+ -
7
+ -
8
+ -
9
+ -
10
+ -
11
+ -
12
+ -
13
+ -
14
+ -
15
+ -
16
+ -
17
+ -
18
+ -
19
+ -
20
+ -
21
+ -
22
+ -
23
+ -
24
+ -
25
+ -
26
+ en^Andrew Toolkit
27
+ -
28
+ -
29
+ en^Applixware
30
+ -
31
+ -
32
+ -
33
+ en^Atom Syndication Format
34
+ en^Atom Publishing Protocol
35
+ -
36
+ -
37
+ en^Atom Publishing Protocol Service Document
38
+ -
39
+ -
40
+ -
41
+ -
42
+ -
43
+ -
44
+ -
45
+ -
46
+ -
47
+ -
48
+ -
49
+ -
50
+ -
51
+ -
52
+ -
53
+ -
54
+ -
55
+ -
56
+ -
57
+ -
58
+ -
59
+ -
60
+ en^Voice Browser Call Control
61
+ -
62
+ en^Cloud Data Management Interface (CDMI) - Capability
63
+ en^Cloud Data Management Interface (CDMI) - Contaimer
64
+ en^Cloud Data Management Interface (CDMI) - Domain
65
+ en^Cloud Data Management Interface (CDMI) - Object
66
+ en^Cloud Data Management Interface (CDMI) - Queue
67
+ -
68
+ -
69
+ -
70
+ -
71
+ -
72
+ -
73
+ -
74
+ -
75
+ -
76
+ -
77
+ -
78
+ -
79
+ -
80
+ -
81
+ -
82
+ -
83
+ -
84
+ -
85
+ -
86
+ -
87
+ -
88
+ -
89
+ -
90
+ -
91
+ en^CU-SeeMe
92
+ -
93
+ -
94
+ -
95
+ -
96
+ -
97
+ en^Web Distributed Authoring and Versioning
98
+ -
99
+ -
100
+ -
101
+ -
102
+ -
103
+ -
104
+ -
105
+ -
106
+ -
107
+ -
108
+ -
109
+ -
110
+ -
111
+ -
112
+ -
113
+ -
114
+ en^Data Structure for the Security Suitability of Cryptographic Algorithms
115
+ en^Data Structure for the Security Suitability of Cryptographic Algorithms
116
+ -
117
+ -
118
+ en^ECMAScript
119
+ -
120
+ -
121
+ -
122
+ -
123
+ -
124
+ -
125
+ -
126
+ -
127
+ -
128
+ -
129
+ -
130
+ -
131
+ -
132
+ -
133
+ -
134
+ en^Extensible MultiModal Annotation
135
+ -
136
+ -
137
+ -
138
+ en^Electronic Publication
139
+ -
140
+ -
141
+ -
142
+ en^Efficient XML Interchange
143
+ -
144
+ -
145
+ -
146
+ -
147
+ -
148
+ -
149
+ -
150
+ -
151
+ -
152
+ -
153
+ en^Portable Font Resource
154
+ en^Web Open Font Format
155
+ -
156
+ -
157
+ -
158
+ -
159
+ -
160
+ -
161
+ -
162
+ -
163
+ -
164
+ -
165
+ -
166
+ -
167
+ -
168
+ -
169
+ -
170
+ -
171
+ -
172
+ en^Hyperstudio
173
+ -
174
+ -
175
+ -
176
+ -
177
+ -
178
+ -
179
+ -
180
+ -
181
+ -
182
+ -
183
+ -
184
+ -
185
+ -
186
+ -
187
+ -
188
+ en^Internet Protocol Flow Information Export
189
+ -
190
+ -
191
+ -
192
+ en^Java Archive
193
+ en^Java Serialized Object
194
+ en^Java Bytecode File
195
+ en^JavaScript
196
+ -
197
+ -
198
+ -
199
+ -
200
+ -
201
+ en^JavaScript Object Notation (JSON)
202
+ -
203
+ -
204
+ -
205
+ -
206
+ -
207
+ -
208
+ -
209
+ -
210
+ -
211
+ -
212
+ -
213
+ -
214
+ -
215
+ -
216
+ -
217
+ -
218
+ -
219
+ -
220
+ en^Macintosh BinHex 4.0
221
+ en^Compact Pro
222
+ -
223
+ -
224
+ en^Metadata Authority Description Schema
225
+ -
226
+ en^MARC Formats
227
+ en^MARC21 XML Schema
228
+ -
229
+ en^Mathematica Notebooks
230
+ -
231
+ en^Mathematical Markup Language
232
+ -
233
+ -
234
+ -
235
+ -
236
+ -
237
+ -
238
+ -
239
+ -
240
+ -
241
+ -
242
+ -
243
+ -
244
+ -
245
+ en^Mbox database files
246
+ -
247
+ -
248
+ en^Media Server Control Markup Language
249
+ -
250
+ -
251
+ en^Metalink
252
+ en^Metadata Encoding and Transmission Standard
253
+ -
254
+ -
255
+ -
256
+ -
257
+ -
258
+ -
259
+ en^Metadata Object Description Schema
260
+ -
261
+ -
262
+ -
263
+ -
264
+ en^MPEG-21
265
+ en^MPEG4
266
+ -
267
+ -
268
+ -
269
+ -
270
+ -
271
+ -
272
+ -
273
+ en^Microsoft Word
274
+ -
275
+ -
276
+ en^Material Exchange Format
277
+ -
278
+ -
279
+ -
280
+ -
281
+ -
282
+ -
283
+ -
284
+ -
285
+ -
286
+ -
287
+ -
288
+ -
289
+ -
290
+ -
291
+ en^Binary Data
292
+ en^Office Document Architecture
293
+ -
294
+ -
295
+ -
296
+ en^Open eBook Publication Structure
297
+ en^Ogg
298
+ -
299
+ en^Microsoft OneNote
300
+ -
301
+ -
302
+ -
303
+ -
304
+ -
305
+ -
306
+ -
307
+ -
308
+ en^XML Patch Framework
309
+ en^Adobe Portable Document Format
310
+ -
311
+ -
312
+ en^Pretty Good Privacy
313
+ -
314
+ en^Pretty Good Privacy - Signature
315
+ en^PICSRules
316
+ -
317
+ -
318
+ en^PKCS #10 - Certification Request Standard
319
+ -
320
+ en^PKCS #7 - Cryptographic Message Syntax Standard
321
+ en^PKCS #7 - Cryptographic Message Syntax Standard
322
+ en^PKCS #8 - Private-Key Information Syntax Standard
323
+ -
324
+ en^Attribute Certificate
325
+ en^Internet Public Key Infrastructure - Certificate
326
+ en^Internet Public Key Infrastructure - Certificate Revocation Lists
327
+ -
328
+ en^Internet Public Key Infrastructure - Certification Path
329
+ en^Internet Public Key Infrastructure - Certificate Management Protocole
330
+ en^Pronunciation Lexicon Specification
331
+ -
332
+ en^PostScript
333
+ -
334
+ -
335
+ -
336
+ -
337
+ -
338
+ -
339
+ -
340
+ en^CU-Writer
341
+ -
342
+ -
343
+ -
344
+ -
345
+ -
346
+ -
347
+ en^Portable Symmetric Key Container
348
+ -
349
+ -
350
+ -
351
+ -
352
+ -
353
+ en^Resource Description Framework
354
+ en^IMS Networks
355
+ en^Relax NG Compact Syntax
356
+ -
357
+ -
358
+ -
359
+ -
360
+ en^XML Resource Lists
361
+ en^XML Resource Lists Diff
362
+ -
363
+ -
364
+ -
365
+ -
366
+ en^XML Resource Lists
367
+ -
368
+ -
369
+ -
370
+ -
371
+ -
372
+ -
373
+ -
374
+ -
375
+ -
376
+ en^Really Simple Discovery
377
+ en^RSS - Really Simple Syndication
378
+ en^Rich Text Format
379
+ -
380
+ -
381
+ -
382
+ -
383
+ -
384
+ -
385
+ -
386
+ en^Systems Biology Markup Language
387
+ -
388
+ -
389
+ en^Server-Based Certificate Validation Protocol - Validation Request
390
+ en^Server-Based Certificate Validation Protocol - Validation Response
391
+ en^Server-Based Certificate Validation Protocol - Validation Policies - Request
392
+ en^Server-Based Certificate Validation Protocol - Validation Policies - Response
393
+ en^Session Description Protocol
394
+ -
395
+ -
396
+ -
397
+ -
398
+ -
399
+ -
400
+ -
401
+ -
402
+ -
403
+ -
404
+ -
405
+ -
406
+ -
407
+ -
408
+ -
409
+ -
410
+ en^Secure Electronic Transaction - Payment
411
+ -
412
+ en^Secure Electronic Transaction - Registration
413
+ -
414
+ -
415
+ en^S Hexdump Format
416
+ -
417
+ -
418
+ -
419
+ -
420
+ -
421
+ -
422
+ -
423
+ -
424
+ -
425
+ en^Synchronized Multimedia Integration Language
426
+ -
427
+ -
428
+ -
429
+ -
430
+ en^SPARQL - Query
431
+ en^SPARQL - Results
432
+ -
433
+ -
434
+ -
435
+ en^Speech Recognition Grammar Specification
436
+ en^Speech Recognition Grammar Specification - XML
437
+ en^Search/Retrieve via URL Response Format
438
+ -
439
+ en^Speech Synthesis Markup Language
440
+ -
441
+ -
442
+ -
443
+ -
444
+ -
445
+ -
446
+ -
447
+ -
448
+ -
449
+ -
450
+ -
451
+ -
452
+ -
453
+ -
454
+ -
455
+ -
456
+ en^Text Encoding and Interchange
457
+ -
458
+ en^Sharing Transaction Fraud Data
459
+ -
460
+ -
461
+ en^Time Stamped Data Envelope
462
+ -
463
+ -
464
+ -
465
+ -
466
+ -
467
+ -
468
+ -
469
+ -
470
+ -
471
+ -
472
+ -
473
+ -
474
+ -
475
+ -
476
+ -
477
+ -
478
+ -
479
+ -
480
+ -
481
+ -
482
+ -
483
+ -
484
+ -
485
+ -
486
+ -
487
+ -
488
+ -
489
+ -
490
+ -
491
+ -
492
+ -
493
+ -
494
+ -
495
+ -
496
+ -
497
+ -
498
+ -
499
+ -
500
+ -
501
+ -
502
+ -
503
+ -
504
+ -
505
+ -
506
+ -
507
+ -
508
+ -
509
+ -
510
+ -
511
+ -
512
+ -
513
+ -
514
+ -
515
+ -
516
+ -
517
+ -
518
+ -
519
+ -
520
+ -
521
+ -
522
+ -
523
+ -
524
+ en^3rd Generation Partnership Project - Pic Large
525
+ en^3rd Generation Partnership Project - Pic Small
526
+ en^3rd Generation Partnership Project - Pic Var
527
+ -
528
+ -
529
+ -
530
+ -
531
+ -
532
+ -
533
+ -
534
+ -
535
+ -
536
+ en^3rd Generation Partnership Project - Transaction Capabilities Application Part
537
+ -
538
+ en^3M Post It Notes
539
+ en^Simply Accounting
540
+ en^Simply Accounting - Data Import
541
+ en^ACU Cobol
542
+ en^ACU Cobol
543
+ en^Adobe AIR Application
544
+ -
545
+ -
546
+ en^Adobe Flex Project
547
+ -
548
+ en^Adobe XML Data Package
549
+ en^Adobe XML Forms Data Format
550
+ -
551
+ -
552
+ -
553
+ -
554
+ -
555
+ -
556
+ -
557
+ -
558
+ -
559
+ -
560
+ -
561
+ -
562
+ -
563
+ -
564
+ -
565
+ -
566
+ en^Ahead AIR Application
567
+ en^AirZip FileSECURE
568
+ en^AirZip FileSECURE
569
+ -
570
+ en^Amazon Kindle eBook format
571
+ -
572
+ en^Active Content Compression
573
+ en^AmigaDE
574
+ -
575
+ -
576
+ en^Android Package Archive
577
+ -
578
+ en^ANSER-WEB Terminal Client - Certificate Issue
579
+ en^ANSER-WEB Terminal Client - Web Funds Transfer
580
+ en^Antix Game Player
581
+ -
582
+ -
583
+ -
584
+ -
585
+ -
586
+ -
587
+ -
588
+ -
589
+ en^Apple Installer Package
590
+ -
591
+ en^Multimedia Playlist Unicode
592
+ -
593
+ -
594
+ -
595
+ -
596
+ en^Arista Networks Software Image
597
+ -
598
+ -
599
+ -
600
+ en^Audiograph
601
+ -
602
+ -
603
+ -
604
+ -
605
+ -
606
+ -
607
+ -
608
+ -
609
+ -
610
+ -
611
+ -
612
+ -
613
+ -
614
+ en^Blueice Research Multipass
615
+ -
616
+ -
617
+ en^BMI Drawing Data Interchange
618
+ -
619
+ -
620
+ en^BusinessObjects
621
+ -
622
+ -
623
+ -
624
+ -
625
+ -
626
+ -
627
+ -
628
+ en^CambridgeSoft Chem Draw
629
+ -
630
+ en^Karaoke on Chipnuts Chipsets
631
+ -
632
+ en^Interactive Geometry Software Cinderella
633
+ -
634
+ -
635
+ en^Claymore Data Files
636
+ en^RetroPlatform Player
637
+ en^Clonk Game
638
+ en^ClueTrust CartoMobile - Config
639
+ en^ClueTrust CartoMobile - Config Package
640
+ -
641
+ -
642
+ -
643
+ -
644
+ -
645
+ -
646
+ -
647
+ -
648
+ -
649
+ -
650
+ -
651
+ -
652
+ -
653
+ en^Sixth Floor Media - CommonSpace
654
+ en^CIM Database
655
+ -
656
+ en^CosmoCaller
657
+ en^CrickSoftware - Clicker
658
+ en^CrickSoftware - Clicker - Keyboard
659
+ en^CrickSoftware - Clicker - Palette
660
+ en^CrickSoftware - Clicker - Template
661
+ en^CrickSoftware - Clicker - Wordbank
662
+ en^Critical Tools - PERT Chart EXPERT
663
+ -
664
+ -
665
+ -
666
+ -
667
+ en^PosML
668
+ -
669
+ -
670
+ -
671
+ en^Adobe PostScript Printer Description File Format
672
+ -
673
+ -
674
+ -
675
+ en^CURL Applet
676
+ en^CURL Applet
677
+ -
678
+ -
679
+ -
680
+ -
681
+ -
682
+ -
683
+ -
684
+ -
685
+ en^RemoteDocs R-Viewer
686
+ -
687
+ -
688
+ -
689
+ -
690
+ -
691
+ -
692
+ -
693
+ -
694
+ en^FCS Express Layout Link
695
+ -
696
+ -
697
+ -
698
+ en^New Moon Liftoff/DNA
699
+ -
700
+ en^Dolby Meridian Lossless Packing
701
+ -
702
+ -
703
+ -
704
+ en^DPGraph
705
+ en^DreamFactory
706
+ -
707
+ -
708
+ -
709
+ -
710
+ -
711
+ en^Digital Video Broadcasting
712
+ -
713
+ -
714
+ -
715
+ -
716
+ -
717
+ -
718
+ -
719
+ -
720
+ -
721
+ -
722
+ -
723
+ -
724
+ -
725
+ -
726
+ -
727
+ -
728
+ -
729
+ -
730
+ en^Digital Video Broadcasting
731
+ -
732
+ en^DynaGeo
733
+ -
734
+ -
735
+ -
736
+ -
737
+ en^EcoWin Chart
738
+ -
739
+ -
740
+ -
741
+ -
742
+ -
743
+ -
744
+ -
745
+ -
746
+ en^Enliven Viewer
747
+ -
748
+ -
749
+ en^QUASS Stream Player
750
+ en^QUASS Stream Player
751
+ en^QuickAnime Player
752
+ en^SimpleAnimeLite Player
753
+ en^QUASS Stream Player
754
+ -
755
+ -
756
+ en^MICROSEC e-Szign¢
757
+ -
758
+ -
759
+ -
760
+ -
761
+ -
762
+ -
763
+ -
764
+ -
765
+ -
766
+ -
767
+ -
768
+ -
769
+ -
770
+ -
771
+ -
772
+ -
773
+ -
774
+ -
775
+ -
776
+ -
777
+ -
778
+ -
779
+ -
780
+ -
781
+ -
782
+ -
783
+ -
784
+ -
785
+ en^EZPix Secure Photo Album
786
+ en^EZPix Secure Photo Album
787
+ -
788
+ -
789
+ en^Forms Data Format
790
+ -
791
+ en^Digital Siesmograph Networks - SEED Datafiles
792
+ -
793
+ -
794
+ -
795
+ -
796
+ -
797
+ en^NpGraphIt
798
+ en^FluxTime Clip
799
+ -
800
+ en^FrameMaker Normal Format
801
+ en^Frogans Player
802
+ en^Frogans Player
803
+ en^Friendly Software Corporation
804
+ -
805
+ -
806
+ -
807
+ -
808
+ en^Fujitsu Oasys
809
+ en^Fujitsu Oasys
810
+ en^Fujitsu Oasys
811
+ en^Fujitsu Oasys
812
+ en^Fujitsu Oasys
813
+ -
814
+ -
815
+ en^Fujitsu - Xerox 2D CAD Data
816
+ en^Fujitsu - Xerox DocuWorks
817
+ en^Fujitsu - Xerox DocuWorks Binder
818
+ -
819
+ -
820
+ -
821
+ -
822
+ -
823
+ en^FuzzySheet
824
+ en^Genomatix Tuxedo Framework
825
+ -
826
+ -
827
+ -
828
+ en^GeoGebra
829
+ -
830
+ en^GeoGebra
831
+ en^GeoMetry Explorer
832
+ en^GEONExT and JSXGraph
833
+ en^GeoplanW
834
+ en^GeospacW
835
+ -
836
+ -
837
+ -
838
+ en^GameMaker ActiveX
839
+ en^Google Earth - KML
840
+ en^Google Earth - Zipped KML
841
+ -
842
+ -
843
+ -
844
+ en^GrafEq
845
+ -
846
+ en^Groove - Account
847
+ en^Groove - Help
848
+ en^Groove - Identity Message
849
+ en^Groove - Injector
850
+ en^Groove - Tool Message
851
+ en^Groove - Tool Template
852
+ en^Groove - Vcard
853
+ -
854
+ en^Hypertext Application Language
855
+ en^ZVUE Media Manager
856
+ en^Homebanking Computer Interface (HBCI)
857
+ -
858
+ -
859
+ -
860
+ -
861
+ en^Archipelago Lesson Player
862
+ en^HP-GL/2 and HP RTL
863
+ en^Hewlett Packard Instant Delivery
864
+ en^Hewlett-Packard's WebPrintSmart
865
+ en^HP Indigo Digital Press - Job Layout Languate
866
+ en^HP Printer Command Language
867
+ en^PCL 6 Enhanced (Formely PCL XL)
868
+ -
869
+ en^Hydrostatix Master Suite
870
+ -
871
+ -
872
+ -
873
+ en^3D Crossword Plugin
874
+ -
875
+ -
876
+ en^MiniPay
877
+ en^MO:DCA-P
878
+ en^IBM DB2 Rights Manager
879
+ en^IBM Electronic Media Management System - Secure Container
880
+ en^ICC profile
881
+ -
882
+ en^igLoader
883
+ -
884
+ -
885
+ en^ImmerVision PURE Players
886
+ en^ImmerVision PURE Players
887
+ -
888
+ -
889
+ -
890
+ -
891
+ -
892
+ -
893
+ -
894
+ -
895
+ -
896
+ -
897
+ -
898
+ -
899
+ -
900
+ -
901
+ en^IOCOM Visimeet
902
+ en^Intercon FormNet
903
+ en^Interactive Geometry Software
904
+ -
905
+ -
906
+ en^Open Financial Exchange
907
+ en^Quicken
908
+ -
909
+ -
910
+ -
911
+ -
912
+ -
913
+ -
914
+ -
915
+ en^IP Unplugged Roaming Client
916
+ en^iRepository / Lucidoc Editor
917
+ en^Express by Infoseek
918
+ en^International Society for Advancement of Cytometry
919
+ -
920
+ en^Lightspeed Audio Lab
921
+ -
922
+ -
923
+ -
924
+ -
925
+ -
926
+ -
927
+ -
928
+ -
929
+ en^Mobile Information Device Profile
930
+ en^RhymBox
931
+ en^Joda Archive
932
+ -
933
+ en^Kahootz
934
+ en^KDE KOffice Office Suite - Karbon
935
+ en^KDE KOffice Office Suite - KChart
936
+ en^KDE KOffice Office Suite - Kformula
937
+ en^KDE KOffice Office Suite - Kivio
938
+ en^KDE KOffice Office Suite - Kontour
939
+ en^KDE KOffice Office Suite - Kpresenter
940
+ en^KDE KOffice Office Suite - Kspread
941
+ en^KDE KOffice Office Suite - Kword
942
+ en^Kenamea App
943
+ en^Kidspiration
944
+ en^Kinar Applications
945
+ en^SSEYO Koan Play File
946
+ en^Kodak Storyshare
947
+ -
948
+ -
949
+ en^Laser App Enterprise
950
+ -
951
+ -
952
+ -
953
+ en^Life Balance - Desktop Edition
954
+ en^Life Balance - Exchange Format
955
+ -
956
+ -
957
+ en^Lotus 1-2-3
958
+ en^Lotus Approach
959
+ en^Lotus Freelance
960
+ en^Lotus Notes
961
+ en^Lotus Organizer
962
+ en^Lotus Screencam
963
+ en^Lotus Wordpro
964
+ en^MacPorts Port System
965
+ -
966
+ -
967
+ -
968
+ -
969
+ -
970
+ -
971
+ -
972
+ en^Micro CADAM Helix D&D
973
+ en^MedCalc
974
+ en^MediaRemote
975
+ -
976
+ en^Medical Waveform Encoding Format
977
+ en^Melody Format for Mobile Platform
978
+ -
979
+ en^Micrografx
980
+ en^Micrografx iGrafx Professional
981
+ -
982
+ -
983
+ -
984
+ en^FrameMaker Interchange Format
985
+ -
986
+ -
987
+ en^Mobius Management Systems - UniversalArchive
988
+ en^Mobius Management Systems - Distribution Database
989
+ en^Mobius Management Systems - Basket file
990
+ en^Mobius Management Systems - Query File
991
+ en^Mobius Management Systems - Script Language
992
+ en^Mobius Management Systems - Policy Definition Language File
993
+ en^Mobius Management Systems - Topic Index File
994
+ en^Mophun VM
995
+ en^Mophun Certificate
996
+ -
997
+ -
998
+ -
999
+ -
1000
+ -
1001
+ -
1002
+ -
1003
+ -
1004
+ en^XUL - XML User Interface Language
1005
+ -
1006
+ en^Microsoft Artgalry
1007
+ -
1008
+ en^Microsoft Cabinet File
1009
+ en^Microsoft Excel
1010
+ en^Microsoft Excel - Add-In File
1011
+ en^Microsoft Excel - Binary Workbook
1012
+ en^Microsoft Excel - Macro-Enabled Workbook
1013
+ en^Microsoft Excel - Macro-Enabled Template File
1014
+ en^Microsoft Embedded OpenType
1015
+ en^Microsoft Html Help File
1016
+ en^Microsoft Class Server
1017
+ en^Microsoft Learning Resource Module
1018
+ -
1019
+ en^Microsoft Office System Release Theme
1020
+ -
1021
+ en^Microsoft Trust UI Provider - Security Catalog
1022
+ en^Microsoft Trust UI Provider - Certificate Trust Link
1023
+ -
1024
+ en^Microsoft PowerPoint
1025
+ en^Microsoft PowerPoint - Add-in file
1026
+ en^Microsoft PowerPoint - Macro-Enabled Presentation File
1027
+ en^Microsoft PowerPoint - Macro-Enabled Open XML Slide
1028
+ en^Microsoft PowerPoint - Macro-Enabled Slide Show File
1029
+ en^Micosoft PowerPoint - Macro-Enabled Template File
1030
+ -
1031
+ -
1032
+ en^Microsoft Project
1033
+ -
1034
+ -
1035
+ -
1036
+ -
1037
+ -
1038
+ -
1039
+ -
1040
+ -
1041
+ -
1042
+ en^Micosoft Word - Macro-Enabled Document
1043
+ en^Micosoft Word - Macro-Enabled Template
1044
+ en^Microsoft Works
1045
+ en^Microsoft Windows Media Player Playlist
1046
+ en^Microsoft XML Paper Specification
1047
+ -
1048
+ en^3GPP MSEQ File
1049
+ -
1050
+ -
1051
+ -
1052
+ -
1053
+ en^MUsical Score Interpreted Code Invented for the ASCII designation of Notation
1054
+ en^Muvee Automatic Video Editing
1055
+ -
1056
+ -
1057
+ -
1058
+ -
1059
+ -
1060
+ -
1061
+ -
1062
+ -
1063
+ en^neuroLanguage
1064
+ -
1065
+ -
1066
+ -
1067
+ -
1068
+ en^NobleNet Directory
1069
+ en^NobleNet Sealer
1070
+ en^NobleNet Web
1071
+ -
1072
+ -
1073
+ -
1074
+ -
1075
+ -
1076
+ -
1077
+ -
1078
+ -
1079
+ -
1080
+ en^N-Gage Game Data
1081
+ en^N-Gage Game Installer
1082
+ -
1083
+ -
1084
+ -
1085
+ -
1086
+ en^Nokia Radio Application - Preset
1087
+ en^Nokia Radio Application - Preset
1088
+ en^Novadigm's RADIA and EDM products
1089
+ en^Novadigm's RADIA and EDM products
1090
+ en^Novadigm's RADIA and EDM products
1091
+ -
1092
+ -
1093
+ -
1094
+ -
1095
+ -
1096
+ en^OpenDocument Chart
1097
+ en^OpenDocument Chart Template
1098
+ en^OpenDocument Database
1099
+ en^OpenDocument Formula
1100
+ en^OpenDocument Formula Template
1101
+ en^OpenDocument Graphics
1102
+ en^OpenDocument Graphics Template
1103
+ en^OpenDocument Image
1104
+ en^OpenDocument Image Template
1105
+ en^OpenDocument Presentation
1106
+ en^OpenDocument Presentation Template
1107
+ en^OpenDocument Spreadsheet
1108
+ en^OpenDocument Spreadsheet Template
1109
+ en^OpenDocument Text
1110
+ en^OpenDocument Text Master
1111
+ en^OpenDocument Text Template
1112
+ en^Open Document Text Web
1113
+ -
1114
+ -
1115
+ -
1116
+ -
1117
+ -
1118
+ -
1119
+ -
1120
+ -
1121
+ -
1122
+ -
1123
+ -
1124
+ -
1125
+ -
1126
+ -
1127
+ -
1128
+ en^Sugar Linux Application Bundle
1129
+ -
1130
+ -
1131
+ -
1132
+ -
1133
+ -
1134
+ -
1135
+ -
1136
+ -
1137
+ -
1138
+ -
1139
+ -
1140
+ -
1141
+ -
1142
+ -
1143
+ -
1144
+ -
1145
+ -
1146
+ -
1147
+ -
1148
+ -
1149
+ -
1150
+ -
1151
+ -
1152
+ en^OMA Download Agents
1153
+ -
1154
+ -
1155
+ -
1156
+ -
1157
+ -
1158
+ -
1159
+ -
1160
+ -
1161
+ -
1162
+ -
1163
+ -
1164
+ -
1165
+ -
1166
+ -
1167
+ -
1168
+ -
1169
+ -
1170
+ -
1171
+ -
1172
+ -
1173
+ -
1174
+ -
1175
+ -
1176
+ -
1177
+ -
1178
+ -
1179
+ -
1180
+ en^Open Office Extension
1181
+ -
1182
+ -
1183
+ -
1184
+ -
1185
+ -
1186
+ -
1187
+ -
1188
+ -
1189
+ -
1190
+ -
1191
+ -
1192
+ -
1193
+ -
1194
+ -
1195
+ -
1196
+ -
1197
+ -
1198
+ en^Microsoft Office - OOXML - Presentation
1199
+ -
1200
+ -
1201
+ en^Microsoft Office - OOXML - Presentation (Slide)
1202
+ -
1203
+ -
1204
+ -
1205
+ en^Microsoft Office - OOXML - Presentation (Slideshow)
1206
+ -
1207
+ -
1208
+ -
1209
+ -
1210
+ en^Microsoft Office - OOXML - Presentation Template
1211
+ -
1212
+ -
1213
+ -
1214
+ -
1215
+ -
1216
+ -
1217
+ -
1218
+ -
1219
+ -
1220
+ -
1221
+ -
1222
+ -
1223
+ -
1224
+ -
1225
+ -
1226
+ en^Microsoft Office - OOXML - Spreadsheet
1227
+ -
1228
+ -
1229
+ -
1230
+ -
1231
+ -
1232
+ en^Microsoft Office - OOXML - Spreadsheet Teplate
1233
+ -
1234
+ -
1235
+ -
1236
+ -
1237
+ -
1238
+ -
1239
+ -
1240
+ -
1241
+ en^Microsoft Office - OOXML - Word Document
1242
+ -
1243
+ -
1244
+ -
1245
+ -
1246
+ -
1247
+ -
1248
+ -
1249
+ -
1250
+ -
1251
+ en^Microsoft Office - OOXML - Word Document Template
1252
+ -
1253
+ -
1254
+ -
1255
+ -
1256
+ -
1257
+ -
1258
+ -
1259
+ -
1260
+ en^MapGuide DBXML
1261
+ -
1262
+ en^OSGi Deployment Package
1263
+ -
1264
+ -
1265
+ -
1266
+ -
1267
+ en^PalmOS Data
1268
+ -
1269
+ -
1270
+ -
1271
+ -
1272
+ en^PawaaFILE
1273
+ -
1274
+ en^Proprietary P&G Standard Reporting System
1275
+ en^Proprietary P&G Standard Reporting System
1276
+ -
1277
+ en^Pcsel eFIF File
1278
+ en^Qualcomm's Plaza Mobile Internet
1279
+ -
1280
+ en^PocketLearn Viewers
1281
+ en^PowerBuilder
1282
+ -
1283
+ -
1284
+ -
1285
+ -
1286
+ -
1287
+ -
1288
+ en^Preview Systems ZipLock/VBox
1289
+ en^EFI Proteus
1290
+ -
1291
+ en^PubliShare Objects
1292
+ en^Princeton Video Image
1293
+ -
1294
+ -
1295
+ -
1296
+ -
1297
+ en^QuarkXPress
1298
+ -
1299
+ -
1300
+ -
1301
+ -
1302
+ -
1303
+ -
1304
+ -
1305
+ -
1306
+ -
1307
+ -
1308
+ -
1309
+ -
1310
+ -
1311
+ -
1312
+ -
1313
+ -
1314
+ -
1315
+ -
1316
+ -
1317
+ en^RealVNC
1318
+ en^Recordare Applications
1319
+ en^Recordare Applications
1320
+ -
1321
+ -
1322
+ -
1323
+ en^CryptoNote
1324
+ en^Blackberry COD File
1325
+ en^RealMedia
1326
+ -
1327
+ en^ROUTE 66 Location Based Services
1328
+ -
1329
+ -
1330
+ -
1331
+ en^SailingTracker
1332
+ -
1333
+ -
1334
+ -
1335
+ -
1336
+ -
1337
+ -
1338
+ -
1339
+ -
1340
+ -
1341
+ -
1342
+ -
1343
+ -
1344
+ -
1345
+ -
1346
+ -
1347
+ en^SeeMail
1348
+ -
1349
+ en^Secured eMail
1350
+ en^Secured eMail
1351
+ en^Secured eMail
1352
+ -
1353
+ en^Shana Informed Filler
1354
+ en^Shana Informed Filler
1355
+ en^Shana Informed Filler
1356
+ en^Shana Informed Filler
1357
+ -
1358
+ -
1359
+ -
1360
+ -
1361
+ -
1362
+ en^SimTech MindMapper
1363
+ -
1364
+ en^SMAF File
1365
+ -
1366
+ en^SMART Technologies Apps
1367
+ -
1368
+ -
1369
+ -
1370
+ en^SudokuMagic
1371
+ en^TIBCO Spotfire
1372
+ en^TIBCO Spotfire
1373
+ -
1374
+ -
1375
+ -
1376
+ -
1377
+ en^StarOffice - Calc
1378
+ -
1379
+ en^StarOffice - Draw
1380
+ en^StarOffice - Impress
1381
+ en^StarOffice - Math
1382
+ en^StarOffice - Writer
1383
+ en^StarOffice - Writer (Global)
1384
+ -
1385
+ en^StepMania
1386
+ -
1387
+ -
1388
+ en^OpenOffice - Calc (Spreadsheet)
1389
+ en^OpenOffice - Calc Template (Spreadsheet)
1390
+ en^OpenOffice - Draw (Graphics)
1391
+ en^OpenOffice - Draw Template (Graphics)
1392
+ en^OpenOffice - Impress (Presentation)
1393
+ en^OpenOffice - Impress Template (Presentation)
1394
+ en^OpenOffice - Math (Formula)
1395
+ en^OpenOffice - Writer (Text - HTML)
1396
+ en^OpenOffice - Writer (Text - HTML)
1397
+ en^OpenOffice - Writer Template (Text - HTML)
1398
+ en^ScheduleUs
1399
+ en^SourceView Document
1400
+ -
1401
+ -
1402
+ en^Symbian Install Package
1403
+ en^SyncML
1404
+ en^SyncML - Device Management
1405
+ en^SyncML - Device Management
1406
+ -
1407
+ -
1408
+ -
1409
+ -
1410
+ -
1411
+ -
1412
+ -
1413
+ en^Tao Intent
1414
+ -
1415
+ -
1416
+ -
1417
+ -
1418
+ en^MobileTV
1419
+ -
1420
+ en^TRI Systems Config
1421
+ en^Triscape Map Explorer
1422
+ en^True BASIC
1423
+ -
1424
+ -
1425
+ en^Universal Forms Description Language
1426
+ en^User Interface Quartz - Theme (Symbian)
1427
+ en^UMAJIN
1428
+ en^Unity 3d
1429
+ en^Unique Object Markup Language
1430
+ -
1431
+ -
1432
+ -
1433
+ -
1434
+ -
1435
+ -
1436
+ -
1437
+ -
1438
+ -
1439
+ -
1440
+ -
1441
+ -
1442
+ -
1443
+ -
1444
+ -
1445
+ en^VirtualCatalog
1446
+ -
1447
+ -
1448
+ -
1449
+ -
1450
+ -
1451
+ -
1452
+ -
1453
+ -
1454
+ en^Microsoft Visio
1455
+ en^Visionary
1456
+ -
1457
+ en^Viewport+
1458
+ -
1459
+ -
1460
+ en^WAP Binary XML (WBXML)
1461
+ en^Compiled Wireless Markup Language (WMLC)
1462
+ en^WMLScript
1463
+ en^WebTurbo
1464
+ -
1465
+ -
1466
+ -
1467
+ -
1468
+ -
1469
+ -
1470
+ -
1471
+ -
1472
+ en^Mathematica Notebook Player
1473
+ en^Wordperfect
1474
+ en^SundaHus WQ
1475
+ -
1476
+ en^Worldtalk
1477
+ -
1478
+ -
1479
+ -
1480
+ -
1481
+ en^CorelXARA
1482
+ en^Extensible Forms Description Language
1483
+ -
1484
+ -
1485
+ -
1486
+ -
1487
+ -
1488
+ -
1489
+ -
1490
+ en^HV Voice Dictionary
1491
+ en^HV Script
1492
+ en^HV Voice Parameter
1493
+ en^Open Score Format
1494
+ en^OSFPVG
1495
+ -
1496
+ en^SMAF Audio
1497
+ en^SMAF Phrase
1498
+ -
1499
+ -
1500
+ -
1501
+ en^CustomMenu
1502
+ -
1503
+ en^Z.U.L. Geometry
1504
+ en^Zzazz Deck
1505
+ en^VoiceXML
1506
+ -
1507
+ -
1508
+ en^WebAssembly
1509
+ -
1510
+ -
1511
+ -
1512
+ -
1513
+ -
1514
+ en^Widget Packaging and XML Configuration
1515
+ en^WinHelp
1516
+ -
1517
+ -
1518
+ -
1519
+ -
1520
+ -
1521
+ -
1522
+ -
1523
+ en^WSDL - Web Services Description Language
1524
+ en^Web Services Policy
1525
+ -
1526
+ en^7-Zip
1527
+ en^AbiWord
1528
+ -
1529
+ en^Ace Archive
1530
+ -
1531
+ en^Adobe (Macropedia) Authorware - Binary File
1532
+ en^Adobe (Macropedia) Authorware - Map
1533
+ en^Adobe (Macropedia) Authorware - Segment File
1534
+ en^Binary CPIO Archive
1535
+ en^BitTorrent
1536
+ -
1537
+ -
1538
+ en^Bzip Archive
1539
+ en^Bzip2 Archive
1540
+ -
1541
+ en^Video CD
1542
+ -
1543
+ en^pIRCh
1544
+ en^Portable Game Notation (Chess Games)
1545
+ -
1546
+ -
1547
+ -
1548
+ -
1549
+ -
1550
+ en^CPIO Archive
1551
+ en^C Shell Script
1552
+ -
1553
+ en^Debian Package
1554
+ -
1555
+ en^Adobe Shockwave Player
1556
+ en^Doom Video Game
1557
+ -
1558
+ en^Navigation Control file for XML (for ePub)
1559
+ en^Digital Talking Book
1560
+ en^Digital Talking Book - Resource File
1561
+ en^Device Independent File Format (DVI)
1562
+ -
1563
+ -
1564
+ -
1565
+ -
1566
+ en^Glyph Bitmap Distribution Format
1567
+ en^Ghostscript Font
1568
+ en^PSF Fonts
1569
+ -
1570
+ en^OpenType Font File
1571
+ en^Portable Compiled Format
1572
+ en^Server Normal Format
1573
+ -
1574
+ en^TrueType Font
1575
+ en^PostScript Fonts
1576
+ -
1577
+ -
1578
+ en^FutureSplash Animator
1579
+ -
1580
+ -
1581
+ -
1582
+ en^Gnumeric
1583
+ -
1584
+ en^GNU Tar Files
1585
+ -
1586
+ en^Hierarchical Data Format
1587
+ -
1588
+ -
1589
+ -
1590
+ -
1591
+ -
1592
+ -
1593
+ -
1594
+ -
1595
+ -
1596
+ -
1597
+ -
1598
+ -
1599
+ -
1600
+ en^Java Network Launching Protocol
1601
+ -
1602
+ -
1603
+ -
1604
+ -
1605
+ en^LaTeX
1606
+ -
1607
+ -
1608
+ -
1609
+ -
1610
+ -
1611
+ -
1612
+ -
1613
+ -
1614
+ -
1615
+ -
1616
+ -
1617
+ en^Mobipocket
1618
+ en^Microsoft ClickOnce
1619
+ -
1620
+ -
1621
+ en^Microsoft Windows Media Player Download Package
1622
+ en^Microsoft Windows Media Player Skin Package
1623
+ en^Microsoft XAML Browser Application
1624
+ en^Microsoft Access
1625
+ en^Microsoft Office Binder
1626
+ en^Microsoft Information Card
1627
+ en^Microsoft Clipboard Clip
1628
+ -
1629
+ en^Microsoft Application
1630
+ en^Microsoft MediaView
1631
+ en^Microsoft Windows Metafile
1632
+ en^Microsoft Money
1633
+ en^Microsoft Publisher
1634
+ en^Microsoft Schedule+
1635
+ en^Microsoft Windows Terminal Services
1636
+ -
1637
+ en^Microsoft Wordpad
1638
+ en^Network Common Data Form (NetCDF)
1639
+ -
1640
+ -
1641
+ -
1642
+ -
1643
+ -
1644
+ -
1645
+ en^PKCS #12 - Personal Information Exchange Syntax Standard
1646
+ en^PKCS #7 - Cryptographic Message Syntax Standard (Certificates)
1647
+ en^PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)
1648
+ -
1649
+ -
1650
+ -
1651
+ en^RAR Archive
1652
+ -
1653
+ -
1654
+ -
1655
+ -
1656
+ -
1657
+ en^Bourne Shell Script
1658
+ en^Shell Archive
1659
+ en^Adobe Flash
1660
+ en^Microsoft Silverlight
1661
+ -
1662
+ -
1663
+ -
1664
+ -
1665
+ -
1666
+ -
1667
+ en^Stuffit Archive
1668
+ en^Stuffit Archive
1669
+ -
1670
+ en^System V Release 4 CPIO Archive
1671
+ en^System V Release 4 CPIO Checksum Data
1672
+ -
1673
+ -
1674
+ en^Tar File (Tape Archive)
1675
+ en^Tcl Script
1676
+ en^TeX
1677
+ en^TeX Font Metric
1678
+ en^GNU Texinfo Document
1679
+ -
1680
+ -
1681
+ -
1682
+ -
1683
+ -
1684
+ -
1685
+ -
1686
+ en^Ustar (Uniform Standard Tape Archive)
1687
+ -
1688
+ en^WAIS Source
1689
+ -
1690
+ -
1691
+ -
1692
+ -
1693
+ -
1694
+ -
1695
+ -
1696
+ en^X.509 Certificate
1697
+ -
1698
+ -
1699
+ en^Xfig
1700
+ -
1701
+ en^XPInstall - Mozilla
1702
+ -
1703
+ en^Zip Archive
1704
+ -
1705
+ -
1706
+ -
1707
+ -
1708
+ -
1709
+ -
1710
+ -
1711
+ en^XML Configuration Access Protocol - XCAP Diff
1712
+ -
1713
+ -
1714
+ -
1715
+ -
1716
+ -
1717
+ en^XML Encryption Syntax and Processing
1718
+ en^XHTML - The Extensible HyperText Markup Language
1719
+ -
1720
+ -
1721
+ en^XML - Extensible Markup Language
1722
+ en^Document Type Definition
1723
+ -
1724
+ -
1725
+ -
1726
+ en^XML-Binary Optimized Packaging
1727
+ -
1728
+ en^XML Transformations
1729
+ en^XSPF - XML Shareable Playlist Format
1730
+ en^MXML
1731
+ en^YANG Data Modeling Language
1732
+ -
1733
+ -
1734
+ -
1735
+ -
1736
+ en^YIN (YANG - XML)
1737
+ en^Zip Archive
1738
+ -
1739
+ -
1740
+ -
1741
+ -
1742
+ -
1743
+ -
1744
+ -
1745
+ -
1746
+ en^Adaptive differential pulse-code modulation
1747
+ -
1748
+ -
1749
+ -
1750
+ -
1751
+ -
1752
+ -
1753
+ -
1754
+ -
1755
+ en^Sun Audio - Au file format
1756
+ -
1757
+ -
1758
+ -
1759
+ -
1760
+ -
1761
+ -
1762
+ -
1763
+ -
1764
+ -
1765
+ -
1766
+ -
1767
+ -
1768
+ -
1769
+ -
1770
+ -
1771
+ -
1772
+ -
1773
+ -
1774
+ -
1775
+ -
1776
+ -
1777
+ -
1778
+ -
1779
+ -
1780
+ -
1781
+ -
1782
+ -
1783
+ -
1784
+ -
1785
+ -
1786
+ -
1787
+ -
1788
+ -
1789
+ -
1790
+ -
1791
+ -
1792
+ -
1793
+ -
1794
+ -
1795
+ -
1796
+ -
1797
+ -
1798
+ -
1799
+ -
1800
+ -
1801
+ -
1802
+ -
1803
+ -
1804
+ -
1805
+ -
1806
+ -
1807
+ -
1808
+ -
1809
+ -
1810
+ -
1811
+ -
1812
+ -
1813
+ -
1814
+ -
1815
+ -
1816
+ en^MIDI - Musical Instrument Digital Interface
1817
+ -
1818
+ en^MPEG-4 Audio
1819
+ -
1820
+ -
1821
+ -
1822
+ en^MPEG Audio
1823
+ -
1824
+ en^Ogg Audio
1825
+ -
1826
+ -
1827
+ -
1828
+ -
1829
+ -
1830
+ -
1831
+ -
1832
+ -
1833
+ -
1834
+ -
1835
+ -
1836
+ -
1837
+ -
1838
+ -
1839
+ -
1840
+ -
1841
+ -
1842
+ -
1843
+ -
1844
+ -
1845
+ -
1846
+ -
1847
+ -
1848
+ -
1849
+ -
1850
+ -
1851
+ -
1852
+ -
1853
+ -
1854
+ -
1855
+ -
1856
+ -
1857
+ -
1858
+ -
1859
+ -
1860
+ -
1861
+ -
1862
+ -
1863
+ -
1864
+ -
1865
+ -
1866
+ -
1867
+ -
1868
+ en^DECE Audio
1869
+ en^Digital Winds Music
1870
+ -
1871
+ -
1872
+ -
1873
+ -
1874
+ -
1875
+ -
1876
+ -
1877
+ -
1878
+ -
1879
+ en^DRA Audio
1880
+ en^DTS Audio
1881
+ en^DTS High Definition Audio
1882
+ -
1883
+ -
1884
+ -
1885
+ -
1886
+ en^Lucent Voice
1887
+ en^Microsoft PlayReady Ecosystem
1888
+ -
1889
+ -
1890
+ en^Nuera ECELP 4800
1891
+ en^Nuera ECELP 7470
1892
+ en^Nuera ECELP 9600
1893
+ -
1894
+ -
1895
+ -
1896
+ -
1897
+ en^Hit'n'Mix
1898
+ -
1899
+ -
1900
+ -
1901
+ -
1902
+ en^Waveform Audio File Format (WAV)
1903
+ en^Open Web Media Project - Audio
1904
+ en^Advanced Audio Coding (AAC)
1905
+ en^Audio Interchange File Format
1906
+ -
1907
+ -
1908
+ -
1909
+ -
1910
+ -
1911
+ en^M3U (Multimedia Playlist)
1912
+ en^Microsoft Windows Media Audio Redirector
1913
+ en^Microsoft Windows Media Audio
1914
+ -
1915
+ en^Real Audio Sound
1916
+ en^Real Audio Sound
1917
+ -
1918
+ en^Waveform Audio File Format (WAV)
1919
+ -
1920
+ en^ChemDraw eXchange file
1921
+ en^Crystallographic Interchange Format
1922
+ en^CrystalMaker Data Format
1923
+ en^Chemical Markup Language
1924
+ en^Chemical Style Markup Language
1925
+ -
1926
+ en^XYZ File Format
1927
+ -
1928
+ -
1929
+ -
1930
+ -
1931
+ -
1932
+ -
1933
+ -
1934
+ -
1935
+ -
1936
+ -
1937
+ -
1938
+ en^Bitmap Image File
1939
+ en^Computer Graphics Metafile
1940
+ -
1941
+ -
1942
+ -
1943
+ -
1944
+ -
1945
+ -
1946
+ en^G3 Fax Image
1947
+ en^Graphics Interchange Format
1948
+ -
1949
+ -
1950
+ -
1951
+ -
1952
+ -
1953
+ -
1954
+ en^Image Exchange Format
1955
+ -
1956
+ -
1957
+ -
1958
+ en^JPEG Image
1959
+ -
1960
+ -
1961
+ -
1962
+ -
1963
+ -
1964
+ -
1965
+ -
1966
+ -
1967
+ -
1968
+ -
1969
+ -
1970
+ -
1971
+ en^OpenGL Textures (KTX)
1972
+ -
1973
+ -
1974
+ -
1975
+ en^Portable Network Graphics (PNG)
1976
+ en^BTIF
1977
+ -
1978
+ -
1979
+ -
1980
+ en^Scalable Vector Graphics (SVG)
1981
+ -
1982
+ -
1983
+ en^Tagged Image File Format
1984
+ -
1985
+ en^Photoshop Document
1986
+ -
1987
+ -
1988
+ en^DECE Graphic
1989
+ -
1990
+ en^DjVu
1991
+ en^Close Captioning - Subtitle
1992
+ en^DWG Drawing
1993
+ en^AutoCAD DXF
1994
+ en^FastBid Sheet
1995
+ en^FlashPix
1996
+ en^FAST Search & Transfer ASA
1997
+ en^EDMICS 2000
1998
+ en^EDMICS 2000
1999
+ -
2000
+ -
2001
+ -
2002
+ -
2003
+ en^Microsoft Document Imaging Format
2004
+ -
2005
+ en^FlashPix
2006
+ -
2007
+ -
2008
+ -
2009
+ -
2010
+ -
2011
+ -
2012
+ -
2013
+ -
2014
+ -
2015
+ en^WAP Bitamp (WBMP)
2016
+ en^eXtended Image File Format (XIFF)
2017
+ -
2018
+ en^WebP Image
2019
+ -
2020
+ -
2021
+ en^Adobe Digital Negative
2022
+ -
2023
+ en^Canon Raw Image
2024
+ en^Canon Raw Image
2025
+ en^CMU Image
2026
+ en^Corel Metafile Exchange (CMX)
2027
+ -
2028
+ -
2029
+ en^Epson Raw Image
2030
+ en^FreeHand MX
2031
+ en^Fuji Raw Image
2032
+ -
2033
+ en^Icon Image
2034
+ en^Kodak Raw Image
2035
+ en^Kodak Raw Image
2036
+ en^Kodak Raw Image
2037
+ en^Minolta Raw Image
2038
+ -
2039
+ en^Bitmap Image File
2040
+ en^Nikon Raw Image
2041
+ en^Olympus Raw Image
2042
+ -
2043
+ en^Panasonic Raw Image
2044
+ en^PCX Image
2045
+ en^Pentax Raw Image
2046
+ en^PICT Image
2047
+ en^Portable Anymap Image
2048
+ en^Portable Bitmap Format
2049
+ en^Portable Graymap Format
2050
+ en^Portable Pixmap Format
2051
+ en^Silicon Graphics RGB Bitmap
2052
+ en^Sigma Raw Image
2053
+ en^Sony Raw Image
2054
+ en^Sony Raw Image
2055
+ en^Sony Raw Image
2056
+ -
2057
+ -
2058
+ -
2059
+ -
2060
+ -
2061
+ en^X BitMap
2062
+ -
2063
+ -
2064
+ en^X PixMap
2065
+ en^X Window Dump
2066
+ -
2067
+ -
2068
+ -
2069
+ -
2070
+ -
2071
+ -
2072
+ -
2073
+ -
2074
+ -
2075
+ -
2076
+ -
2077
+ -
2078
+ -
2079
+ -
2080
+ en^Email Message
2081
+ -
2082
+ -
2083
+ -
2084
+ -
2085
+ -
2086
+ -
2087
+ -
2088
+ -
2089
+ -
2090
+ -
2091
+ -
2092
+ en^Initial Graphics Exchange Specification (IGES)
2093
+ en^Mesh Data Type
2094
+ -
2095
+ -
2096
+ -
2097
+ -
2098
+ -
2099
+ -
2100
+ -
2101
+ en^COLLADA
2102
+ en^Autodesk Design Web Format (DWF)
2103
+ -
2104
+ en^Geometric Description Language (GDL)
2105
+ -
2106
+ en^Gen-Trix Studio
2107
+ -
2108
+ en^Virtue MTS
2109
+ -
2110
+ -
2111
+ -
2112
+ -
2113
+ -
2114
+ -
2115
+ -
2116
+ -
2117
+ en^Virtue VTU
2118
+ en^Virtual Reality Modeling Language
2119
+ -
2120
+ -
2121
+ -
2122
+ -
2123
+ -
2124
+ -
2125
+ -
2126
+ -
2127
+ -
2128
+ -
2129
+ -
2130
+ -
2131
+ -
2132
+ -
2133
+ -
2134
+ -
2135
+ -
2136
+ -
2137
+ -
2138
+ -
2139
+ -
2140
+ -
2141
+ -
2142
+ -
2143
+ -
2144
+ -
2145
+ -
2146
+ -
2147
+ -
2148
+ -
2149
+ en^iCalendar
2150
+ -
2151
+ -
2152
+ -
2153
+ -
2154
+ en^Cascading Style Sheets (CSS)
2155
+ en^Comma-Separated Values
2156
+ -
2157
+ -
2158
+ -
2159
+ -
2160
+ -
2161
+ -
2162
+ -
2163
+ -
2164
+ -
2165
+ -
2166
+ -
2167
+ -
2168
+ en^HyperText Markup Language (HTML)
2169
+ -
2170
+ -
2171
+ -
2172
+ -
2173
+ en^Notation3
2174
+ -
2175
+ -
2176
+ -
2177
+ en^Text File
2178
+ -
2179
+ -
2180
+ en^PRS Lines Tag
2181
+ -
2182
+ -
2183
+ -
2184
+ -
2185
+ en^Rich Text Format (RTF)
2186
+ -
2187
+ -
2188
+ -
2189
+ -
2190
+ en^Standard Generalized Markup Language (SGML)
2191
+ -
2192
+ -
2193
+ -
2194
+ -
2195
+ -
2196
+ en^Tab Separated Values
2197
+ en^troff
2198
+ en^Turtle (Terse RDF Triple Language)
2199
+ -
2200
+ en^URI Resolution Services
2201
+ -
2202
+ -
2203
+ -
2204
+ -
2205
+ en^Curl - Applet
2206
+ en^Curl - Detached Applet
2207
+ en^Curl - Manifest File
2208
+ en^Curl - Source Code
2209
+ -
2210
+ -
2211
+ -
2212
+ -
2213
+ -
2214
+ -
2215
+ -
2216
+ en^mod_fly / fly.cgi
2217
+ en^FLEXSTOR
2218
+ -
2219
+ en^Graphviz
2220
+ -
2221
+ -
2222
+ en^In3D - 3DML
2223
+ en^In3D - 3DML
2224
+ -
2225
+ -
2226
+ -
2227
+ -
2228
+ -
2229
+ -
2230
+ -
2231
+ -
2232
+ -
2233
+ -
2234
+ en^J2ME App Descriptor
2235
+ -
2236
+ -
2237
+ -
2238
+ en^Wireless Markup Language (WML)
2239
+ en^Wireless Markup Language Script (WMLScript)
2240
+ -
2241
+ en^Assembler Source File
2242
+ en^C Source File
2243
+ -
2244
+ -
2245
+ en^Fortran Source File
2246
+ en^Java Source File
2247
+ -
2248
+ -
2249
+ en^Pascal Source File
2250
+ -
2251
+ en^Setext
2252
+ -
2253
+ en^UUEncode
2254
+ en^vCalendar
2255
+ en^vCard
2256
+ -
2257
+ -
2258
+ -
2259
+ -
2260
+ -
2261
+ en^3GP
2262
+ -
2263
+ en^3GP2
2264
+ -
2265
+ -
2266
+ -
2267
+ -
2268
+ -
2269
+ -
2270
+ -
2271
+ -
2272
+ -
2273
+ -
2274
+ -
2275
+ en^H.261
2276
+ en^H.263
2277
+ -
2278
+ -
2279
+ en^H.264
2280
+ -
2281
+ -
2282
+ -
2283
+ -
2284
+ en^JPGVideo
2285
+ -
2286
+ en^JPEG 2000 Compound Image File Format
2287
+ -
2288
+ en^Motion JPEG 2000
2289
+ -
2290
+ -
2291
+ -
2292
+ en^MPEG-4 Video
2293
+ -
2294
+ en^MPEG Video
2295
+ -
2296
+ -
2297
+ -
2298
+ en^Ogg Video
2299
+ -
2300
+ -
2301
+ en^Quicktime Video
2302
+ -
2303
+ -
2304
+ -
2305
+ -
2306
+ -
2307
+ -
2308
+ -
2309
+ -
2310
+ -
2311
+ -
2312
+ -
2313
+ -
2314
+ en^DECE High Definition Video
2315
+ en^DECE Mobile Video
2316
+ -
2317
+ en^DECE PD Video
2318
+ en^DECE SD Video
2319
+ en^DECE Video
2320
+ -
2321
+ -
2322
+ -
2323
+ -
2324
+ en^FAST Search & Transfer ASA
2325
+ -
2326
+ -
2327
+ -
2328
+ -
2329
+ -
2330
+ -
2331
+ -
2332
+ -
2333
+ -
2334
+ en^MPEG Url
2335
+ en^Microsoft PlayReady Ecosystem Video
2336
+ -
2337
+ -
2338
+ -
2339
+ -
2340
+ -
2341
+ -
2342
+ -
2343
+ -
2344
+ -
2345
+ -
2346
+ en^DECE MP4
2347
+ en^Vivo
2348
+ -
2349
+ -
2350
+ -
2351
+ en^Open Web Media Project - Video
2352
+ -
2353
+ -
2354
+ en^Flash Video
2355
+ en^FLI/FLC Animation Format
2356
+ en^Flash Video
2357
+ -
2358
+ -
2359
+ en^M4v
2360
+ -
2361
+ -
2362
+ -
2363
+ en^Microsoft Advanced Systems Format (ASF)
2364
+ -
2365
+ en^Microsoft Windows Media
2366
+ en^Microsoft Windows Media Video
2367
+ en^Microsoft Windows Media Audio/Video Playlist
2368
+ en^Microsoft Windows Media Video Playlist
2369
+ en^Audio Video Interleave (AVI)
2370
+ en^SGI Movie
2371
+ -
2372
+ -
2373
+ -
2374
+ en^CoolTalk
2375
+ -
2376
+ -