kinetic_sdk 5.0.14 → 5.0.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/gems/{mime-types-3.1/Code-of-Conduct.rdoc → mime-types-3.3.1/Code-of-Conduct.md} +19 -20
- data/gems/{mime-types-3.1/Contributing.rdoc → mime-types-3.3.1/Contributing.md} +67 -54
- data/gems/mime-types-3.3.1/History.md +240 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-3.3.1}/Licence.md +1 -1
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/Manifest.txt +4 -4
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/README.rdoc +5 -14
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/Rakefile +43 -13
- data/gems/mime-types-3.3.1/lib/mime-types.rb +3 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/type.rb +60 -46
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/type/columnar.rb +4 -2
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types.rb +11 -8
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/_columnar.rb +10 -9
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/cache.rb +7 -5
- data/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +3 -0
- data/gems/mime-types-3.3.1/lib/mime/types/container.rb +96 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/deprecations.rb +3 -3
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/full.rb +2 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/loader.rb +2 -4
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/logger.rb +3 -1
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/registry.rb +12 -3
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/bad-fixtures/malformed +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/json.json +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/old-data +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/yaml.yaml +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/minitest_helper.rb +1 -1
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_type.rb +33 -26
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types.rb +33 -25
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_cache.rb +15 -6
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_class.rb +18 -14
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_lazy.rb +10 -4
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_loader.rb +1 -1
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/Code-of-Conduct.md +10 -10
- data/gems/mime-types-data-3.2021.0225/Contributing.md +224 -0
- data/gems/mime-types-data-3.2021.0225/History.md +468 -0
- data/gems/{mime-types-3.1/Licence.rdoc → mime-types-data-3.2021.0225/Licence.md} +3 -3
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/Manifest.txt +13 -0
- data/gems/mime-types-data-3.2021.0225/README.md +63 -0
- data/gems/mime-types-data-3.2021.0225/Rakefile +159 -0
- data/gems/mime-types-data-3.2021.0225/data/mime-types.json +1 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.content_type.column +364 -13
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.docs.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.encoding.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.flags.column +352 -1
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.friendly.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.pext.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.use_instead.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.xrefs.column +480 -129
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/lib/mime-types-data.rb +0 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/lib/mime/types/data.rb +1 -1
- data/gems/mime-types-data-3.2021.0225/types/application.yaml +16933 -0
- data/gems/mime-types-data-3.2021.0225/types/audio.yaml +1714 -0
- data/gems/mime-types-data-3.2021.0225/types/chemical.yaml +71 -0
- data/gems/mime-types-data-3.2021.0225/types/conference.yaml +9 -0
- data/gems/mime-types-data-3.2021.0225/types/drawing.yaml +15 -0
- data/gems/mime-types-data-3.2021.0225/types/font.yaml +65 -0
- data/gems/mime-types-data-3.2021.0225/types/image.yaml +1251 -0
- data/gems/mime-types-data-3.2021.0225/types/message.yaml +200 -0
- data/gems/mime-types-data-3.2021.0225/types/model.yaml +331 -0
- data/gems/mime-types-data-3.2021.0225/types/multipart.yaml +179 -0
- data/gems/mime-types-data-3.2021.0225/types/text.yaml +1145 -0
- data/gems/mime-types-data-3.2021.0225/types/video.yaml +1094 -0
- data/gems/mime-types-data-3.2021.0225/types/world.yaml +8 -0
- data/kinetic_sdk.gemspec +3 -3
- data/lib/kinetic_sdk.rb +2 -2
- data/lib/kinetic_sdk/core/lib/teams.rb +12 -0
- data/lib/kinetic_sdk/core/lib/users.rb +12 -1
- data/lib/kinetic_sdk/utils/kinetic-http.rb +2 -4
- data/lib/kinetic_sdk/version.rb +1 -1
- metadata +72 -59
- data/gems/mime-types-3.1/History.rdoc +0 -658
- data/gems/mime-types-3.1/lib/mime-types.rb +0 -1
- data/gems/mime-types-3.1/lib/mime/types/columnar.rb +0 -1
- data/gems/mime-types-3.1/lib/mime/types/container.rb +0 -30
- data/gems/mime-types-data-3.2016.0521/Contributing.md +0 -157
- data/gems/mime-types-data-3.2016.0521/History.md +0 -351
- data/gems/mime-types-data-3.2016.0521/README.md +0 -61
- data/gems/mime-types-data-3.2016.0521/Rakefile +0 -80
- data/gems/mime-types-data-3.2016.0521/data/mime-types.json +0 -1
data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.friendly.column
RENAMED
@@ -16,6 +16,9 @@
|
|
16
16
|
-
|
17
17
|
-
|
18
18
|
-
|
19
|
+
-
|
20
|
+
-
|
21
|
+
-
|
19
22
|
en^Andrew Toolkit
|
20
23
|
-
|
21
24
|
-
|
@@ -40,6 +43,15 @@ en^Atom Publishing Protocol Service Document
|
|
40
43
|
-
|
41
44
|
-
|
42
45
|
-
|
46
|
+
-
|
47
|
+
-
|
48
|
+
-
|
49
|
+
-
|
50
|
+
-
|
51
|
+
-
|
52
|
+
-
|
53
|
+
-
|
54
|
+
-
|
43
55
|
en^Voice Browser Call Control
|
44
56
|
-
|
45
57
|
en^Cloud Data Management Interface (CDMI) - Capability
|
@@ -63,10 +75,18 @@ en^Cloud Data Management Interface (CDMI) - Queue
|
|
63
75
|
-
|
64
76
|
-
|
65
77
|
-
|
78
|
+
-
|
79
|
+
-
|
80
|
+
-
|
81
|
+
-
|
82
|
+
-
|
83
|
+
-
|
84
|
+
-
|
66
85
|
en^CU-SeeMe
|
67
86
|
-
|
68
87
|
-
|
69
88
|
-
|
89
|
+
-
|
70
90
|
en^Web Distributed Authoring and Versioning
|
71
91
|
-
|
72
92
|
-
|
@@ -79,6 +99,11 @@ en^Web Distributed Authoring and Versioning
|
|
79
99
|
-
|
80
100
|
-
|
81
101
|
-
|
102
|
+
-
|
103
|
+
-
|
104
|
+
-
|
105
|
+
-
|
106
|
+
-
|
82
107
|
en^Data Structure for the Security Suitability of Cryptographic Algorithms
|
83
108
|
en^Data Structure for the Security Suitability of Cryptographic Algorithms
|
84
109
|
-
|
@@ -93,6 +118,12 @@ en^ECMAScript
|
|
93
118
|
-
|
94
119
|
-
|
95
120
|
-
|
121
|
+
-
|
122
|
+
-
|
123
|
+
-
|
124
|
+
-
|
125
|
+
-
|
126
|
+
-
|
96
127
|
en^Extensible MultiModal Annotation
|
97
128
|
-
|
98
129
|
-
|
@@ -107,6 +138,10 @@ en^Efficient XML Interchange
|
|
107
138
|
-
|
108
139
|
-
|
109
140
|
-
|
141
|
+
-
|
142
|
+
-
|
143
|
+
-
|
144
|
+
-
|
110
145
|
en^Portable Font Resource
|
111
146
|
en^Web Open Font Format
|
112
147
|
-
|
@@ -121,6 +156,11 @@ en^Web Open Font Format
|
|
121
156
|
-
|
122
157
|
-
|
123
158
|
-
|
159
|
+
-
|
160
|
+
-
|
161
|
+
-
|
162
|
+
-
|
163
|
+
-
|
124
164
|
en^Hyperstudio
|
125
165
|
-
|
126
166
|
-
|
@@ -147,6 +187,8 @@ en^JavaScript
|
|
147
187
|
-
|
148
188
|
-
|
149
189
|
-
|
190
|
+
-
|
191
|
+
-
|
150
192
|
en^JavaScript Object Notation (JSON)
|
151
193
|
-
|
152
194
|
-
|
@@ -163,6 +205,8 @@ en^JavaScript Object Notation (JSON)
|
|
163
205
|
-
|
164
206
|
-
|
165
207
|
-
|
208
|
+
-
|
209
|
+
-
|
166
210
|
en^Macintosh BinHex 4.0
|
167
211
|
en^Compact Pro
|
168
212
|
-
|
@@ -197,6 +241,9 @@ en^Metalink
|
|
197
241
|
en^Metadata Encoding and Transmission Standard
|
198
242
|
-
|
199
243
|
-
|
244
|
+
-
|
245
|
+
-
|
246
|
+
-
|
200
247
|
en^Metadata Object Description Schema
|
201
248
|
-
|
202
249
|
-
|
@@ -212,6 +259,8 @@ en^MPEG4
|
|
212
259
|
-
|
213
260
|
-
|
214
261
|
en^Microsoft Word
|
262
|
+
-
|
263
|
+
-
|
215
264
|
en^Material Exchange Format
|
216
265
|
-
|
217
266
|
-
|
@@ -223,9 +272,13 @@ en^Material Exchange Format
|
|
223
272
|
-
|
224
273
|
-
|
225
274
|
-
|
275
|
+
-
|
276
|
+
-
|
277
|
+
-
|
226
278
|
en^Binary Data
|
227
279
|
en^Office Document Architecture
|
228
280
|
-
|
281
|
+
-
|
229
282
|
en^Open eBook Publication Structure
|
230
283
|
en^Ogg
|
231
284
|
-
|
@@ -233,9 +286,13 @@ en^Microsoft OneNote
|
|
233
286
|
-
|
234
287
|
-
|
235
288
|
-
|
289
|
+
-
|
290
|
+
-
|
291
|
+
-
|
236
292
|
en^XML Patch Framework
|
237
293
|
en^Adobe Portable Document Format
|
238
294
|
-
|
295
|
+
-
|
239
296
|
en^Pretty Good Privacy
|
240
297
|
-
|
241
298
|
en^Pretty Good Privacy - Signature
|
@@ -247,6 +304,7 @@ en^PKCS #10 - Certification Request Standard
|
|
247
304
|
en^PKCS #7 - Cryptographic Message Syntax Standard
|
248
305
|
en^PKCS #7 - Cryptographic Message Syntax Standard
|
249
306
|
en^PKCS #8 - Private-Key Information Syntax Standard
|
307
|
+
-
|
250
308
|
en^Attribute Certificate
|
251
309
|
en^Internet Public Key Infrastructure - Certificate
|
252
310
|
en^Internet Public Key Infrastructure - Certificate Revocation Lists
|
@@ -268,11 +326,13 @@ en^CU-Writer
|
|
268
326
|
-
|
269
327
|
-
|
270
328
|
-
|
329
|
+
-
|
271
330
|
en^Portable Symmetric Key Container
|
272
331
|
-
|
273
332
|
-
|
274
333
|
-
|
275
334
|
-
|
335
|
+
-
|
276
336
|
en^Resource Description Framework
|
277
337
|
en^IMS Networks
|
278
338
|
en^Relax NG Compact Syntax
|
@@ -289,6 +349,10 @@ en^XML Resource Lists
|
|
289
349
|
-
|
290
350
|
-
|
291
351
|
-
|
352
|
+
-
|
353
|
+
-
|
354
|
+
-
|
355
|
+
-
|
292
356
|
en^Really Simple Discovery
|
293
357
|
en^RSS - Really Simple Syndication
|
294
358
|
en^Rich Text Format
|
@@ -296,6 +360,8 @@ en^Rich Text Format
|
|
296
360
|
-
|
297
361
|
-
|
298
362
|
-
|
363
|
+
-
|
364
|
+
-
|
299
365
|
en^Systems Biology Markup Language
|
300
366
|
-
|
301
367
|
-
|
@@ -309,6 +375,17 @@ en^Session Description Protocol
|
|
309
375
|
-
|
310
376
|
-
|
311
377
|
-
|
378
|
+
-
|
379
|
+
-
|
380
|
+
-
|
381
|
+
-
|
382
|
+
-
|
383
|
+
-
|
384
|
+
-
|
385
|
+
-
|
386
|
+
-
|
387
|
+
-
|
388
|
+
-
|
312
389
|
en^Secure Electronic Transaction - Payment
|
313
390
|
-
|
314
391
|
en^Secure Electronic Transaction - Registration
|
@@ -322,6 +399,7 @@ en^S Hexdump Format
|
|
322
399
|
-
|
323
400
|
-
|
324
401
|
-
|
402
|
+
-
|
325
403
|
en^Synchronized Multimedia Integration Language
|
326
404
|
-
|
327
405
|
-
|
@@ -348,7 +426,12 @@ en^Speech Synthesis Markup Language
|
|
348
426
|
-
|
349
427
|
-
|
350
428
|
-
|
429
|
+
-
|
430
|
+
-
|
431
|
+
-
|
432
|
+
-
|
351
433
|
en^Text Encoding and Interchange
|
434
|
+
-
|
352
435
|
en^Sharing Transaction Fraud Data
|
353
436
|
-
|
354
437
|
-
|
@@ -371,6 +454,44 @@ en^Time Stamped Data Envelope
|
|
371
454
|
-
|
372
455
|
-
|
373
456
|
-
|
457
|
+
-
|
458
|
+
-
|
459
|
+
-
|
460
|
+
-
|
461
|
+
-
|
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
|
+
-
|
374
495
|
en^3rd Generation Partnership Project - Pic Large
|
375
496
|
en^3rd Generation Partnership Project - Pic Small
|
376
497
|
en^3rd Generation Partnership Project - Pic Var
|
@@ -398,13 +519,29 @@ en^Adobe XML Data Package
|
|
398
519
|
en^Adobe XML Forms Data Format
|
399
520
|
-
|
400
521
|
-
|
522
|
+
-
|
523
|
+
-
|
524
|
+
-
|
525
|
+
-
|
526
|
+
-
|
527
|
+
-
|
528
|
+
-
|
529
|
+
-
|
530
|
+
-
|
531
|
+
-
|
532
|
+
-
|
533
|
+
-
|
534
|
+
-
|
401
535
|
en^Ahead AIR Application
|
402
536
|
en^AirZip FileSECURE
|
403
537
|
en^AirZip FileSECURE
|
538
|
+
-
|
404
539
|
en^Amazon Kindle eBook format
|
540
|
+
-
|
405
541
|
en^Active Content Compression
|
406
542
|
en^AmigaDE
|
407
543
|
-
|
544
|
+
-
|
408
545
|
en^Android Package Archive
|
409
546
|
-
|
410
547
|
en^ANSER-WEB Terminal Client - Certificate Issue
|
@@ -414,13 +551,19 @@ en^Antix Game Player
|
|
414
551
|
-
|
415
552
|
-
|
416
553
|
-
|
554
|
+
-
|
555
|
+
-
|
417
556
|
en^Apple Installer Package
|
557
|
+
-
|
418
558
|
en^Multimedia Playlist Unicode
|
419
559
|
-
|
420
560
|
-
|
561
|
+
-
|
562
|
+
-
|
421
563
|
en^Arista Networks Software Image
|
422
564
|
-
|
423
565
|
-
|
566
|
+
-
|
424
567
|
en^Audiograph
|
425
568
|
-
|
426
569
|
-
|
@@ -428,18 +571,31 @@ en^Audiograph
|
|
428
571
|
-
|
429
572
|
-
|
430
573
|
-
|
574
|
+
-
|
575
|
+
-
|
576
|
+
-
|
577
|
+
-
|
578
|
+
-
|
579
|
+
-
|
580
|
+
-
|
431
581
|
en^Blueice Research Multipass
|
432
582
|
-
|
433
583
|
-
|
434
584
|
en^BMI Drawing Data Interchange
|
585
|
+
-
|
586
|
+
-
|
435
587
|
en^BusinessObjects
|
436
588
|
-
|
437
589
|
-
|
438
590
|
-
|
439
591
|
-
|
440
592
|
-
|
593
|
+
-
|
594
|
+
-
|
441
595
|
en^CambridgeSoft Chem Draw
|
596
|
+
-
|
442
597
|
en^Karaoke on Chipnuts Chipsets
|
598
|
+
-
|
443
599
|
en^Interactive Geometry Software Cinderella
|
444
600
|
-
|
445
601
|
-
|
@@ -453,6 +609,14 @@ en^ClueTrust CartoMobile - Config Package
|
|
453
609
|
-
|
454
610
|
-
|
455
611
|
-
|
612
|
+
-
|
613
|
+
-
|
614
|
+
-
|
615
|
+
-
|
616
|
+
-
|
617
|
+
-
|
618
|
+
-
|
619
|
+
-
|
456
620
|
en^Sixth Floor Media - CommonSpace
|
457
621
|
en^CIM Database
|
458
622
|
-
|
@@ -463,6 +627,8 @@ en^CrickSoftware - Clicker - Palette
|
|
463
627
|
en^CrickSoftware - Clicker - Template
|
464
628
|
en^CrickSoftware - Clicker - Wordbank
|
465
629
|
en^Critical Tools - PERT Chart EXPERT
|
630
|
+
-
|
631
|
+
-
|
466
632
|
en^PosML
|
467
633
|
-
|
468
634
|
-
|
@@ -476,12 +642,20 @@ en^CURL Applet
|
|
476
642
|
-
|
477
643
|
-
|
478
644
|
-
|
645
|
+
-
|
646
|
+
-
|
647
|
+
-
|
648
|
+
-
|
649
|
+
-
|
479
650
|
en^RemoteDocs R-Viewer
|
480
651
|
-
|
481
652
|
-
|
482
653
|
-
|
483
654
|
-
|
484
655
|
-
|
656
|
+
-
|
657
|
+
-
|
658
|
+
-
|
485
659
|
en^FCS Express Layout Link
|
486
660
|
-
|
487
661
|
-
|
@@ -517,12 +691,14 @@ en^Digital Video Broadcasting
|
|
517
691
|
-
|
518
692
|
-
|
519
693
|
-
|
694
|
+
-
|
520
695
|
en^Digital Video Broadcasting
|
521
696
|
-
|
522
697
|
en^DynaGeo
|
523
698
|
-
|
524
699
|
-
|
525
700
|
-
|
701
|
+
-
|
526
702
|
en^EcoWin Chart
|
527
703
|
-
|
528
704
|
-
|
@@ -530,6 +706,8 @@ en^EcoWin Chart
|
|
530
706
|
-
|
531
707
|
-
|
532
708
|
-
|
709
|
+
-
|
710
|
+
-
|
533
711
|
en^Enliven Viewer
|
534
712
|
-
|
535
713
|
-
|
@@ -539,6 +717,7 @@ en^QuickAnime Player
|
|
539
717
|
en^SimpleAnimeLite Player
|
540
718
|
en^QUASS Stream Player
|
541
719
|
-
|
720
|
+
-
|
542
721
|
en^MICROSEC e-Szign¢
|
543
722
|
-
|
544
723
|
-
|
@@ -563,6 +742,11 @@ en^MICROSEC e-Szign¢
|
|
563
742
|
-
|
564
743
|
-
|
565
744
|
-
|
745
|
+
-
|
746
|
+
-
|
747
|
+
-
|
748
|
+
-
|
749
|
+
-
|
566
750
|
en^EZPix Secure Photo Album
|
567
751
|
en^EZPix Secure Photo Album
|
568
752
|
-
|
@@ -574,6 +758,7 @@ en^Digital Siesmograph Networks - SEED Datafiles
|
|
574
758
|
-
|
575
759
|
-
|
576
760
|
-
|
761
|
+
-
|
577
762
|
en^NpGraphIt
|
578
763
|
en^FluxTime Clip
|
579
764
|
-
|
@@ -594,11 +779,15 @@ en^Fujitsu - Xerox DocuWorks Binder
|
|
594
779
|
-
|
595
780
|
-
|
596
781
|
-
|
782
|
+
-
|
783
|
+
-
|
597
784
|
en^FuzzySheet
|
598
785
|
en^Genomatix Tuxedo Framework
|
599
786
|
-
|
600
787
|
-
|
788
|
+
-
|
601
789
|
en^GeoGebra
|
790
|
+
-
|
602
791
|
en^GeoGebra
|
603
792
|
en^GeoMetry Explorer
|
604
793
|
en^GEONExT and JSXGraph
|
@@ -629,6 +818,7 @@ en^Homebanking Computer Interface (HBCI)
|
|
629
818
|
-
|
630
819
|
-
|
631
820
|
-
|
821
|
+
-
|
632
822
|
en^Archipelago Lesson Player
|
633
823
|
en^HP-GL/2 and HP RTL
|
634
824
|
en^Hewlett Packard Instant Delivery
|
@@ -639,6 +829,8 @@ en^PCL 6 Enhanced (Formely PCL XL)
|
|
639
829
|
-
|
640
830
|
en^Hydrostatix Master Suite
|
641
831
|
-
|
832
|
+
-
|
833
|
+
-
|
642
834
|
en^3D Crossword Plugin
|
643
835
|
-
|
644
836
|
-
|
@@ -649,6 +841,8 @@ en^IBM Electronic Media Management System - Secure Container
|
|
649
841
|
en^ICC profile
|
650
842
|
-
|
651
843
|
en^igLoader
|
844
|
+
-
|
845
|
+
-
|
652
846
|
en^ImmerVision PURE Players
|
653
847
|
en^ImmerVision PURE Players
|
654
848
|
-
|
@@ -683,6 +877,7 @@ en^IP Unplugged Roaming Client
|
|
683
877
|
en^iRepository / Lucidoc Editor
|
684
878
|
en^Express by Infoseek
|
685
879
|
en^International Society for Advancement of Cytometry
|
880
|
+
-
|
686
881
|
en^Lightspeed Audio Lab
|
687
882
|
-
|
688
883
|
-
|
@@ -710,10 +905,16 @@ en^Kidspiration
|
|
710
905
|
en^Kinar Applications
|
711
906
|
en^SSEYO Koan Play File
|
712
907
|
en^Kodak Storyshare
|
908
|
+
-
|
909
|
+
-
|
713
910
|
en^Laser App Enterprise
|
714
911
|
-
|
912
|
+
-
|
913
|
+
-
|
715
914
|
en^Life Balance - Desktop Edition
|
716
915
|
en^Life Balance - Exchange Format
|
916
|
+
-
|
917
|
+
-
|
717
918
|
en^Lotus 1-2-3
|
718
919
|
en^Lotus Approach
|
719
920
|
en^Lotus Freelance
|
@@ -740,6 +941,7 @@ en^Micrografx
|
|
740
941
|
en^Micrografx iGrafx Professional
|
741
942
|
-
|
742
943
|
-
|
944
|
+
-
|
743
945
|
en^FrameMaker Interchange Format
|
744
946
|
-
|
745
947
|
-
|
@@ -816,10 +1018,12 @@ en^Muvee Automatic Video Editing
|
|
816
1018
|
-
|
817
1019
|
-
|
818
1020
|
-
|
1021
|
+
-
|
819
1022
|
en^neuroLanguage
|
820
1023
|
-
|
821
1024
|
-
|
822
1025
|
-
|
1026
|
+
-
|
823
1027
|
en^NobleNet Directory
|
824
1028
|
en^NobleNet Sealer
|
825
1029
|
en^NobleNet Web
|
@@ -878,6 +1082,8 @@ en^Open Document Text Web
|
|
878
1082
|
-
|
879
1083
|
-
|
880
1084
|
-
|
1085
|
+
-
|
1086
|
+
-
|
881
1087
|
en^Sugar Linux Application Bundle
|
882
1088
|
-
|
883
1089
|
-
|
@@ -923,6 +1129,13 @@ en^OMA Download Agents
|
|
923
1129
|
-
|
924
1130
|
-
|
925
1131
|
-
|
1132
|
+
-
|
1133
|
+
-
|
1134
|
+
-
|
1135
|
+
-
|
1136
|
+
-
|
1137
|
+
-
|
1138
|
+
-
|
926
1139
|
en^Open Office Extension
|
927
1140
|
-
|
928
1141
|
-
|
@@ -939,6 +1152,7 @@ en^Open Office Extension
|
|
939
1152
|
-
|
940
1153
|
-
|
941
1154
|
-
|
1155
|
+
-
|
942
1156
|
en^Microsoft Office - OOXML - Presentation
|
943
1157
|
-
|
944
1158
|
-
|
@@ -1011,6 +1225,8 @@ en^OSGi Deployment Package
|
|
1011
1225
|
en^PalmOS Data
|
1012
1226
|
-
|
1013
1227
|
-
|
1228
|
+
-
|
1229
|
+
-
|
1014
1230
|
en^PawaaFILE
|
1015
1231
|
-
|
1016
1232
|
en^Proprietary P&G Standard Reporting System
|
@@ -1029,6 +1245,7 @@ en^PowerBuilder
|
|
1029
1245
|
-
|
1030
1246
|
en^Preview Systems ZipLock/VBox
|
1031
1247
|
en^EFI Proteus
|
1248
|
+
-
|
1032
1249
|
en^PubliShare Objects
|
1033
1250
|
en^Princeton Video Image
|
1034
1251
|
-
|
@@ -1054,10 +1271,12 @@ en^QuarkXPress
|
|
1054
1271
|
-
|
1055
1272
|
-
|
1056
1273
|
-
|
1274
|
+
-
|
1057
1275
|
en^RealVNC
|
1058
1276
|
en^Recordare Applications
|
1059
1277
|
en^Recordare Applications
|
1060
1278
|
-
|
1279
|
+
-
|
1061
1280
|
en^CryptoNote
|
1062
1281
|
en^Blackberry COD File
|
1063
1282
|
en^RealMedia
|
@@ -1081,14 +1300,22 @@ en^SailingTracker
|
|
1081
1300
|
-
|
1082
1301
|
-
|
1083
1302
|
-
|
1303
|
+
-
|
1084
1304
|
en^SeeMail
|
1305
|
+
-
|
1085
1306
|
en^Secured eMail
|
1086
1307
|
en^Secured eMail
|
1087
1308
|
en^Secured eMail
|
1309
|
+
-
|
1088
1310
|
en^Shana Informed Filler
|
1089
1311
|
en^Shana Informed Filler
|
1090
1312
|
en^Shana Informed Filler
|
1091
1313
|
en^Shana Informed Filler
|
1314
|
+
-
|
1315
|
+
-
|
1316
|
+
-
|
1317
|
+
-
|
1318
|
+
-
|
1092
1319
|
en^SimTech MindMapper
|
1093
1320
|
-
|
1094
1321
|
en^SMAF File
|
@@ -1096,12 +1323,14 @@ en^SMAF File
|
|
1096
1323
|
en^SMART Technologies Apps
|
1097
1324
|
-
|
1098
1325
|
-
|
1326
|
+
-
|
1099
1327
|
en^SudokuMagic
|
1100
1328
|
en^TIBCO Spotfire
|
1101
1329
|
en^TIBCO Spotfire
|
1102
1330
|
-
|
1103
1331
|
-
|
1104
1332
|
-
|
1333
|
+
-
|
1105
1334
|
en^StarOffice - Calc
|
1106
1335
|
-
|
1107
1336
|
en^StarOffice - Draw
|
@@ -1126,6 +1355,7 @@ en^OpenOffice - Writer Template (Text - HTML)
|
|
1126
1355
|
en^ScheduleUs
|
1127
1356
|
en^SourceView Document
|
1128
1357
|
-
|
1358
|
+
-
|
1129
1359
|
en^Symbian Install Package
|
1130
1360
|
en^SyncML
|
1131
1361
|
en^SyncML - Device Management
|
@@ -1136,11 +1366,14 @@ en^SyncML - Device Management
|
|
1136
1366
|
-
|
1137
1367
|
-
|
1138
1368
|
-
|
1369
|
+
-
|
1139
1370
|
en^Tao Intent
|
1140
1371
|
-
|
1141
1372
|
-
|
1142
1373
|
-
|
1374
|
+
-
|
1143
1375
|
en^MobileTV
|
1376
|
+
-
|
1144
1377
|
en^TRI Systems Config
|
1145
1378
|
en^Triscape Map Explorer
|
1146
1379
|
en^True BASIC
|
@@ -1172,6 +1405,8 @@ en^VirtualCatalog
|
|
1172
1405
|
-
|
1173
1406
|
-
|
1174
1407
|
-
|
1408
|
+
-
|
1409
|
+
-
|
1175
1410
|
en^Microsoft Visio
|
1176
1411
|
en^Visionary
|
1177
1412
|
-
|
@@ -1189,6 +1424,7 @@ en^WebTurbo
|
|
1189
1424
|
-
|
1190
1425
|
-
|
1191
1426
|
-
|
1427
|
+
-
|
1192
1428
|
en^Mathematica Notebook Player
|
1193
1429
|
en^Wordperfect
|
1194
1430
|
en^SundaHus WQ
|
@@ -1219,11 +1455,15 @@ en^SMAF Phrase
|
|
1219
1455
|
-
|
1220
1456
|
-
|
1221
1457
|
en^CustomMenu
|
1458
|
+
-
|
1222
1459
|
en^Z.U.L. Geometry
|
1223
1460
|
en^Zzazz Deck
|
1224
1461
|
en^VoiceXML
|
1225
1462
|
-
|
1226
1463
|
-
|
1464
|
+
en^WebAssembly
|
1465
|
+
-
|
1466
|
+
-
|
1227
1467
|
-
|
1228
1468
|
-
|
1229
1469
|
en^Widget Packaging and XML Configuration
|
@@ -1331,6 +1571,7 @@ en^LaTeX
|
|
1331
1571
|
en^Mobipocket
|
1332
1572
|
en^Microsoft ClickOnce
|
1333
1573
|
-
|
1574
|
+
-
|
1334
1575
|
en^Microsoft Windows Media Player Download Package
|
1335
1576
|
en^Microsoft Windows Media Player Skin Package
|
1336
1577
|
en^Microsoft XAML Browser Application
|
@@ -1360,6 +1601,7 @@ en^PKCS #7 - Cryptographic Message Syntax Standard (Certificates)
|
|
1360
1601
|
en^PKCS #7 - Cryptographic Message Syntax Standard (Certificate Request Response)
|
1361
1602
|
-
|
1362
1603
|
-
|
1604
|
+
-
|
1363
1605
|
en^RAR Archive
|
1364
1606
|
-
|
1365
1607
|
-
|
@@ -1375,6 +1617,7 @@ en^Microsoft Silverlight
|
|
1375
1617
|
-
|
1376
1618
|
-
|
1377
1619
|
-
|
1620
|
+
-
|
1378
1621
|
en^Stuffit Archive
|
1379
1622
|
en^Stuffit Archive
|
1380
1623
|
-
|
@@ -1405,10 +1648,13 @@ en^WAIS Source
|
|
1405
1648
|
-
|
1406
1649
|
-
|
1407
1650
|
en^X.509 Certificate
|
1651
|
+
-
|
1652
|
+
-
|
1408
1653
|
en^Xfig
|
1409
1654
|
-
|
1410
1655
|
en^XPInstall - Mozilla
|
1411
1656
|
-
|
1657
|
+
en^Zip Archive
|
1412
1658
|
-
|
1413
1659
|
-
|
1414
1660
|
-
|
@@ -1425,6 +1671,7 @@ en^XML Configuration Access Protocol - XCAP Diff
|
|
1425
1671
|
en^XML Encryption Syntax and Processing
|
1426
1672
|
en^XHTML - The Extensible HyperText Markup Language
|
1427
1673
|
-
|
1674
|
+
-
|
1428
1675
|
en^XML - Extensible Markup Language
|
1429
1676
|
en^Document Type Definition
|
1430
1677
|
-
|
@@ -1436,6 +1683,10 @@ en^XML Transformations
|
|
1436
1683
|
en^XSPF - XML Shareable Playlist Format
|
1437
1684
|
en^MXML
|
1438
1685
|
en^YANG Data Modeling Language
|
1686
|
+
-
|
1687
|
+
-
|
1688
|
+
-
|
1689
|
+
-
|
1439
1690
|
en^YIN (YANG - XML)
|
1440
1691
|
en^Zip Archive
|
1441
1692
|
-
|
@@ -1444,6 +1695,8 @@ en^Zip Archive
|
|
1444
1695
|
-
|
1445
1696
|
-
|
1446
1697
|
-
|
1698
|
+
-
|
1699
|
+
-
|
1447
1700
|
en^Adaptive differential pulse-code modulation
|
1448
1701
|
-
|
1449
1702
|
-
|
@@ -1508,6 +1761,12 @@ en^Sun Audio - Au file format
|
|
1508
1761
|
-
|
1509
1762
|
-
|
1510
1763
|
-
|
1764
|
+
-
|
1765
|
+
-
|
1766
|
+
-
|
1767
|
+
-
|
1768
|
+
-
|
1769
|
+
-
|
1511
1770
|
en^MIDI - Musical Instrument Digital Interface
|
1512
1771
|
-
|
1513
1772
|
en^MPEG-4 Audio
|
@@ -1554,6 +1813,12 @@ en^Ogg Audio
|
|
1554
1813
|
-
|
1555
1814
|
-
|
1556
1815
|
-
|
1816
|
+
-
|
1817
|
+
-
|
1818
|
+
-
|
1819
|
+
-
|
1820
|
+
-
|
1821
|
+
-
|
1557
1822
|
en^DECE Audio
|
1558
1823
|
en^Digital Winds Music
|
1559
1824
|
-
|
@@ -1571,6 +1836,7 @@ en^DTS High Definition Audio
|
|
1571
1836
|
-
|
1572
1837
|
-
|
1573
1838
|
-
|
1839
|
+
-
|
1574
1840
|
en^Lucent Voice
|
1575
1841
|
en^Microsoft PlayReady Ecosystem
|
1576
1842
|
-
|
@@ -1581,11 +1847,13 @@ en^Nuera ECELP 9600
|
|
1581
1847
|
-
|
1582
1848
|
-
|
1583
1849
|
-
|
1850
|
+
-
|
1584
1851
|
en^Hit'n'Mix
|
1585
1852
|
-
|
1586
1853
|
-
|
1587
1854
|
-
|
1588
1855
|
-
|
1856
|
+
en^Waveform Audio File Format (WAV)
|
1589
1857
|
en^Open Web Media Project - Audio
|
1590
1858
|
en^Advanced Audio Coding (AAC)
|
1591
1859
|
en^Audio Interchange File Format
|
@@ -1593,6 +1861,7 @@ en^Audio Interchange File Format
|
|
1593
1861
|
-
|
1594
1862
|
-
|
1595
1863
|
-
|
1864
|
+
-
|
1596
1865
|
en^M3U (Multimedia Playlist)
|
1597
1866
|
en^Microsoft Windows Media Audio Redirector
|
1598
1867
|
en^Microsoft Windows Media Audio
|
@@ -1610,22 +1879,50 @@ en^Chemical Style Markup Language
|
|
1610
1879
|
-
|
1611
1880
|
en^XYZ File Format
|
1612
1881
|
-
|
1882
|
+
-
|
1883
|
+
-
|
1884
|
+
-
|
1885
|
+
-
|
1886
|
+
-
|
1887
|
+
-
|
1888
|
+
-
|
1889
|
+
-
|
1890
|
+
-
|
1891
|
+
-
|
1613
1892
|
en^Bitmap Image File
|
1614
1893
|
en^Computer Graphics Metafile
|
1615
1894
|
-
|
1616
1895
|
-
|
1617
1896
|
-
|
1618
1897
|
-
|
1898
|
+
-
|
1619
1899
|
en^G3 Fax Image
|
1620
1900
|
en^Graphics Interchange Format
|
1901
|
+
-
|
1902
|
+
-
|
1903
|
+
-
|
1904
|
+
-
|
1905
|
+
-
|
1906
|
+
-
|
1621
1907
|
en^Image Exchange Format
|
1622
1908
|
-
|
1909
|
+
-
|
1623
1910
|
en^JPEG Image
|
1624
1911
|
-
|
1625
1912
|
-
|
1913
|
+
-
|
1914
|
+
-
|
1915
|
+
-
|
1916
|
+
-
|
1917
|
+
-
|
1918
|
+
-
|
1919
|
+
-
|
1920
|
+
-
|
1921
|
+
-
|
1626
1922
|
en^OpenGL Textures (KTX)
|
1627
1923
|
-
|
1628
1924
|
-
|
1925
|
+
-
|
1629
1926
|
en^Portable Network Graphics (PNG)
|
1630
1927
|
en^BTIF
|
1631
1928
|
-
|
@@ -1665,29 +1962,49 @@ en^FlashPix
|
|
1665
1962
|
-
|
1666
1963
|
-
|
1667
1964
|
-
|
1965
|
+
-
|
1668
1966
|
en^WAP Bitamp (WBMP)
|
1669
1967
|
en^eXtended Image File Format (XIFF)
|
1670
1968
|
-
|
1671
1969
|
en^WebP Image
|
1672
1970
|
-
|
1673
1971
|
-
|
1972
|
+
en^Adobe Digital Negative
|
1674
1973
|
-
|
1974
|
+
en^Canon Raw Image
|
1975
|
+
en^Canon Raw Image
|
1675
1976
|
en^CMU Image
|
1676
1977
|
en^Corel Metafile Exchange (CMX)
|
1677
1978
|
-
|
1979
|
+
-
|
1980
|
+
en^Epson Raw Image
|
1678
1981
|
en^FreeHand MX
|
1982
|
+
en^Fuji Raw Image
|
1679
1983
|
-
|
1680
1984
|
en^Icon Image
|
1985
|
+
en^Kodak Raw Image
|
1986
|
+
en^Kodak Raw Image
|
1987
|
+
en^Kodak Raw Image
|
1988
|
+
en^Minolta Raw Image
|
1681
1989
|
-
|
1682
1990
|
en^Bitmap Image File
|
1991
|
+
en^Nikon Raw Image
|
1992
|
+
en^Olympus Raw Image
|
1683
1993
|
-
|
1994
|
+
en^Panasonic Raw Image
|
1684
1995
|
en^PCX Image
|
1996
|
+
en^Pentax Raw Image
|
1685
1997
|
en^PICT Image
|
1686
1998
|
en^Portable Anymap Image
|
1687
1999
|
en^Portable Bitmap Format
|
1688
2000
|
en^Portable Graymap Format
|
1689
2001
|
en^Portable Pixmap Format
|
1690
2002
|
en^Silicon Graphics RGB Bitmap
|
2003
|
+
en^Sigma Raw Image
|
2004
|
+
en^Sony Raw Image
|
2005
|
+
en^Sony Raw Image
|
2006
|
+
en^Sony Raw Image
|
2007
|
+
-
|
1691
2008
|
-
|
1692
2009
|
-
|
1693
2010
|
-
|
@@ -1719,8 +2036,15 @@ en^Email Message
|
|
1719
2036
|
-
|
1720
2037
|
-
|
1721
2038
|
-
|
2039
|
+
-
|
2040
|
+
-
|
2041
|
+
-
|
2042
|
+
-
|
1722
2043
|
en^Initial Graphics Exchange Specification (IGES)
|
1723
2044
|
en^Mesh Data Type
|
2045
|
+
-
|
2046
|
+
-
|
2047
|
+
-
|
1724
2048
|
en^COLLADA
|
1725
2049
|
en^Autodesk Design Web Format (DWF)
|
1726
2050
|
-
|
@@ -1734,6 +2058,7 @@ en^Virtue MTS
|
|
1734
2058
|
-
|
1735
2059
|
-
|
1736
2060
|
-
|
2061
|
+
-
|
1737
2062
|
en^Virtue VTU
|
1738
2063
|
en^Virtual Reality Modeling Language
|
1739
2064
|
-
|
@@ -1764,8 +2089,13 @@ en^Virtual Reality Modeling Language
|
|
1764
2089
|
-
|
1765
2090
|
-
|
1766
2091
|
-
|
2092
|
+
-
|
2093
|
+
-
|
1767
2094
|
en^iCalendar
|
1768
2095
|
-
|
2096
|
+
-
|
2097
|
+
-
|
2098
|
+
-
|
1769
2099
|
en^Cascading Style Sheets (CSS)
|
1770
2100
|
en^Comma-Separated Values
|
1771
2101
|
-
|
@@ -1777,6 +2107,9 @@ en^Comma-Separated Values
|
|
1777
2107
|
-
|
1778
2108
|
-
|
1779
2109
|
-
|
2110
|
+
-
|
2111
|
+
-
|
2112
|
+
-
|
1780
2113
|
en^HyperText Markup Language (HTML)
|
1781
2114
|
-
|
1782
2115
|
-
|
@@ -1800,6 +2133,9 @@ en^Rich Text Format (RTF)
|
|
1800
2133
|
-
|
1801
2134
|
en^Standard Generalized Markup Language (SGML)
|
1802
2135
|
-
|
2136
|
+
-
|
2137
|
+
-
|
2138
|
+
-
|
1803
2139
|
en^Tab Separated Values
|
1804
2140
|
en^troff
|
1805
2141
|
en^Turtle (Terse RDF Triple Language)
|
@@ -1808,6 +2144,7 @@ en^URI Resolution Services
|
|
1808
2144
|
-
|
1809
2145
|
-
|
1810
2146
|
-
|
2147
|
+
-
|
1811
2148
|
en^Curl - Applet
|
1812
2149
|
en^Curl - Detached Applet
|
1813
2150
|
en^Curl - Manifest File
|
@@ -1817,9 +2154,13 @@ en^Curl - Source Code
|
|
1817
2154
|
-
|
1818
2155
|
-
|
1819
2156
|
-
|
2157
|
+
-
|
1820
2158
|
en^mod_fly / fly.cgi
|
1821
2159
|
en^FLEXSTOR
|
2160
|
+
-
|
1822
2161
|
en^Graphviz
|
2162
|
+
-
|
2163
|
+
-
|
1823
2164
|
en^In3D - 3DML
|
1824
2165
|
en^In3D - 3DML
|
1825
2166
|
-
|
@@ -1830,12 +2171,15 @@ en^In3D - 3DML
|
|
1830
2171
|
-
|
1831
2172
|
-
|
1832
2173
|
-
|
2174
|
+
-
|
2175
|
+
-
|
1833
2176
|
en^J2ME App Descriptor
|
1834
2177
|
-
|
1835
2178
|
-
|
1836
2179
|
-
|
1837
2180
|
en^Wireless Markup Language (WML)
|
1838
2181
|
en^Wireless Markup Language Script (WMLScript)
|
2182
|
+
-
|
1839
2183
|
en^Assembler Source File
|
1840
2184
|
en^C Source File
|
1841
2185
|
-
|
@@ -1867,6 +2211,8 @@ en^3GP2
|
|
1867
2211
|
-
|
1868
2212
|
-
|
1869
2213
|
-
|
2214
|
+
-
|
2215
|
+
-
|
1870
2216
|
en^H.261
|
1871
2217
|
en^H.263
|
1872
2218
|
-
|
@@ -1902,6 +2248,9 @@ en^Quicktime Video
|
|
1902
2248
|
-
|
1903
2249
|
-
|
1904
2250
|
-
|
2251
|
+
-
|
2252
|
+
-
|
2253
|
+
-
|
1905
2254
|
en^DECE High Definition Video
|
1906
2255
|
en^DECE Mobile Video
|
1907
2256
|
-
|
@@ -1933,9 +2282,11 @@ en^Microsoft PlayReady Ecosystem Video
|
|
1933
2282
|
-
|
1934
2283
|
-
|
1935
2284
|
-
|
2285
|
+
-
|
1936
2286
|
en^DECE MP4
|
1937
2287
|
en^Vivo
|
1938
2288
|
-
|
2289
|
+
-
|
1939
2290
|
en^Open Web Media Project - Video
|
1940
2291
|
-
|
1941
2292
|
-
|