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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
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
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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
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
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
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
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
//! Signatures.

signatures! {
    // 59 bytes
    format = MicrosoftVisualStudioSolution
    value = b"\xEF\xBB\xBF\r\nMicrosoft Visual Studio Solution File, Format Version "
    value = b"\xEF\xBB\xBF\nMicrosoft Visual Studio Solution File, Format Version "
    value = b"Microsoft Visual Studio Solution File, Format Version "

    // 52 bytes
    format = Abiword
    value = b"\xEF\xBB\xBF<!DOCTYPE abiword PUBLIC", b"<abiword template=\"false\"" offset = 102
    value = b"<!DOCTYPE abiword PUBLIC", b"<abiword template=\"false\"" offset = 102
    value = b"\xEF\xBB\xBF<abiword template=\"false\""
    value = b"<abiword template=\"false\""

    // 51 bytes
    format = AbiwordTemplate
    value = b"\xEF\xBB\xBF<!DOCTYPE abiword PUBLIC", b"<abiword template=\"true\"" offset = 102
    value = b"<!DOCTYPE abiword PUBLIC", b"<abiword template=\"true\"" offset = 102
    value = b"\xEF\xBB\xBF<abiword template=\"true\""
    value = b"<abiword template=\"true\""

    // 40 bytes
    format = TimedTextMarkupLanguage
    value = b"\xEF\xBB\xBF<tt xmlns=\"http://www.w3.org/ns/ttml\""
    value = b"<tt xmlns=\"http://www.w3.org/ns/ttml\""

    // 39 bytes
    format = VirtualboxVirtualDiskImage
    value = b"<<< Oracle VM VirtualBox Disk Image >>>"

    // 37 bytes
    format = PemPrivateKey
    value = b"-----BEGIN ENCRYPTED PRIVATE KEY-----"
    value = b"-----BEGIN ECDSA PRIVATE KEY-----"
    value = b"-----BEGIN DSA PRIVATE KEY-----"
    value = b"-----BEGIN RSA PRIVATE KEY-----"
    value = b"-----BEGIN EC PRIVATE KEY-----"
    value = b"-----BEGIN PRIVATE KEY-----"

    format = PgpPrivateKeyBlock
    value = b"-----BEGIN PGP PRIVATE KEY BLOCK-----"

    // 36 bytes
    format = PgpPublicKeyBlock
    value = b"-----BEGIN PGP PUBLIC KEY BLOCK-----"

    // 35 bytes
    format = PemCertificateSigningRequest
    value = b"-----BEGIN CERTIFICATE REQUEST-----"

    // 34 bytes
    format = PgpSignedMessage
    value = b"-----BEGIN PGP SIGNED MESSAGE-----"

    // 32 bytes
    format = PemPublicKey
    value = b"-----BEGIN ECDSA PUBLIC KEY-----"
    value = b"-----BEGIN DSA PUBLIC KEY-----"
    value = b"-----BEGIN RSA PUBLIC KEY-----"
    value = b"-----BEGIN EC PUBLIC KEY-----"
    value = b"-----BEGIN PUBLIC KEY-----"

    format = PolygonBinary
    value = b"ply\r\nformat binary_little_endian"
    value = b"ply\r\nformat binary_big_endian"
    value = b"ply\nformat binary_little_endian"
    value = b"ply\nformat binary_big_endian"
    value = b"ply\rformat binary_little_endian"
    value = b"ply\rformat binary_big_endian"

    format = Sketchup
    value =
        b"\xFF\xFE\xFF\x0E\x53\x00\x6B\x00\x65\x00\x74\x00\x63\x00\x68\x00",
        b"\x55\x00\x70\x00\x20\x00\x4D\x00\x6F\x00\x64\x00\x65\x00\x6C\x00" offset = 16

    // 30 bytes
    format = FlexibleImageTransportSystem
    value =b"SIMPLE  =                    T"

    // 29 bytes
    format = PgpSignature
    value = b"-----BEGIN PGP SIGNATURE-----"

    // 28 bytes
    format = NeoGeoPocketRom
    value = b" LICENSED BY SNK CORPORATION"
    value = b"COPYRIGHT BY SNK CORPORATION"

    format = Vcalendar
    value = b"BEGIN:VCALENDAR\r\nVERSION:1.0"
    value = b"BEGIN:VCALENDAR\nVERSION:1.0"
    value = b"BEGIN:VCALENDAR\rVERSION:1.0"

    // 27 bytes
    format = PemCertificate
    value = b"-----BEGIN CERTIFICATE-----"

    format = PgpMessage
    value = b"-----BEGIN PGP MESSAGE-----"

    format = StereolithographyBinary
    value = b"3D Systems, Binary STL file"
    value = b"Materialise Coloured STL"
    value = b"Exported from Blender", b"\x00" offset = 79
    value = b"STL binary file"
    value = b"binary stl file"
    value = b"Stratasys stl"
    value = b"SketchUp STL"
    value = b"STL File"

    // 26 bytes
    format = TrainingCenterXml
    value = b"\xEF\xBB\xBF<TrainingCenterDatabase"
    value = b"<TrainingCenterDatabase"

    // 24 bytes
    format = ClojureScript
    value = b"#!/usr/local/bin/clojure"
    value = b"#!/usr/bin/env clojure"
    value = b"#!/usr/local/bin/clj"
    value = b"#!/usr/bin/clojure"
    value = b"#!/usr/bin/env clj"
    value = b"#!/usr/bin/clj"

    // 23 bytes
    format = Extensible3d
    value = b"\xEF\xBB\xBF<!DOCTYPE X3D PUBLIC"
    value = b"<!DOCTYPE X3D PUBLIC"
    value = b"\xEF\xBB\xBF<X3D"
    value = b"\xEF\xBB\xBF<x3d"
    value = b"<X3D"
    value = b"<x3d"

    format = PythonScript
    value = b"#!/usr/local/bin/python"
    value = b"#!/usr/bin/env python"
    value = b"#!/usr/bin/python"

    // 22 bytes
    format = CreativeVoice
    value = b"Creative Voice File\x1A\x1A\x00"

    format = ToolCommandLanguageScript
    value = b"#!/usr/local/bin/tclsh"
    value = b"#!/usr/local/bin/wish"
    value = b"#!/usr/local/bin/tcl"
    value = b"#!/usr/bin/env tclsh"
    value = b"#!/usr/bin/env wish"
    value = b"#!/usr/bin/env tcl"
    value = b"#!/usr/bin/tclsh"
    value = b"#!/usr/bin/wish"
    value = b"#!/usr/bin/tcl"

    // 21 bytes
    format = DebianBinaryPackage
    value = b"!<arch>\ndebian-binary"

    format = Filmbox
    value = b"Kaydara FBX Binary  \x00"

    format = RubyScript
    value = b"#!/usr/local/bin/ruby"
    value = b"#!/usr/bin/env ruby"
    value = b"#!/usr/bin/ruby"

    format = ShellScript
    value = b"#!/usr/local/bin/bash"
    value = b"#!/usr/local/bin/fish"
    value = b"#!/usr/local/bin/tcsh"
    value = b"#!/usr/local/bin/ash"
    value = b"#!/usr/local/bin/zsh"
    value = b"#!/usr/bin/env bash"
    value = b"#!/usr/bin/env fish"
    value = b"#!/usr/bin/env zsh"
    value = b"#!/usr/local/bash"
    value = b"#!/usr/local/tcsh"
    value = b"#!/usr/bin/bash"
    value = b"#!/usr/bin/fish"
    value = b"#!/usr/bin/tcsh"
    value = b"#!/usr/bin/zsh"
    value = b"#!/bin/bash"
    value = b"#!/bin/tcsh"
    value = b"#!/bin/zsh"
    value = b"#!/bin/ash"
    value = b"#!/bin/csh"
    value = b"#!/bin/ksh"
    value = b"#!/bin/sh"

    // 20 bytes
    format = InterQuakeExport
    value = b"# Inter-Quake Export"

    format = LuaScript
    value = b"#!/usr/local/bin/lua"
    value = b"#!/usr/bin/env lua"
    value = b"#!/usr/bin/lua"

    format = WindowsShortcut
    value = b"\x4C\x00\x00\x00\x01\x14\x02\x00\x00\x00\x00\x00\xC0\x00\x00\x00\x00\x00\x00\x46"

    // 19 bytes
    format = PerlScript
    value = b"#!/usr/bin/env perl"
    value = b"#!/usr/bin/perl"

    // 18 bytes
    format = DrawingExchangeFormatBinary
    value = b"AutoCAD Binary DXF"

    format = Musicxml
    value = b"\xEF\xBB\xBF<score-partwise"
    value = b"<score-partwise"

    // 17 bytes
    format = EncapsulatedPostscript
    value = b"%!PS-Adobe-", b" EPSF-" offset = 14
    value = b"\xC5\xD0\xD3\xC6"

    format = HypertextMarkupLanguage
    value = b"\xEF\xBB\xBF<!DOCTYPE HTML"
    value = b"\xEF\xBB\xBF<!DOCTYPE html"
    value = b"\xEF\xBB\xBF<!doctype HTML"
    value = b"\xEF\xBB\xBF<!doctype html"
    value = b"<!DOCTYPE HTML"
    value = b"<!DOCTYPE html"
    value = b"<!doctype HTML"
    value = b"<!doctype html"

    format = PolygonAscii
    value = b"ply\r\nformat ascii"
    value = b"ply\nformat ascii"
    value = b"ply\rformat ascii"

    // 16 bytes
    format = AdobeIndesignDocument
    value = b"\x06\x06\xED\xF5\xD8\x1D\x46\xE5\xBD\x31\xEF\xE7\xFE\x74\xB7\x1D"

    format = AdvancedSystemsFormat
    value = b"\x30\x26\xB2\x75\x8E\x66\xCF\x11\xA6\xD9\x00\xAA\x00\x62\xCE\x6C"

    format = Fasttracker2ExtendedModule
    value = b"Extended Module:"

    format = InterQuakeModel
    value = b"INTERQUAKEMODEL\x00"

    format = MacosAlias
    value = b"\x62\x6F\x6F\x6B\x00\x00\x00\x00\x6D\x61\x72\x6B\x00\x00\x00\x00"

    format = Sqlite3
    value = b"\x53\x51\x4C\x69\x74\x65\x20\x66\x6F\x72\x6D\x61\x74\x20\x33\x00"

    format = Stuffit
    value = b"StuffIt (c)1997", b"\x05" offset = 82
    value = b"SIT!" offset = 0x80, b"rLau" offset = 0x8A
    value = b"SIT!", b"rLau" offset = 10

    format = UniversalSubtitleFormat
    value = b"\xEF\xBB\xBF<USFSubtitles"
    value = b"<USFSubtitles"

    format = WindowsRecordedTvShow
    value = b"\xB7\xD8\x00\x20\x37\x49\xDA\x11\xA6\x4E\x00\x07\xE9\x5E\xAD\x8D"

    // 15 bytes
    format = Fictionbook
    value = b"\xEF\xBB\xBF<FictionBook"
    value = b"<FictionBook"

    format = FujifilmRaw
    value = b"FUJIFILMCCD-RAW"

    format = Icalendar
    value = b"BEGIN:VCALENDAR"

    format = MegaDriveRom
    value = b"SEGA MEGA DRIVE" offset = 0x100
    value = b"SEGA GENESIS" offset = 0x100

    format = MicrosoftAccess2007Database
    value = b"Standard ACE DB" offset = 4

    format = MicrosoftAccessDatabase
    value = b"Standard Jet DB" offset = 4

    // 14 bytes
    format = CanonRaw
    value = b"\x49\x49\x1A\x00\x00\x00\x48\x45\x41\x50\x43\x43\x44\x52"

    format = Latex
    value = b"\\documentclass"
    value = b"\\documentstyle"

    format = MagickImageFileFormat
    value = b"id=ImageMagick"

    format = MaterialExchangeFormat
    value = b"\x06\x0E\x2B\x34\x02\x05\x01\x01\x0D\x01\x02\x01\x01\x02"

    // 12 bytes
    format = AnimatedPortableNetworkGraphics
    value = b"\x89\x50\x4E\x47\x0D\x0A\x1A\x0A", b"acTL" offset = 0x25

    format = Djvu
    value = b"AT&TFORM", b"DJVM" offset = 12
    value = b"AT&TFORM", b"DJVU" offset = 12
    value = b"AT&TFORM", b"DJVI" offset = 12
    value = b"AT&TFORM", b"THUM" offset = 12

    format = DrawingExchangeFormatAscii
    value = b"  0\r\nSECTION"
    value = b"  0\nSECTION"

    format = JpegXl
    value = b"\x00\x00\x00\x0C\x4A\x58\x4C\x20\x0D\x0A\x87\x0A"
    value = b"\xFF\x0A"

    format = KhronosTexture
    value = b"\xAB\x4B\x54\x58\x20\x31\x31\xBB\x0D\x0A\x1A\x0A"

    format = KhronosTexture2
    value = b"\xAB\x4B\x54\x58\x20\x32\x30\xBB\x0D\x0A\x1A\x0A"

    format = MayaAscii
    value = b"//Maya ASCII"

    format = OggOpus
    value = b"OggS", b"OpusHead" offset = 28

    format = PanasonicRaw
    value = b"\x49\x49\x55\x00\x18\x00\x00\x00\x88\xE7\x74\xD8"

    format = ShoutcastPlaylist
    value = b"[playlist]\r\n"
    value = b"[playlist]\r"
    value = b"[playlist]\n"

    format = XmlShareablePlaylistFormat
    value = b"\xEF\xBB\xBF<playlist"
    value = b"<playlist"

    // 11 bytes
    format = BittorrentFile
    value = b"d8:announce"

    format = DigitalAssetExchange
    value = b"\xEF\xBB\xBF<COLLADA"
    value = b"\xEF\xBB\xBF<collada"
    value = b"<COLLADA"
    value = b"<collada"

    format = OggSpeex
    value = b"OggS", b"Speex  " offset = 28

    format = OggTheora
    value = b"OggS", b"\x80\x74\x68\x65\x6F\x72\x61" offset = 28

    format = OggVorbis
    value = b"OggS", b"\x01\x76\x6F\x72\x62\x69\x73" offset = 28

    format = RadianceHdr
    value = b"\x23\x3F\x52\x41\x44\x49\x41\x4E\x43\x45\x0A"

    format = Vcard
    value = b"BEGIN:VCARD"

    // 10 bytes
    format = Atari7800Rom
    value = b"\x01ATARI7800"

    format = BitmapFontAscii
    value = b"info face="

    format = Drawio
    value = b"\xEF\xBB\xBF<mxfile"
    value = b"<mxfile"

    format = OggMedia
    value = b"OggS", b"\x01\x76\x69\x64\x65\x6F" offset = 28

    format = Snappy
    value = b"\xFF\x06\x00\x00\x73\x4E\x61\x50\x70\x59"

    // 9 bytes
    format = GameBoyColorRom
    value = b"\xCE\xED\x66\x66\xCC\x0D\x00\x0B" offset = 0x104, b"\x80" offset = 0x143
    value = b"\xCE\xED\x66\x66\xCC\x0D\x00\x0B" offset = 0x104, b"\xC0" offset = 0x143

    format = GameGearRom
    value = b"TMR SEGA" offset = 0x7FF0, b"\x50" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x51" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x5C" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x5E" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x5F" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x60" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x61" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x6C" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x6E" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x6F" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x70" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x71" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x7C" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x7E" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x7F" offset = 0x7FFF

    format = Lzop
    value = b"\x89\x4C\x5A\x4F\x00\x0D\x0A\x1A\x0A"

    format = MicrosoftVirtualHardDisk
    value = b"connectix"

    format = MsDosBatch
    value = b"@ECHO OFF"
    value = b"@echo off"

    format = OggFlac
    value = b"OggS", b"\x7F\x46\x4C\x41\x43" offset = 28

    format = OlympusRawFormat
    value = b"\x49\x49\x52\x4F\x08\x00\x00\x00\x18"

    format = SegaMasterSystemRom
    value = b"TMR SEGA" offset = 0x7FF0, b"\x30" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x31" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x3C" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x3E" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x3F" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x40" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x41" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x4C" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x4E" offset = 0x7FFF
    value = b"TMR SEGA" offset = 0x7FF0, b"\x4F" offset = 0x7FFF

    format = SubripText
    value = b"\xEF\xBB\xBF1\r\n00:"
    value = b"\xEF\xBB\xBF1\n00:"
    value = b"1\r\n00:"
    value = b"1\n00:"

    format = WebVideoTextTracks
    value = b"\xEF\xBB\xBFWEBVTT"
    value = b"WEBVTT"

    format = WindowsBitmap
    value = b"BM", b"\x00\x00" offset = 12, b"\x00\x00\x00" offset = 15, b"\x01\x00" offset = 26

    format = XPixmap
    value = b"/* XPM */"

    format = XmlLocalizationInterchangeFileFormat
    value = b"\xEF\xBB\xBF<xliff"
    value = b"<xliff"

    // 8 bytes
    format = ActionsMediaVideo
    value = b"RIFF", b"AMV " offset = 8

    format = AudioInterchangeFileFormat
    value = b"FORM", b"AIFF" offset = 8
    value = b"FORM", b"AIFC" offset = 8

    format = AudioVideoInterleave
    value = b"RIFF", b"\x41\x56\x49\x20" offset = 8

    format = Av1ImageFileFormat
    value = b"ftypavif" offset = 4

    format = Av1ImageFileFormatSequence
    value = b"ftypavis" offset = 4

    format = BroadBandEbook
    value = b"L\x00R\x00F\x00\x00\x00"

    format = CompoundFileBinary
    value = b"\xD0\xCF\x11\xE0\xA1\xB1\x1A\xE1"

    format = DalvikExecutable
    value = b"\x64\x65\x78\x0A\x30\x33\x35\x00"

    format = ExperimentalComputingFacility
    value = b"gimp xcf"

    format = ExtensibleMarkupLanguage
    value = b"\xEF\xBB\xBF<?xml"
    value = b"<?xml"

    format = Farbfeld
    value = b"farbfeld"

    format = GameBoyAdvanceRom
    value = b"\x24\xFF\xAE\x51\x69\x9A\xA2\x21" offset = 4

    format = GameBoyRom
    value = b"\xCE\xED\x66\x66\xCC\x0D\x00\x0B" offset = 0x104

    format = HighEfficiencyImageCoding
    value = b"ftypheic" offset = 4
    value = b"ftypheix" offset = 4

    format = HighEfficiencyImageCodingSequence
    value = b"ftyphevc" offset = 4
    value = b"ftyphevx" offset = 4

    format = HighEfficiencyImageFileFormat
    value = b"ftypmif1" offset = 4

    format = HighEfficiencyImageFileFormatSequence
    value = b"ftypmsf1" offset = 4

    format = Iff8BitSampledVoice
    value = b"FORM", b"8SVX" offset = 8

    format = Jpeg2000Part1
    value = b"ftypjp2 " offset = 16

    format = Jpeg2000Part2
    value = b"ftypjpx " offset = 16

    format = Jpeg2000Part3
    value = b"ftypmjp2" offset = 16

    format = Jpeg2000Part6
    value = b"ftypjpm " offset = 16

    format = JpegNetworkGraphics
    value = b"\x8B\x4A\x4E\x47\x0D\x0A\x1A\x0A"

    format = MayaBinary
    value = b"FOR4", b"MAYA" offset = 8
    value = b"FOR4", b"Maya" offset = 8
    value = b"FOR8", b"MAYA" offset = 16
    value = b"FOR8", b"Maya" offset = 16

    format = MicrosoftVirtualHardDisk2
    value = b"vhdxfile"

    format = Mobipocket
    value = b"BOOKMOBI" offset = 60

    format = Mpeg4Part14Video
    value = b"ftypavc1" offset = 4
    value = b"ftypdash" offset = 4
    value = b"ftypiso2" offset = 4
    value = b"ftypiso3" offset = 4
    value = b"ftypiso4" offset = 4
    value = b"ftypiso5" offset = 4
    value = b"ftypiso6" offset = 4
    value = b"ftypisom" offset = 4
    value = b"ftypmmp4" offset = 4
    value = b"ftypmp41" offset = 4
    value = b"ftypmp42" offset = 4
    value = b"ftypmp4v" offset = 4
    value = b"ftypmp71" offset = 4
    value = b"ftypMSNV" offset = 4
    value = b"ftypNDAS" offset = 4
    value = b"ftypNDSC" offset = 4
    value = b"ftypNDSH" offset = 4
    value = b"ftypNDSM" offset = 4
    value = b"ftypNDSP" offset = 4
    value = b"ftypNDSS" offset = 4
    value = b"ftypNDXC" offset = 4
    value = b"ftypNDXH" offset = 4
    value = b"ftypNDXM" offset = 4
    value = b"ftypNDXP" offset = 4

    format = MultipleImageNetworkGraphics
    value = b"\x8A\x4D\x4E\x47\x0D\x0A\x1A\x0A"

    format = NikonElectronicFile
    value = b"\x4D\x4D\x00\x2A", b"\x1C\x00\xFE\x00" offset = 8
    value = b"\x4D\x4D\x00\x2A", b"\x1F\x00\x0B\x00" offset = 8
    value = b"\x49\x49\x2A\x00", b"\x1C\x00\xFE\x00" offset = 8
    value = b"\x49\x49\x2A\x00", b"\x1F\x00\x0B\x00" offset = 8

    format = Nintendo64Rom
    value = b"\x80\x37\x12\x40\x00\x00\x00\x0F"
    value = b"\x37\x80\x40\x12\x00\x00\x0F\x00"
    value = b"\x12\x40\x80\x37\x00\x0F\x00\x00"
    value = b"\x40\x12\x37\x80\x0F\x00\x00\x00"

    format = NintendoDsRom
    value = b"\x24\xFF\xAE\x51\x69\x9A\xA2\x21" offset = 0xC0
    value = b"\xC8\x60\x4F\xE2\x01\x70\x8F\xE2" offset = 0xC0

    format = PortableNetworkGraphics
    value = b"\x89\x50\x4E\x47\x0D\x0A\x1A\x0A"

    format = QualcommPurevoice
    value = b"RIFF", b"QLCM" offset = 8

    format = Realmedia
    value = b".RMF\x00\x00\x00\x12"

    format = RoshalArchive
    value = b"\x52\x61\x72\x21\x1A\x07\x01\x00"
    value = b"\x52\x61\x72\x21\x1A\x07\x00"

    format = SimpleObjectAccessProtocol
    value = b"\xEF\xBB\xBF<soap"
    value = b"<soap"

    format = Soundfont2
    value = b"RIFF", b"sfbk" offset = 8

    format = StuffitX
    value = b"StuffIt!"
    value = b"StuffIt?"

    format = TapeArchive
    value = b"\x75\x73\x74\x61\x72\x00\x30\x30" offset = 257
    value = b"\x75\x73\x74\x61\x72\x20\x20\x00" offset = 257

    format = WaveformAudio
    value = b"RIFF", b"WAVE" offset = 8

    format = Webp
    value = b"RIFF", b"WEBP" offset = 8

    format = WindowsAnimatedCursor
    value = b"RIFF", b"ACON" offset = 8

    // 7 bytes
    format = AdditiveManufacturingFormat
    value = b"\xEF\xBB\xBF<amf"
    value = b"<amf"

    format = AdobeFlashPlayerAudio
    value = b"ftypF4A" offset = 4
    value = b"ftypf4a" offset = 4

    format = AdobeFlashPlayerAudiobook
    value = b"ftypF4B" offset = 4
    value = b"ftypf4b" offset = 4

    format = AdobeFlashPlayerProtectedVideo
    value = b"ftypF4P" offset = 4
    value = b"ftypf4p" offset = 4

    format = AdobeFlashPlayerVideo
    value = b"ftypF4V" offset = 4
    value = b"ftypf4v" offset = 4

    format = AdvancedCompressionEngine
    value = b"**ACE**" offset = 7

    format = AdvancedStreamRedirector
    value = b"\xEF\xBB\xBF<ASX"
    value = b"\xEF\xBB\xBF<asx"
    value = b"<ASX"
    value = b"<asx"

    format = AppleItunesAudio
    value = b"ftypM4A" offset = 4

    format = AppleItunesAudiobook
    value = b"ftypM4B" offset = 4

    format = AppleItunesProtectedAudio
    value = b"ftypM4P" offset = 4

    format = AppleItunesVideo
    value = b"ftypM4V" offset = 4

    format = Blender
    value = b"BLENDER"

    format = CanonRaw3
    value = b"ftypcrx" offset = 4

    format = ExtensibleStylesheetLanguageTransformations
    value = b"\xEF\xBB\xBF<xsl"
    value = b"<xsl"

    format = GeographyMarkupLanguage
    value = b"\xEF\xBB\xBF<gml"
    value = b"<gml"

    format = GpsExchangeFormat
    value = b"\xEF\xBB\xBF<gpx"
    value = b"<gpx"

    format = KeyholeMarkupLanguage
    value = b"\xEF\xBB\xBF<kml"
    value = b"<kml"

    format = MetaInformationEncapsulation
    value = b"\x7E\x10\x04", b"\x30\x4D\x49\x45" offset = 4
    value = b"\x7E\x18\x04", b"\x30\x4D\x49\x45" offset = 4

    format = Model3dAscii
    value = b"3dmodel"

    format = Mp3Url
    value = b"#EXTM3U"

    format = ReallySimpleSyndication
    value = b"\xEF\xBB\xBF<rss"
    value = b"<rss"

    format = ScalableVectorGraphics
    value = b"\xEF\xBB\xBF<svg"
    value = b"<svg"

    format = SonyMovie
    value = b"ftypmqt" offset = 4

    format = ThirdGenerationPartnershipProject
    value = b"ftyp3gp" offset = 4

    format = ThirdGenerationPartnershipProject2
    value = b"ftyp3g2" offset = 4

    format = UnixArchiver
    value = b"!<arch>"

    format = WebassemblyText
    value = b"(module"

    // 6 bytes
    format = ApacheArrowColumnar
    value = b"ARROW1"

    format = AppleQuicktime
    value = b"ftypqt" offset = 4
    value = b"moov" offset = 4
    value = b"mdat" offset = 4
    value = b"wide" offset = 4
    value = b"skip" offset = 4
    value = b"free" offset = 4

    format = CanonRaw2
    value = b"\x4D\x4D\x00\x2A", b"CR" offset = 8
    value = b"\x49\x49\x2A\x00", b"CR" offset = 8

    format = DesignWebFormat
    value = b"(DWF V"

    format = GraphicsInterchangeFormat
    value = b"GIF87a"
    value = b"GIF89a"

    format = SevenZip
    value = b"\x37\x7A\xBC\xAF\x27\x1C"
    value = b"\x37\x7A\xBC\xAF\x27\x1C"

    format = StereolithographyAscii
    value = b"solid "

    format = ThreeDimensionalStudio
    value = b"MM", b"\x02" offset = 6, b"\x0A" offset = 8, b"\x3D\x3D" offset = 16

    format = Xz
    value = b"\xFD\x37\x7A\x58\x5A\x00"

    // 5 bytes
    format = AdaptiveMultiRate
    value = b"#!AMR"

    format = Bzip3
    value = b"BZ3v1"

    format = EmbeddedOpentype
    value = b"\x00\x00\x01" offset = 8, b"\x4C\x50" offset = 34
    value = b"\x01\x00\x02" offset = 8, b"\x4C\x50" offset = 34
    value = b"\x02\x00\x02" offset = 8, b"\x4C\x50" offset = 34

    format = GoogleDraco
    value = b"DRACO"

    format = Iso9660
    value = b"CD001" offset = 0x8001
    value = b"CD001" offset = 0x8801
    value = b"CD001" offset = 0x9001

    format = Larc
    value = b"-lz2-" offset = 2
    value = b"-lz3-" offset = 2
    value = b"-lz4-" offset = 2
    value = b"-lz5-" offset = 2
    value = b"-lz7-" offset = 2
    value = b"-lz8-" offset = 2
    value = b"-lzs-" offset = 2

    format = Lha
    value = b"-lh0-" offset = 2
    value = b"-lh1-" offset = 2
    value = b"-lh2-" offset = 2
    value = b"-lh3-" offset = 2
    value = b"-lh4-" offset = 2
    value = b"-lh5-" offset = 2
    value = b"-lh6-" offset = 2
    value = b"-lh7-" offset = 2
    value = b"-lh8-" offset = 2
    value = b"-lhd-" offset = 2

    format = MachO
    value = b"\xCA\xFE\xBA\xBE", b"\x01" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x02" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x03" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x04" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x05" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x06" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x07" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x08" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x09" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x0A" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x0B" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x0C" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x0D" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x0E" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x0F" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x10" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x11" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\x12" offset = 7
    value = b"\xCA\xFE\xBA\xBE", b"\xFF" offset = 7
    value = b"\xFE\xED\xFA\xCE"
    value = b"\xFE\xED\xFA\xCF"
    value = b"\xCE\xFA\xED\xFE"
    value = b"\xCF\xFA\xED\xFE"

    format = NintendoSwitchRom
    value = b"HEAD" offset = 0x100, b"\xFA" offset = 0x10D
    value = b"HEAD" offset = 0x100, b"\xF8" offset = 0x10D
    value = b"HEAD" offset = 0x100, b"\xF0" offset = 0x10D
    value = b"HEAD" offset = 0x100, b"\xE0" offset = 0x10D
    value = b"HEAD" offset = 0x100, b"\xE1" offset = 0x10D
    value = b"HEAD" offset = 0x100, b"\xE2" offset = 0x10D

    format = Opentype
    value = b"\x4F\x54\x54\x4F\x00"

    format = Pmarc
    value = b"-pc1-" offset = 2
    value = b"-pm0-" offset = 2
    value = b"-pm1-" offset = 2
    value = b"-pm2-" offset = 2
    value = b"-pms-" offset = 2

    format = PortableDocumentFormat
    value = b"%PDF-"

    format = RichTextFormat
    value = b"\x7B\x5C\x72\x74\x66"

    format = Truetype
    value = b"\x00\x01\x00\x00\x00"

    format = VirtualMachineDisk
    value = b"COWD\x01"
    value = b"KDMV\x01"
    value = b"KDMV\x02"
    value = b"KDMV\x03"

    // 4 bytes
    format = AdaptableScalableTextureCompression
    value = b"\x13\xAB\xA1\x5C"

    format = AdobePhotoshopDocument
    value = b"8BPS"

    format = Alz
    value = b"\x41\x4C\x5A\x01"

    format = AndroidBinaryXml
    value = b"\x03\x00\x08\x00"

    format = AndroidCompiledResources
    value = b"\x02\x00\x0C\x00"

    format = ApacheAvroObjectContainer
    value = b"Obj\x01"

    format = ApacheParquet
    value = b"PAR1"

    format = AppleIconImage
    value = b"icns"

    format = Au
    value = b".snd"

    format = AudioVisualResearch
    value = b"2BIT"

    format = AutocadDrawing
    value = b"AC10"

    format = BetterPortableGraphics
    value = b"\x42\x50\x47\xFB"

    format = BitmapFontBinary
    value = b"BMF\x03"

    format = Cabinet
    value = b"MSCF"
    value = b"ISc("

    format = Cineon
    value = b"\x80\x2A\x5F\xD7"

    format = Cpio
    value = b"0707"
    value = b"\xC7\x71"
    value = b"\x71\xC7"

    format = DigitalImagingAndCommunicationsInMedicine
    value = b"\x44\x49\x43\x4D" offset = 128

    format = DigitalPictureExchange
    value = b"SDPX"
    value = b"XPDS"

    format = ExecutableAndLinkableFormat
    value = b"\x7F\x45\x4C\x46"

    format = ExtensibleArchive
    value = b"xar!"

    format = ExtensibleBinaryMetaLanguage
    value = b"\x1A\x45\xDF\xA3"

    format = FlashVideo
    value = b"\x46\x4C\x56\x01"

    format = FlexibleAndInteroperableDataTransfer
    value = b".FIT" offset = 8

    format = FreeLosslessAudioCodec
    value = b"fLaC"

    format = FreeLosslessImageFormat
    value = b"FLIF"

    format = GettextMachineObject
    value = b"\x95\x04\x12\xDE"
    value = b"\xDE\x12\x04\x95"

    format = GlTransmissionFormatBinary
    value = b"glTF"

    format = GoogleChromeExtension
    value = b"Cr24"

    format = IccProfile
    value = b"acsp" offset = 36

    format = ImpulseTrackerModule
    value = b"IMPM"

    format = JavaClass
    value = b"\xCA\xFE\xBA\xBE"

    format = JavaKeystore
    value = b"\xFE\xED\xFE\xED"

    format = Jpeg2000Codestream
    value = b"\xFF\x4F\xFF\x51"

    format = JpegLs
    value = b"\xFF\xD8\xFF\xF7"

    format = LempelZivFiniteStateEntropy
    value = b"bvx-"
    value = b"bvx1"
    value = b"bvx2"
    value = b"bvxn"

    format = LlvmBitcode
    value = b"BC\xC0\xDE"

    format = LongRangeZip
    value = b"LRZI"

    format = LuaBytecode
    value = b"\x1B\x4C\x75\x61"

    format = Lz4
    value = b"\x04\x22\x4D\x18"

    format = Lzip
    value = b"LZIP"

    format = Magicavoxel
    value = b"VOX "

    format = MicrosoftCompiledHtmlHelp
    value = b"ITSF"

    format = MicrosoftDirectdrawSurface
    value = b"DDS "

    format = Model3dBinary
    value = b"3DMO"

    format = MonkeysAudio
    value = b"MAC "

    format = Mpeg12Video
    value = b"\x00\x00\x01\xBA"
    value = b"\x00\x00\x01\xB3"

    format = Musepack
    value = b"MPCK"
    value = b"MP+"

    format = MusicalInstrumentDigitalInterface
    value = b"MThd"

    format = NintendoEntertainmentSystemRom
    value = b"\x4E\x45\x53\x1A"

    format = NintendoSwitchExecutable
    value = b"NSO0"

    format = NintendoSwitchPackage
    value = b"PFS0"

    format = OggMultiplexedMedia
    value = b"OggS"

    format = Openexr
    value = b"\x76\x2F\x31\x01"

    format = OptimizedDalvikExecutable
    value = b"dey\n"

    format = PcapDump
    value = b"\xA1\xB2\xC3\xD4"
    value = b"\xD4\xC3\xB2\xA1"

    format = PcapNextGenerationDump
    value = b"\x0A\x0D\x0D\x0A"

    format = PersonalStorageTable
    value = b"!BDN"

    format = QemuCopyOnWrite
    value = b"QFI\xFB"

    format = QuiteOkAudio
    value = b"qoaf"

    format = QuiteOkImage
    value = b"qoif"

    format = Realaudio
    value = b".ra\xFD"

    format = RedHatPackageManager
    value = b"\xED\xAB\xEE\xDB"

    format = ScreamTracker3Module
    value = b"SCRM" offset = 44

    format = Shapefile
    value = b"\x00\x00\x27\x0A"

    format = SonyDsdStreamFile
    value = b"DSD "

    format = TagImageFileFormat
    value = b"\x4D\x4D\x00\x2A"
    value = b"\x49\x49\x2A\x00"
    value = b"\x4D\x4D\x00\x2B"
    value = b"\x49\x49\x2B\x00"

    format = Tasty
    value = b"\x5C\xA1\xAB\x1F"

    format = UltimateSoundtrackerModule
    value = b"M.K." offset = 0x438

    format = Universal3d
    value = b"U3D\x00"

    format = Wavpack
    value = b"wvpk"

    format = WebOpenFontFormat
    value = b"wOFF"

    format = WebOpenFontFormat2
    value = b"wOF2"

    format = WebassemblyBinary
    value = b"\x00\x61\x73\x6D"

    format = WindowsCursor
    value = b"\x00\x00\x02\x00"

    format = WindowsIcon
    value = b"\x00\x00\x01\x00"

    format = WindowsMetafile
    value = b"\xD7\xCD\xC6\x9A"
    value = b"\x02\x00\x09\x00"
    value = b"\x01\x00\x09\x00"

    format = Xbox360Executable
    value = b"XEX1"
    value = b"XEX2"

    format = XboxExecutable
    value = b"XBEH"

    format = Zip
    value = b"\x50\x4B\x03\x04"

    format = Zpaq
    value = b"7kSt"
    value = b"zPQ"

    format = Zstandard
    value = b"\x28\xB5\x2F\xFD"

    // 3 bytes
    format = ArchivedByRobertJung
    value = b"\x60\xEA", b"\x02" offset = 10

    format = Bzip
    value = b"BZ0"

    format = Bzip2
    value = b"BZh"

    format = JointPhotographicExpertsGroup
    value = b"\xFF\xD8\xFF"

    format = JpegExtendedRange
    value = b"\x49\x49\xBC"

    format = Mpeg12AudioLayer3
    value = b"ID3"
    value = b"\xFF\xE3"
    value = b"\xFF\xF3"
    value = b"\xFF\xFB"

    format = Mtv
    value = b"AMV"

    format = PortableArbitraryMap
    value = b"P7 "
    value = b"P7\t"
    value = b"P7\r"
    value = b"P7\n"

    format = PortableBitmap
    value = b"P1 "
    value = b"P1\t"
    value = b"P1\r"
    value = b"P1\n"
    value = b"P4 "
    value = b"P4\t"
    value = b"P4\r"
    value = b"P4\n"

    format = PortableFloatmap
    value = b"PF "
    value = b"PF\t"
    value = b"PF\r"
    value = b"PF\n"
    value = b"Pf "
    value = b"Pf\t"
    value = b"Pf\r"
    value = b"Pf\n"

    format = PortableGraymap
    value = b"P2 "
    value = b"P2\t"
    value = b"P2\r"
    value = b"P2\n"
    value = b"P5 "
    value = b"P5\t"
    value = b"P5\r"
    value = b"P5\n"

    format = PortablePixmap
    value = b"P3 "
    value = b"P3\t"
    value = b"P3\r"
    value = b"P3\n"
    value = b"P6 "
    value = b"P6\t"
    value = b"P6\r"
    value = b"P6\n"

    format = Seqbox
    value = b"SBx"

    format = SmallWebFormat
    value = b"\x43\x57\x53"
    value = b"\x46\x57\x53"

    format = Zoo
    value = b"ZOO"

    // 2 bytes
    format = AdvancedAudioCoding
    value = b"\xFF\xF1"
    value = b"\xFF\xF9"

    format = AppleDiskImage
    value = b"\x78\x01"

    format = AudioCodec3
    value = b"\x0B\x77"

    format = AutodeskAnimator
    value = b"\x11\xAF" offset = 4

    format = AutodeskAnimatorPro
    value = b"\x12\xAF" offset = 4

    format = BdavMpeg2TransportStream
    value = b"\x47" offset = 4, b"\x47" offset = 196

    format = CommonObjectFileFormat
    value = b"\x4C\x01"
    value = b"\x64\x86"
    value = b"\x00\x02"

    format = DerCertificate
    value = b"\x30\x82"

    format = Gzip
    value = b"\x1F\x8B"

    format = Mpeg1AudioLayer1
    value = b"\xFF\xFE"
    value = b"\xFF\xF6"
    value = b"\xFF\xFF"

    format = Mpeg1AudioLayer2
    value = b"\xFF\xF4"
    value = b"\xFF\xF5"
    value = b"\xFF\xFC"
    value = b"\xFF\xFD"

    format = Mpeg2TransportStream
    value = b"\x47", b"\x47" offset = 188

    format = MsDosExecutable
    value = b"MZ"
    value = b"ZM"

    format = Postscript
    value = b"%!"

    format = SiliconGraphicsImage
    value = b"\x01\xDA"

    format = UnixCompress
    value = b"\x1F\xA0"
    value = b"\x1F\x9D"
}