-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcodewords.txt
7133 lines (7133 loc) · 532 KB
/
codewords.txt
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
# 0x4 HD=3 NONE Example: Len=1 0x4 {0} (0x4) (Bits=2)
0x4 {}
# 0x5 HD=3 len=4 Example: Len=5 0x5 {0} (0x4) (Bits=2)
# 0x5 HD=4 NONE Example: Len=1 0x5 {0} (0x5) (Bits=3)
0x5 {4}
# 0x9 HD=3 len=11 Example: Len=12 0x9 {0} (0x8) (Bits=2)
# 0x9 HD=4 NONE Example: Len=1 0x9 {0} (0x9) (Bits=3)
0x9 {11}
# 0xb HD=3 len=3 Example: Len=4 0xb {0} (0x8) (Bits=2)
# 0xb HD=4 len=3 Example: Len=4 0xb {0} (0x8) (Bits=2)
# 0xb HD=5 NONE Example: Len=1 0xb {0} (0xb) (Bits=4)
0xb {3,3}
# 0xe HD=3 len=3 Example: Len=4 0xe {0} (0x8) (Bits=2)
# 0xe HD=4 len=3 Example: Len=4 0xe {0} (0x8) (Bits=2)
# 0xe HD=5 NONE Example: Len=1 0xe {0} (0xe) (Bits=4)
0xe {3,3}
# 0xf HD=3 len=1 Example: Len=2 0xf {0} (0x8) (Bits=2)
# 0xf HD=4 len=1 Example: Len=2 0xf {0} (0x8) (Bits=2)
# 0xf HD=5 len=1 Example: Len=2 0xf {0} (0x8) (Bits=2)
# 0xf HD=6 NONE Example: Len=1 0xf {0} (0xf) (Bits=5)
0xf {1,1,1}
# 0x12 HD=3 len=26 Example: Len=27 0x12 {0} (0x10) (Bits=2)
# 0x12 HD=4 NONE Example: Len=1 0x12 {0} (0x12) (Bits=3)
0x12 {26}
# 0x1e HD=3 len=26 Example: Len=27 0x1e {0} (0x10) (Bits=2)
# 0x1e HD=4 len=3 Example: Len=4 0x1e {0} (0x12) (Bits=3)
# 0x1e HD=5 len=1 Example: Len=2 0x1e {0,1} (0x11) (Bits=4)
# 0x1e HD=6 NONE Example: Len=1 0x1e {0} (0x1e) (Bits=5)
0x1e {26,3,1}
# 0x15 HD=3 len=10 Example: Len=11 0x15 {0} (0x10) (Bits=2)
# 0x15 HD=4 len=10 Example: Len=11 0x15 {0} (0x10) (Bits=2)
# 0x15 HD=5 NONE Example: Len=1 0x15 {0} (0x15) (Bits=4)
0x15 {10,10}
# 0x33 HD=3 len=57 Example: Len=58 0x33 {0} (0x20) (Bits=2)
# 0x33 HD=4 len=5 Example: Len=6 0x33 {0} (0x24) (Bits=3)
# 0x33 HD=5 len=1 Example: Len=2 0x33 {0} (0x2a) (Bits=4)
# 0x33 HD=6 NONE Example: Len=1 0x33 {0} (0x33) (Bits=5)
0x33 {57,5,1}
# 0x21 HD=3 len=57 Example: Len=58 0x21 {0} (0x20) (Bits=2)
# 0x21 HD=4 NONE Example: Len=1 0x21 {0} (0x21) (Bits=3)
0x21 {57}
# 0x23 HD=3 len=25 Example: Len=26 0x23 {0} (0x20) (Bits=2)
# 0x23 HD=4 len=25 Example: Len=26 0x23 {0} (0x20) (Bits=2)
# 0x23 HD=5 NONE Example: Len=1 0x23 {0} (0x23) (Bits=4)
0x23 {25,25}
# 0x2c HD=3 len=25 Example: Len=26 0x2c {0} (0x20) (Bits=2)
# 0x2c HD=4 len=25 Example: Len=26 0x2c {0} (0x20) (Bits=2)
# 0x2c HD=5 NONE Example: Len=1 0x2c {0} (0x2c) (Bits=4)
0x2c {25,25}
# 0x37 HD=3 len=25 Example: Len=26 0x37 {0} (0x20) (Bits=2)
# 0x37 HD=4 len=25 Example: Len=26 0x37 {0} (0x20) (Bits=2)
# 0x37 HD=5 len=1 Example: Len=2 0x37 {0} (0x2c) (Bits=4)
# 0x37 HD=6 len=1 Example: Len=2 0x37 {0} (0x2c) (Bits=4)
# 0x37 HD=7 NONE Example: Len=1 0x37 {0} (0x37) (Bits=6)
0x37 {25,25,1,1}
# 0x2e HD=3 len=9 Example: Len=10 0x2e {0} (0x20) (Bits=2)
# 0x2e HD=4 len=9 Example: Len=10 0x2e {0} (0x20) (Bits=2)
# 0x2e HD=5 len=2 Example: Len=3 0x2e {0} (0x25) (Bits=4)
# 0x2e HD=6 NONE Example: Len=1 0x2e {0} (0x2e) (Bits=5)
0x2e {9,9,2}
# 0x65 HD=3 len=120 Example: Len=121 0x65 {0} (0x40) (Bits=2)
# 0x65 HD=4 len=14 Example: Len=15 0x65 {0} (0x48) (Bits=3)
# 0x65 HD=5 len=3 Example: Len=4 0x65 {0,3} (0x42) (Bits=4)
# 0x65 HD=6 NONE Example: Len=1 0x65 {0} (0x65) (Bits=5)
0x65 {120,14,3}
# 0x77 HD=3 len=120 Example: Len=121 0x77 {0} (0x40) (Bits=2)
# 0x77 HD=4 len=12 Example: Len=13 0x77 {0} (0x50) (Bits=3)
# 0x77 HD=5 len=1 Example: Len=2 0x77 {0} (0x4c) (Bits=4)
# 0x77 HD=6 len=1 Example: Len=2 0x77 {0} (0x4c) (Bits=4)
# 0x77 HD=7 len=1 Example: Len=2 0x77 {0} (0x4c) (Bits=4)
# 0x77 HD=8 NONE Example: Len=1 0x77 {0} (0x77) (Bits=7)
0x77 {120,12,1,1,1}
# 0x72 HD=3 len=120 Example: Len=121 0x72 {0} (0x40) (Bits=2)
# 0x72 HD=4 len=7 Example: Len=8 0x72 {0,1} (0x40) (Bits=3)
# 0x72 HD=5 len=4 Example: Len=5 0x72 {0,3} (0x50) (Bits=4)
# 0x72 HD=6 NONE Example: Len=1 0x72 {0} (0x72) (Bits=5)
0x72 {120,7,4}
# 0x41 HD=3 len=120 Example: Len=121 0x41 {0} (0x40) (Bits=2)
# 0x41 HD=4 NONE Example: Len=1 0x41 {0} (0x41) (Bits=3)
0x41 {120}
# 0x44 HD=3 len=120 Example: Len=121 0x44 {0} (0x40) (Bits=2)
# 0x44 HD=4 NONE Example: Len=1 0x44 {0} (0x44) (Bits=3)
0x44 {120}
# 0x5b HD=3 len=56 Example: Len=57 0x5b {0} (0x40) (Bits=2)
# 0x5b HD=4 len=56 Example: Len=57 0x5b {0} (0x40) (Bits=2)
# 0x5b HD=5 len=2 Example: Len=3 0x5b {0,2} (0x60) (Bits=4)
# 0x5b HD=6 len=2 Example: Len=3 0x5b {0,2} (0x60) (Bits=4)
# 0x5b HD=7 NONE Example: Len=1 0x5b {0} (0x5b) (Bits=6)
0x5b {56,56,2,2}
# 0x62 HD=3 len=56 Example: Len=57 0x62 {0} (0x40) (Bits=2)
# 0x62 HD=4 len=56 Example: Len=57 0x62 {0} (0x40) (Bits=2)
# 0x62 HD=5 NONE Example: Len=1 0x62 {0} (0x62) (Bits=4)
0x62 {56,56}
# 0x4a HD=3 len=56 Example: Len=57 0x4a {0} (0x40) (Bits=2)
# 0x4a HD=4 len=56 Example: Len=57 0x4a {0} (0x40) (Bits=2)
# 0x4a HD=5 NONE Example: Len=1 0x4a {0} (0x4a) (Bits=4)
0x4a {56,56}
# 0x4d HD=3 len=28 Example: Len=29 0x4d {0} (0x40) (Bits=2)
# 0x4d HD=4 len=28 Example: Len=29 0x4d {0} (0x40) (Bits=2)
# 0x4d HD=5 len=3 Example: Len=4 0x4d {0,1} (0x44) (Bits=4)
# 0x4d HD=6 NONE Example: Len=1 0x4d {0} (0x4d) (Bits=5)
0x4d {28,28,3}
# 0x68 HD=3 len=8 Example: Len=9 0x68 {0} (0x40) (Bits=2)
# 0x68 HD=4 len=8 Example: Len=9 0x68 {0} (0x40) (Bits=2)
# 0x68 HD=5 NONE Example: Len=1 0x68 {0} (0x68) (Bits=4)
0x68 {8,8}
# 0x67 HD=3 len=7 Example: Len=8 0x67 {0} (0x40) (Bits=2)
# 0x67 HD=4 len=7 Example: Len=8 0x67 {0} (0x40) (Bits=2)
# 0x67 HD=5 len=1 Example: Len=2 0x67 {0} (0x54) (Bits=4)
# 0x67 HD=6 len=1 Example: Len=2 0x67 {0} (0x54) (Bits=4)
# 0x67 HD=7 NONE Example: Len=1 0x67 {0} (0x67) (Bits=6)
0x67 {7,7,1,1}
# 0xe7 HD=3 len=247 Example: Len=248 0xe7 {0} (0x80) (Bits=2)
# 0xe7 HD=4 len=19 Example: Len=20 0xe7 {0,2} (0x80) (Bits=3)
# 0xe7 HD=5 len=1 Example: Len=2 0xe7 {0} (0x94) (Bits=4)
# 0xe7 HD=6 len=1 Example: Len=2 0xe7 {0} (0x94) (Bits=4)
# 0xe7 HD=7 len=1 Example: Len=2 0xe7 {0} (0x94) (Bits=4)
# 0xe7 HD=8 NONE Example: Len=1 0xe7 {0} (0xe7) (Bits=7)
0xe7 {247,19,1,1,1}
# 0xa6 HD=3 len=247 Example: Len=248 0xa6 {0} (0x80) (Bits=2)
# 0xa6 HD=4 len=15 Example: Len=16 0xa6 {0,1} (0x80) (Bits=3)
# 0xa6 HD=5 len=6 Example: Len=7 0xa6 {0,5} (0xc0) (Bits=4)
# 0xa6 HD=6 NONE Example: Len=1 0xa6 {0} (0xa6) (Bits=5)
0xa6 {247,15,6}
# 0x8e HD=3 len=247 Example: Len=248 0x8e {0} (0x80) (Bits=2)
# 0x8e HD=4 len=13 Example: Len=14 0x8e {0,10} (0x80) (Bits=3)
# 0x8e HD=5 len=6 Example: Len=7 0x8e {0,1,4} (0x80) (Bits=4)
# 0x8e HD=6 NONE Example: Len=1 0x8e {0} (0x8e) (Bits=5)
0x8e {247,13,6}
# 0xb1 HD=3 len=247 Example: Len=248 0xb1 {0} (0x80) (Bits=2)
# 0xb1 HD=4 len=12 Example: Len=13 0xb1 {0,9} (0x80) (Bits=3)
# 0xb1 HD=5 len=4 Example: Len=5 0xb1 {0,3,4} (0x80) (Bits=4)
# 0xb1 HD=6 NONE Example: Len=1 0xb1 {0} (0xb1) (Bits=5)
0xb1 {247,12,4}
# 0xbf HD=3 len=119 Example: Len=120 0xbf {0} (0x80) (Bits=2)
# 0xbf HD=4 len=119 Example: Len=120 0xbf {0} (0x80) (Bits=2)
# 0xbf HD=5 len=1 Example: Len=2 0xbf {0} (0xe0) (Bits=4)
# 0xbf HD=6 len=1 Example: Len=2 0xbf {0} (0xe0) (Bits=4)
# 0xbf HD=7 len=1 Example: Len=2 0xbf {0} (0xe0) (Bits=4)
# 0xbf HD=8 len=1 Example: Len=2 0xbf {0} (0xe0) (Bits=4)
# 0xbf HD=9 NONE Example: Len=1 0xbf {0} (0xbf) (Bits=8)
0xbf {119,119,1,1,1,1}
# 0x97 HD=3 len=119 Example: Len=120 0x97 {0} (0x80) (Bits=2)
# 0x97 HD=4 len=119 Example: Len=120 0x97 {0} (0x80) (Bits=2)
# 0x97 HD=5 len=3 Example: Len=4 0x97 {0,3} (0xa0) (Bits=4)
# 0x97 HD=6 len=3 Example: Len=4 0x97 {0,3} (0xa0) (Bits=4)
# 0x97 HD=7 NONE Example: Len=1 0x97 {0} (0x97) (Bits=6)
0x97 {119,119,3,3}
# 0xd3 HD=3 len=119 Example: Len=120 0xd3 {0} (0x80) (Bits=2)
# 0xd3 HD=4 len=119 Example: Len=120 0xd3 {0} (0x80) (Bits=2)
# 0xd3 HD=5 len=3 Example: Len=4 0xd3 {0,1} (0xa0) (Bits=4)
# 0xd3 HD=6 len=3 Example: Len=4 0xd3 {0,1} (0xa0) (Bits=4)
# 0xd3 HD=7 NONE Example: Len=1 0xd3 {0} (0xd3) (Bits=6)
0xd3 {119,119,3,3}
# 0xcd HD=3 len=119 Example: Len=120 0xcd {0} (0x80) (Bits=2)
# 0xcd HD=4 len=119 Example: Len=120 0xcd {0} (0x80) (Bits=2)
# 0xcd HD=5 len=2 Example: Len=3 0xcd {0} (0x98) (Bits=4)
# 0xcd HD=6 len=2 Example: Len=3 0xcd {0} (0x98) (Bits=4)
# 0xcd HD=7 NONE Example: Len=1 0xcd {0} (0xcd) (Bits=6)
0xcd {119,119,2,2}
# 0x83 HD=3 len=119 Example: Len=120 0x83 {0} (0x80) (Bits=2)
# 0x83 HD=4 len=119 Example: Len=120 0x83 {0} (0x80) (Bits=2)
# 0x83 HD=5 NONE Example: Len=1 0x83 {0} (0x83) (Bits=4)
0x83 {119,119}
# 0x98 HD=3 len=119 Example: Len=120 0x98 {0} (0x80) (Bits=2)
# 0x98 HD=4 len=119 Example: Len=120 0x98 {0} (0x80) (Bits=2)
# 0x98 HD=5 NONE Example: Len=1 0x98 {0} (0x98) (Bits=4)
0x98 {119,119}
# 0x9b HD=3 len=118 Example: Len=119 0x9b {0} (0x80) (Bits=2)
# 0x9b HD=4 len=118 Example: Len=119 0x9b {0} (0x80) (Bits=2)
# 0x9b HD=5 len=4 Example: Len=5 0x9b {0,3} (0x81) (Bits=4)
# 0x9b HD=6 len=4 Example: Len=5 0x9b {0,3} (0x81) (Bits=4)
# 0x9b HD=7 NONE Example: Len=1 0x9b {0} (0x9b) (Bits=6)
0x9b {118,118,4,4}
# 0xa4 HD=3 len=97 Example: Len=98 0xa4 {0} (0x80) (Bits=2)
# 0xa4 HD=4 len=97 Example: Len=98 0xa4 {0} (0x80) (Bits=2)
# 0xa4 HD=5 NONE Example: Len=1 0xa4 {0} (0xa4) (Bits=4)
0xa4 {97,97}
# 0xea HD=3 len=85 Example: Len=86 0xea {0} (0x80) (Bits=2)
# 0xea HD=4 len=85 Example: Len=86 0xea {0} (0x80) (Bits=2)
# 0xea HD=5 len=2 Example: Len=3 0xea {0} (0xd0) (Bits=4)
# 0xea HD=6 len=2 Example: Len=3 0xea {0} (0xd0) (Bits=4)
# 0xea HD=7 NONE Example: Len=1 0xea {0} (0xea) (Bits=6)
0xea {85,85,2,2}
# 0x8d HD=3 len=43 Example: Len=44 0x8d {0} (0x80) (Bits=2)
# 0x8d HD=4 len=26 Example: Len=27 0x8d {0,17} (0x80) (Bits=3)
# 0x8d HD=5 len=5 Example: Len=6 0x8d {0,5} (0x90) (Bits=4)
# 0x8d HD=6 NONE Example: Len=1 0x8d {0} (0x8d) (Bits=5)
0x8d {43,26,5}
# 0x9c HD=3 len=9 Example: Len=10 0x9c {0} (0x80) (Bits=2)
# 0x9c HD=4 len=9 Example: Len=10 0x9c {0} (0x80) (Bits=2)
# 0x9c HD=5 len=9 Example: Len=10 0x9c {0} (0x80) (Bits=2)
# 0x9c HD=6 NONE Example: Len=1 0x9c {0} (0x9c) (Bits=5)
0x9c {9,9,9}
# 0xeb HD=3 len=9 Example: Len=10 0xeb {0} (0x80) (Bits=2)
# 0xeb HD=4 len=9 Example: Len=10 0xeb {0} (0x80) (Bits=2)
# 0xeb HD=5 len=9 Example: Len=10 0xeb {0} (0x80) (Bits=2)
# 0xeb HD=6 len=2 Example: Len=3 0xeb {0,2} (0xa4) (Bits=5)
# 0xeb HD=7 len=1 Example: Len=2 0xeb {0} (0x9e) (Bits=6)
# 0xeb HD=8 NONE Example: Len=1 0xeb {0} (0xeb) (Bits=7)
0xeb {9,9,9,2,1}
# 0x80 HD=3 NONE Example: Len=1 0x80 {0} (0x80) (Bits=2)
0x80 {}
# 0x119 HD=3 len=502 Example: Len=503 0x119 {0} (0x100) (Bits=2)
# 0x119 HD=4 len=52 Example: Len=53 0x119 {0,39} (0x100) (Bits=3)
# 0x119 HD=5 len=4 Example: Len=5 0x119 {0,1} (0x108) (Bits=4)
# 0x119 HD=6 NONE Example: Len=1 0x119 {0} (0x119) (Bits=5)
0x119 {502,52,4}
# 0x167 HD=3 len=502 Example: Len=503 0x167 {0} (0x100) (Bits=2)
# 0x167 HD=4 len=48 Example: Len=49 0x167 {0} (0x101) (Bits=3)
# 0x167 HD=5 len=8 Example: Len=9 0x167 {0,1,5} (0x100) (Bits=4)
# 0x167 HD=6 len=3 Example: Len=4 0x167 {0,3} (0x112) (Bits=5)
# 0x167 HD=7 len=1 Example: Len=2 0x167 {0} (0x1d4) (Bits=6)
# 0x167 HD=8 NONE Example: Len=1 0x167 {0} (0x167) (Bits=7)
0x167 {502,48,8,3,1}
# 0x143 HD=3 len=502 Example: Len=503 0x143 {0} (0x100) (Bits=2)
# 0x143 HD=4 len=10 Example: Len=11 0x143 {0,8} (0x100) (Bits=3)
# 0x143 HD=5 len=10 Example: Len=11 0x143 {0,8} (0x100) (Bits=3)
# 0x143 HD=6 NONE Example: Len=1 0x143 {0} (0x143) (Bits=5)
0x143 {502,10,10}
# 0x1bf HD=3 len=502 Example: Len=503 0x1bf {0} (0x100) (Bits=2)
# 0x1bf HD=4 len=46 Example: Len=47 0x1bf {0} (0x108) (Bits=3)
# 0x1bf HD=5 len=1 Example: Len=2 0x1bf {0} (0x160) (Bits=4)
# 0x1bf HD=6 len=1 Example: Len=2 0x1bf {0} (0x160) (Bits=4)
# 0x1bf HD=7 len=1 Example: Len=2 0x1bf {0} (0x160) (Bits=4)
# 0x1bf HD=8 len=1 Example: Len=2 0x1bf {0} (0x160) (Bits=4)
# 0x1bf HD=9 len=1 Example: Len=2 0x1bf {0} (0x160) (Bits=4)
# 0x1bf HD=10 NONE Example: Len=1 0x1bf {0} (0x1bf) (Bits=9)
0x1bf {502,46,1,1,1,1,1}
# 0x157 HD=3 len=502 Example: Len=503 0x157 {0} (0x100) (Bits=2)
# 0x157 HD=4 len=36 Example: Len=37 0x157 {0,20} (0x100) (Bits=3)
# 0x157 HD=5 len=2 Example: Len=3 0x157 {0,1} (0x102) (Bits=4)
# 0x157 HD=6 len=2 Example: Len=3 0x157 {0,1} (0x102) (Bits=4)
# 0x157 HD=7 len=2 Example: Len=3 0x157 {0,1} (0x102) (Bits=4)
# 0x157 HD=8 NONE Example: Len=1 0x157 {0} (0x157) (Bits=7)
0x157 {502,36,2,2,2}
# 0x137 HD=3 len=502 Example: Len=503 0x137 {0} (0x100) (Bits=2)
# 0x137 HD=4 len=4 Example: Len=5 0x137 {0} (0x102) (Bits=3)
# 0x137 HD=5 len=4 Example: Len=5 0x137 {0} (0x102) (Bits=3)
# 0x137 HD=6 len=4 Example: Len=5 0x137 {0} (0x102) (Bits=3)
# 0x137 HD=7 len=1 Example: Len=2 0x137 {0} (0x1ac) (Bits=6)
# 0x137 HD=8 NONE Example: Len=1 0x137 {0} (0x137) (Bits=7)
0x137 {502,4,4,4,1}
# 0x108 HD=3 len=502 Example: Len=503 0x108 {0} (0x100) (Bits=2)
# 0x108 HD=4 NONE Example: Len=1 0x108 {0} (0x108) (Bits=3)
0x108 {502}
# 0x17d HD=3 len=246 Example: Len=247 0x17d {0} (0x100) (Bits=2)
# 0x17d HD=4 len=246 Example: Len=247 0x17d {0} (0x100) (Bits=2)
# 0x17d HD=5 len=5 Example: Len=6 0x17d {0,2} (0x180) (Bits=4)
# 0x17d HD=6 len=5 Example: Len=6 0x17d {0,2} (0x180) (Bits=4)
# 0x17d HD=7 len=1 Example: Len=2 0x17d {0} (0x1c3) (Bits=6)
# 0x17d HD=8 len=1 Example: Len=2 0x17d {0} (0x1c3) (Bits=6)
# 0x17d HD=9 NONE Example: Len=1 0x17d {0} (0x17d) (Bits=8)
0x17d {246,246,5,5,1,1}
# 0x14b HD=3 len=246 Example: Len=247 0x14b {0} (0x100) (Bits=2)
# 0x14b HD=4 len=246 Example: Len=247 0x14b {0} (0x100) (Bits=2)
# 0x14b HD=5 len=3 Example: Len=4 0x14b {0} (0x130) (Bits=4)
# 0x14b HD=6 len=3 Example: Len=4 0x14b {0} (0x130) (Bits=4)
# 0x14b HD=7 NONE Example: Len=1 0x14b {0} (0x14b) (Bits=6)
0x14b {246,246,3,3}
# 0x10f HD=3 len=246 Example: Len=247 0x10f {0} (0x100) (Bits=2)
# 0x10f HD=4 len=246 Example: Len=247 0x10f {0} (0x100) (Bits=2)
# 0x10f HD=5 len=1 Example: Len=2 0x10f {0} (0x188) (Bits=4)
# 0x10f HD=6 len=1 Example: Len=2 0x10f {0} (0x188) (Bits=4)
# 0x10f HD=7 NONE Example: Len=1 0x10f {0} (0x10f) (Bits=6)
0x10f {246,246,1,1}
# 0x121 HD=3 len=245 Example: Len=246 0x121 {0} (0x100) (Bits=2)
# 0x121 HD=4 len=245 Example: Len=246 0x121 {0} (0x100) (Bits=2)
# 0x121 HD=5 NONE Example: Len=1 0x121 {0} (0x121) (Bits=4)
0x121 {245,245}
# 0x145 HD=3 len=146 Example: Len=147 0x145 {0} (0x100) (Bits=2)
# 0x145 HD=4 len=146 Example: Len=147 0x145 {0} (0x100) (Bits=2)
# 0x145 HD=5 len=4 Example: Len=5 0x145 {0} (0x128) (Bits=4)
# 0x145 HD=6 NONE Example: Len=1 0x145 {0} (0x145) (Bits=5)
0x145 {146,146,4}
# 0x185 HD=3 len=96 Example: Len=97 0x185 {0} (0x100) (Bits=2)
# 0x185 HD=4 len=16 Example: Len=17 0x185 {0} (0x108) (Bits=3)
# 0x185 HD=5 len=13 Example: Len=14 0x185 {0,7} (0x102) (Bits=4)
# 0x185 HD=6 NONE Example: Len=1 0x185 {0} (0x185) (Bits=5)
0x185 {96,16,13}
# 0x14f HD=3 len=75 Example: Len=76 0x14f {0} (0x100) (Bits=2)
# 0x14f HD=4 len=11 Example: Len=12 0x14f {0,4} (0x100) (Bits=3)
# 0x14f HD=5 len=9 Example: Len=10 0x14f {0,9} (0x120) (Bits=4)
# 0x14f HD=6 len=4 Example: Len=5 0x14f {0,1,4} (0x108) (Bits=5)
# 0x14f HD=7 len=1 Example: Len=2 0x14f {0} (0x1e8) (Bits=6)
# 0x14f HD=8 NONE Example: Len=1 0x14f {0} (0x14f) (Bits=7)
0x14f {75,11,9,4,1}
# 0x13c HD=3 len=8 Example: Len=9 0x13c {0} (0x100) (Bits=2)
# 0x13c HD=4 len=8 Example: Len=9 0x13c {0} (0x100) (Bits=2)
# 0x13c HD=5 len=8 Example: Len=9 0x13c {0} (0x100) (Bits=2)
# 0x13c HD=6 len=8 Example: Len=9 0x13c {0} (0x100) (Bits=2)
# 0x13c HD=7 NONE Example: Len=1 0x13c {0} (0x13c) (Bits=6)
0x13c {8,8,8,8}
# 0x13d HD=3 len=5 Example: Len=6 0x13d {0} (0x100) (Bits=2)
# 0x13d HD=4 len=5 Example: Len=6 0x13d {0} (0x100) (Bits=2)
# 0x13d HD=5 len=5 Example: Len=6 0x13d {0} (0x100) (Bits=2)
# 0x13d HD=6 len=5 Example: Len=6 0x13d {0} (0x100) (Bits=2)
# 0x13d HD=7 len=1 Example: Len=2 0x13d {0} (0x1a3) (Bits=6)
# 0x13d HD=8 NONE Example: Len=1 0x13d {0} (0x13d) (Bits=7)
0x13d {5,5,5,5,1}
# 0x327 HD=3 len=1013 Example: Len=1014 0x327 {0} (0x200) (Bits=2)
# 0x327 HD=4 len=73 Example: Len=74 0x327 {0,14} (0x200) (Bits=3)
# 0x327 HD=5 len=10 Example: Len=11 0x327 {0} (0x301) (Bits=4)
# 0x327 HD=6 len=5 Example: Len=6 0x327 {0,1,3,4} (0x200) (Bits=5)
# 0x327 HD=7 len=1 Example: Len=2 0x327 {0} (0x2b4) (Bits=6)
# 0x327 HD=8 NONE Example: Len=1 0x327 {0} (0x327) (Bits=7)
0x327 {1013,73,10,5,1}
# 0x2fd HD=3 len=1013 Example: Len=1014 0x2fd {0} (0x200) (Bits=2)
# 0x2fd HD=4 len=16 Example: Len=17 0x2fd {0,3} (0x200) (Bits=3)
# 0x2fd HD=5 len=16 Example: Len=17 0x2fd {0,3} (0x200) (Bits=3)
# 0x2fd HD=6 len=5 Example: Len=6 0x2fd {0,2} (0x304) (Bits=5)
# 0x2fd HD=7 len=1 Example: Len=2 0x2fd {0} (0x383) (Bits=6)
# 0x2fd HD=8 len=1 Example: Len=2 0x2fd {0} (0x383) (Bits=6)
# 0x2fd HD=9 len=1 Example: Len=2 0x2fd {0} (0x383) (Bits=6)
# 0x2fd HD=10 NONE Example: Len=1 0x2fd {0} (0x2fd) (Bits=9)
0x2fd {1013,16,16,5,1,1,1}
# 0x2c7 HD=3 len=1013 Example: Len=1014 0x2c7 {0} (0x200) (Bits=2)
# 0x2c7 HD=4 len=7 Example: Len=8 0x2c7 {0} (0x220) (Bits=3)
# 0x2c7 HD=5 len=7 Example: Len=8 0x2c7 {0} (0x220) (Bits=3)
# 0x2c7 HD=6 len=6 Example: Len=7 0x2c7 {0,6} (0x308) (Bits=5)
# 0x2c7 HD=7 len=1 Example: Len=2 0x2c7 {0} (0x3a4) (Bits=6)
# 0x2c7 HD=8 NONE Example: Len=1 0x2c7 {0} (0x2c7) (Bits=7)
0x2c7 {1013,7,7,6,1}
# 0x204 HD=3 len=1013 Example: Len=1014 0x204 {0} (0x200) (Bits=2)
# 0x204 HD=4 NONE Example: Len=1 0x204 {0} (0x204) (Bits=3)
0x204 {1013}
# 0x247 HD=3 len=501 Example: Len=502 0x247 {0} (0x200) (Bits=2)
# 0x247 HD=4 len=501 Example: Len=502 0x247 {0} (0x200) (Bits=2)
# 0x247 HD=5 len=10 Example: Len=11 0x247 {0} (0x284) (Bits=4)
# 0x247 HD=6 len=10 Example: Len=11 0x247 {0} (0x284) (Bits=4)
# 0x247 HD=7 NONE Example: Len=1 0x247 {0} (0x247) (Bits=6)
0x247 {501,501,10,10}
# 0x2de HD=3 len=501 Example: Len=502 0x2de {0} (0x200) (Bits=2)
# 0x2de HD=4 len=501 Example: Len=502 0x2de {0} (0x200) (Bits=2)
# 0x2de HD=5 len=5 Example: Len=6 0x2de {0} (0x224) (Bits=4)
# 0x2de HD=6 len=5 Example: Len=6 0x2de {0} (0x224) (Bits=4)
# 0x2de HD=7 len=2 Example: Len=3 0x2de {0} (0x269) (Bits=6)
# 0x2de HD=8 len=2 Example: Len=3 0x2de {0} (0x269) (Bits=6)
# 0x2de HD=9 NONE Example: Len=1 0x2de {0} (0x2de) (Bits=8)
0x2de {501,501,5,5,2,2}
# 0x3ec HD=3 len=501 Example: Len=502 0x3ec {0} (0x200) (Bits=2)
# 0x3ec HD=4 len=501 Example: Len=502 0x3ec {0} (0x200) (Bits=2)
# 0x3ec HD=5 len=4 Example: Len=5 0x3ec {0} (0x224) (Bits=4)
# 0x3ec HD=6 len=4 Example: Len=5 0x3ec {0} (0x224) (Bits=4)
# 0x3ec HD=7 len=1 Example: Len=2 0x3ec {0,1} (0x21a) (Bits=6)
# 0x3ec HD=8 len=1 Example: Len=2 0x3ec {0,1} (0x21a) (Bits=6)
# 0x3ec HD=9 NONE Example: Len=1 0x3ec {0} (0x3ec) (Bits=8)
0x3ec {501,501,4,4,1,1}
# 0x206 HD=3 len=501 Example: Len=502 0x206 {0} (0x200) (Bits=2)
# 0x206 HD=4 len=501 Example: Len=502 0x206 {0} (0x200) (Bits=2)
# 0x206 HD=5 NONE Example: Len=1 0x206 {0} (0x206) (Bits=4)
0x206 {501,501}
# 0x319 HD=3 len=501 Example: Len=502 0x319 {0} (0x200) (Bits=2)
# 0x319 HD=4 len=501 Example: Len=502 0x319 {0} (0x200) (Bits=2)
# 0x319 HD=5 len=3 Example: Len=4 0x319 {0} (0x230) (Bits=4)
# 0x319 HD=6 len=3 Example: Len=4 0x319 {0} (0x230) (Bits=4)
# 0x319 HD=7 NONE Example: Len=1 0x319 {0} (0x319) (Bits=6)
0x319 {501,501,3,3}
# 0x3df HD=3 len=501 Example: Len=502 0x3df {0} (0x200) (Bits=2)
# 0x3df HD=4 len=501 Example: Len=502 0x3df {0} (0x200) (Bits=2)
# 0x3df HD=5 len=1 Example: Len=2 0x3df {0} (0x230) (Bits=4)
# 0x3df HD=6 len=1 Example: Len=2 0x3df {0} (0x230) (Bits=4)
# 0x3df HD=7 len=1 Example: Len=2 0x3df {0} (0x230) (Bits=4)
# 0x3df HD=8 len=1 Example: Len=2 0x3df {0} (0x230) (Bits=4)
# 0x3df HD=9 len=1 Example: Len=2 0x3df {0} (0x230) (Bits=4)
# 0x3df HD=10 len=1 Example: Len=2 0x3df {0} (0x230) (Bits=4)
# 0x3df HD=11 NONE Example: Len=1 0x3df {0} (0x3df) (Bits=10)
0x3df {501,501,1,1,1,1,1,1}
# 0x25d HD=3 len=305 Example: Len=306 0x25d {0} (0x200) (Bits=2)
# 0x25d HD=4 len=305 Example: Len=306 0x25d {0} (0x200) (Bits=2)
# 0x25d HD=5 len=5 Example: Len=6 0x25d {0} (0x221) (Bits=4)
# 0x25d HD=6 len=3 Example: Len=4 0x25d {0,2} (0x281) (Bits=5)
# 0x25d HD=7 len=3 Example: Len=4 0x25d {0,2} (0x281) (Bits=5)
# 0x25d HD=8 NONE Example: Len=1 0x25d {0} (0x25d) (Bits=7)
0x25d {305,305,5,3,3}
# 0x28e HD=3 len=95 Example: Len=96 0x28e {0} (0x200) (Bits=2)
# 0x28e HD=4 len=95 Example: Len=96 0x28e {0} (0x200) (Bits=2)
# 0x28e HD=5 len=12 Example: Len=13 0x28e {0,7} (0x204) (Bits=4)
# 0x28e HD=6 len=12 Example: Len=13 0x28e {0,7} (0x204) (Bits=4)
# 0x28e HD=7 NONE Example: Len=1 0x28e {0} (0x28e) (Bits=6)
0x28e {95,95,12,12}
# 0x221 HD=3 len=95 Example: Len=96 0x221 {0} (0x200) (Bits=2)
# 0x221 HD=4 len=95 Example: Len=96 0x221 {0} (0x200) (Bits=2)
# 0x221 HD=5 NONE Example: Len=1 0x221 {0} (0x221) (Bits=4)
0x221 {95,95}
# 0x2ba HD=3 len=25 Example: Len=26 0x2ba {0} (0x200) (Bits=2)
# 0x2ba HD=4 len=25 Example: Len=26 0x2ba {0} (0x200) (Bits=2)
# 0x2ba HD=5 len=2 Example: Len=3 0x2ba {0} (0x214) (Bits=4)
# 0x2ba HD=6 len=2 Example: Len=3 0x2ba {0} (0x214) (Bits=4)
# 0x2ba HD=7 len=2 Example: Len=3 0x2ba {0} (0x214) (Bits=4)
# 0x2ba HD=8 NONE Example: Len=1 0x2ba {0} (0x2ba) (Bits=7)
0x2ba {25,25,2,2,2}
# 0x2b9 HD=3 len=21 Example: Len=22 0x2b9 {0} (0x200) (Bits=2)
# 0x2b9 HD=4 len=21 Example: Len=22 0x2b9 {0} (0x200) (Bits=2)
# 0x2b9 HD=5 len=21 Example: Len=22 0x2b9 {0} (0x200) (Bits=2)
# 0x2b9 HD=6 len=3 Example: Len=4 0x2b9 {0,2,3} (0x240) (Bits=5)
# 0x2b9 HD=7 len=3 Example: Len=4 0x2b9 {0} (0x31c) (Bits=6)
# 0x2b9 HD=8 NONE Example: Len=1 0x2b9 {0} (0x2b9) (Bits=7)
0x2b9 {21,21,21,3,3}
# 0x29b HD=3 len=5 Example: Len=6 0x29b {0} (0x200) (Bits=2)
# 0x29b HD=4 len=5 Example: Len=6 0x29b {0} (0x200) (Bits=2)
# 0x29b HD=5 len=5 Example: Len=6 0x29b {0} (0x200) (Bits=2)
# 0x29b HD=6 len=5 Example: Len=6 0x29b {0} (0x200) (Bits=2)
# 0x29b HD=7 len=5 Example: Len=6 0x29b {0} (0x200) (Bits=2)
# 0x29b HD=8 NONE Example: Len=1 0x29b {0} (0x29b) (Bits=7)
0x29b {5,5,5,5,5}
# 0x5db HD=3 len=2036 Example: Len=2037 0x5db {0} (0x400) (Bits=2)
# 0x5db HD=4 len=132 Example: Len=133 0x5db {0,12} (0x400) (Bits=3)
# 0x5db HD=5 len=16 Example: Len=17 0x5db {0} (0x608) (Bits=4)
# 0x5db HD=6 len=2 Example: Len=3 0x5db {0,2} (0x640) (Bits=5)
# 0x5db HD=7 len=2 Example: Len=3 0x5db {0,2} (0x640) (Bits=5)
# 0x5db HD=8 len=2 Example: Len=3 0x5db {0,2} (0x640) (Bits=5)
# 0x5db HD=9 len=1 Example: Len=2 0x5db {0} (0x736) (Bits=8)
# 0x5db HD=10 NONE Example: Len=1 0x5db {0} (0x5db) (Bits=9)
0x5db {2036,132,16,2,2,2,1}
# 0x64d HD=3 len=2036 Example: Len=2037 0x64d {0} (0x400) (Bits=2)
# 0x64d HD=4 len=131 Example: Len=132 0x64d {0,99} (0x400) (Bits=3)
# 0x64d HD=5 len=6 Example: Len=7 0x64d {0} (0x602) (Bits=4)
# 0x64d HD=6 len=6 Example: Len=7 0x64d {0} (0x602) (Bits=4)
# 0x64d HD=7 len=3 Example: Len=4 0x64d {0,3} (0x431) (Bits=6)
# 0x64d HD=8 NONE Example: Len=1 0x64d {0} (0x64d) (Bits=7)
0x64d {2036,131,6,6,3}
# 0x62b HD=3 len=2036 Example: Len=2037 0x62b {0} (0x400) (Bits=2)
# 0x62b HD=4 len=53 Example: Len=54 0x62b {0,47} (0x400) (Bits=3)
# 0x62b HD=5 len=17 Example: Len=18 0x62b {0,3,12} (0x400) (Bits=4)
# 0x62b HD=6 len=5 Example: Len=6 0x62b {0,1,5} (0x440) (Bits=5)
# 0x62b HD=7 len=5 Example: Len=6 0x62b {0,2,3} (0x422) (Bits=6)
# 0x62b HD=8 NONE Example: Len=1 0x62b {0} (0x62b) (Bits=7)
0x62b {2036,53,17,5,5}
# 0x473 HD=3 len=2036 Example: Len=2037 0x473 {0} (0x400) (Bits=2)
# 0x473 HD=4 len=46 Example: Len=47 0x473 {0,11} (0x400) (Bits=3)
# 0x473 HD=5 len=9 Example: Len=10 0x473 {0,7,9} (0x400) (Bits=4)
# 0x473 HD=6 len=9 Example: Len=10 0x473 {0,7,9} (0x400) (Bits=4)
# 0x473 HD=7 len=1 Example: Len=2 0x473 {0} (0x64a) (Bits=6)
# 0x473 HD=8 NONE Example: Len=1 0x473 {0} (0x473) (Bits=7)
0x473 {2036,46,9,9,1}
# 0x5d7 HD=3 len=2036 Example: Len=2037 0x5d7 {0} (0x400) (Bits=2)
# 0x5d7 HD=4 len=28 Example: Len=29 0x5d7 {0,24} (0x400) (Bits=3)
# 0x5d7 HD=5 len=26 Example: Len=27 0x5d7 {0} (0x4c0) (Bits=4)
# 0x5d7 HD=6 len=3 Example: Len=4 0x5d7 {0,3} (0x418) (Bits=5)
# 0x5d7 HD=7 len=2 Example: Len=3 0x5d7 {0,1} (0x4a2) (Bits=6)
# 0x5d7 HD=8 len=2 Example: Len=3 0x5d7 {0,2} (0x649) (Bits=7)
# 0x5d7 HD=9 len=1 Example: Len=2 0x5d7 {0} (0x73c) (Bits=8)
# 0x5d7 HD=10 NONE Example: Len=1 0x5d7 {0} (0x5d7) (Bits=9)
0x5d7 {2036,28,26,3,2,2,1}
# 0x402 HD=3 len=2036 Example: Len=2037 0x402 {0} (0x400) (Bits=2)
# 0x402 HD=4 NONE Example: Len=1 0x402 {0} (0x402) (Bits=3)
0x402 {2036}
# 0x7df HD=3 len=1942 Example: Len=1943 0x7df {0} (0x400) (Bits=2)
# 0x7df HD=4 len=48 Example: Len=49 0x7df {0,33} (0x400) (Bits=3)
# 0x7df HD=5 len=1 Example: Len=2 0x7df {0} (0x430) (Bits=4)
# 0x7df HD=6 len=1 Example: Len=2 0x7df {0} (0x430) (Bits=4)
# 0x7df HD=7 len=1 Example: Len=2 0x7df {0} (0x430) (Bits=4)
# 0x7df HD=8 len=1 Example: Len=2 0x7df {0} (0x430) (Bits=4)
# 0x7df HD=9 len=1 Example: Len=2 0x7df {0} (0x430) (Bits=4)
# 0x7df HD=10 len=1 Example: Len=2 0x7df {0} (0x430) (Bits=4)
# 0x7df HD=11 len=1 Example: Len=2 0x7df {0} (0x430) (Bits=4)
# 0x7df HD=12 NONE Example: Len=1 0x7df {0} (0x7df) (Bits=11)
0x7df {1942,48,1,1,1,1,1,1,1}
# 0x583 HD=3 len=1012 Example: Len=1013 0x583 {0} (0x400) (Bits=2)
# 0x583 HD=4 len=1012 Example: Len=1013 0x583 {0} (0x400) (Bits=2)
# 0x583 HD=5 len=17 Example: Len=18 0x583 {0,12} (0x408) (Bits=4)
# 0x583 HD=6 len=17 Example: Len=18 0x583 {0,12} (0x408) (Bits=4)
# 0x583 HD=7 NONE Example: Len=1 0x583 {0} (0x583) (Bits=6)
0x583 {1012,1012,17,17}
# 0x5ef HD=3 len=1012 Example: Len=1013 0x5ef {0} (0x400) (Bits=2)
# 0x5ef HD=4 len=1012 Example: Len=1013 0x5ef {0} (0x400) (Bits=2)
# 0x5ef HD=5 len=7 Example: Len=8 0x5ef {0} (0x488) (Bits=4)
# 0x5ef HD=6 len=7 Example: Len=8 0x5ef {0} (0x488) (Bits=4)
# 0x5ef HD=7 len=1 Example: Len=2 0x5ef {0} (0x718) (Bits=6)
# 0x5ef HD=8 len=1 Example: Len=2 0x5ef {0} (0x718) (Bits=6)
# 0x5ef HD=9 len=1 Example: Len=2 0x5ef {0} (0x718) (Bits=6)
# 0x5ef HD=10 len=1 Example: Len=2 0x5ef {0} (0x718) (Bits=6)
# 0x5ef HD=11 NONE Example: Len=1 0x5ef {0} (0x5ef) (Bits=10)
0x5ef {1012,1012,7,7,1,1,1,1}
# 0x4f5 HD=3 len=1012 Example: Len=1013 0x4f5 {0} (0x400) (Bits=2)
# 0x4f5 HD=4 len=1012 Example: Len=1013 0x4f5 {0} (0x400) (Bits=2)
# 0x4f5 HD=5 len=6 Example: Len=7 0x4f5 {0,3} (0x410) (Bits=4)
# 0x4f5 HD=6 len=6 Example: Len=7 0x4f5 {0,3} (0x410) (Bits=4)
# 0x4f5 HD=7 len=4 Example: Len=5 0x4f5 {0} (0x519) (Bits=6)
# 0x4f5 HD=8 len=4 Example: Len=5 0x4f5 {0} (0x519) (Bits=6)
# 0x4f5 HD=9 NONE Example: Len=1 0x4f5 {0} (0x4f5) (Bits=8)
0x4f5 {1012,1012,6,6,4,4}
# 0x405 HD=3 len=1012 Example: Len=1013 0x405 {0} (0x400) (Bits=2)
# 0x405 HD=4 len=1012 Example: Len=1013 0x405 {0} (0x400) (Bits=2)
# 0x405 HD=5 NONE Example: Len=1 0x405 {0} (0x405) (Bits=4)
0x405 {1012,1012}
# 0x6bb HD=3 len=624 Example: Len=625 0x6bb {0} (0x400) (Bits=2)
# 0x6bb HD=4 len=624 Example: Len=625 0x6bb {0} (0x400) (Bits=2)
# 0x6bb HD=5 len=9 Example: Len=10 0x6bb {0,1} (0x402) (Bits=4)
# 0x6bb HD=6 len=2 Example: Len=3 0x6bb {0,2} (0x448) (Bits=5)
# 0x6bb HD=7 len=2 Example: Len=3 0x6bb {0,2} (0x448) (Bits=5)
# 0x6bb HD=8 len=2 Example: Len=3 0x6bb {0,2} (0x448) (Bits=5)
# 0x6bb HD=9 len=1 Example: Len=2 0x6bb {0} (0x5e6) (Bits=8)
# 0x6bb HD=10 NONE Example: Len=1 0x6bb {0} (0x6bb) (Bits=9)
0x6bb {624,624,9,2,2,2,1}
# 0x532 HD=3 len=22 Example: Len=23 0x532 {0} (0x400) (Bits=2)
# 0x532 HD=4 len=22 Example: Len=23 0x532 {0} (0x400) (Bits=2)
# 0x532 HD=5 len=22 Example: Len=23 0x532 {0} (0x400) (Bits=2)
# 0x532 HD=6 len=22 Example: Len=23 0x532 {0} (0x400) (Bits=2)
# 0x532 HD=7 NONE Example: Len=1 0x532 {0} (0x532) (Bits=6)
0x532 {22,22,22,22}
# 0x6fd HD=3 len=22 Example: Len=23 0x6fd {0} (0x400) (Bits=2)
# 0x6fd HD=4 len=22 Example: Len=23 0x6fd {0} (0x400) (Bits=2)
# 0x6fd HD=5 len=22 Example: Len=23 0x6fd {0} (0x400) (Bits=2)
# 0x6fd HD=6 len=22 Example: Len=23 0x6fd {0} (0x400) (Bits=2)
# 0x6fd HD=7 len=1 Example: Len=2 0x6fd {0} (0x583) (Bits=6)
# 0x6fd HD=8 len=1 Example: Len=2 0x6fd {0} (0x583) (Bits=6)
# 0x6fd HD=9 len=1 Example: Len=2 0x6fd {0} (0x583) (Bits=6)
# 0x6fd HD=10 len=1 Example: Len=2 0x6fd {0} (0x583) (Bits=6)
# 0x6fd HD=11 NONE Example: Len=1 0x6fd {0} (0x6fd) (Bits=10)
0x6fd {22,22,22,22,1,1,1,1}
# 0x5c2 HD=3 len=20 Example: Len=21 0x5c2 {0} (0x400) (Bits=2)
# 0x5c2 HD=4 len=20 Example: Len=21 0x5c2 {0} (0x400) (Bits=2)
# 0x5c2 HD=5 len=20 Example: Len=21 0x5c2 {0} (0x400) (Bits=2)
# 0x5c2 HD=6 len=20 Example: Len=21 0x5c2 {0} (0x400) (Bits=2)
# 0x5c2 HD=7 NONE Example: Len=1 0x5c2 {0} (0x5c2) (Bits=6)
0x5c2 {20,20,20,20}
# 0x433 HD=3 len=20 Example: Len=21 0x433 {0} (0x400) (Bits=2)
# 0x433 HD=4 len=20 Example: Len=21 0x433 {0} (0x400) (Bits=2)
# 0x433 HD=5 len=20 Example: Len=21 0x433 {0} (0x400) (Bits=2)
# 0x433 HD=6 len=20 Example: Len=21 0x433 {0} (0x400) (Bits=2)
# 0x433 HD=7 NONE Example: Len=1 0x433 {0} (0x433) (Bits=6)
0x433 {20,20,20,20}
# 0x571 HD=3 len=12 Example: Len=13 0x571 {0} (0x400) (Bits=2)
# 0x571 HD=4 len=12 Example: Len=13 0x571 {0} (0x400) (Bits=2)
# 0x571 HD=5 len=12 Example: Len=13 0x571 {0} (0x400) (Bits=2)
# 0x571 HD=6 len=12 Example: Len=13 0x571 {0} (0x400) (Bits=2)
# 0x571 HD=7 len=12 Example: Len=13 0x571 {0} (0x400) (Bits=2)
# 0x571 HD=8 NONE Example: Len=1 0x571 {0} (0x571) (Bits=7)
0x571 {12,12,12,12,12}
# 0x987 HD=3 len=4083 Example: Len=4084 0x987 {0} (0x800) (Bits=2)
# 0x987 HD=4 len=159 Example: Len=160 0x987 {0,42} (0x800) (Bits=3)
# 0x987 HD=5 len=17 Example: Len=18 0x987 {0,8} (0xc00) (Bits=4)
# 0x987 HD=6 len=8 Example: Len=9 0x987 {0,1,5,8} (0x800) (Bits=5)
# 0x987 HD=7 len=1 Example: Len=2 0x987 {0} (0xd44) (Bits=6)
# 0x987 HD=8 NONE Example: Len=1 0x987 {0} (0x987) (Bits=7)
0x987 {4083,159,17,8,1}
# 0xa33 HD=3 len=4083 Example: Len=4084 0xa33 {0} (0x800) (Bits=2)
# 0xa33 HD=4 len=149 Example: Len=150 0xa33 {0,107} (0x800) (Bits=3)
# 0xa33 HD=5 len=10 Example: Len=11 0xa33 {0,1,10} (0x800) (Bits=4)
# 0xa33 HD=6 len=6 Example: Len=7 0xa33 {0,5} (0x980) (Bits=5)
# 0xa33 HD=7 len=6 Example: Len=7 0xa33 {0,5} (0x980) (Bits=5)
# 0xa33 HD=8 NONE Example: Len=1 0xa33 {0} (0xa33) (Bits=7)
0xa33 {4083,149,10,6,6}
# 0x829 HD=3 len=4083 Example: Len=4084 0x829 {0} (0x800) (Bits=2)
# 0x829 HD=4 len=95 Example: Len=96 0x829 {0} (0x802) (Bits=3)
# 0x829 HD=5 len=16 Example: Len=17 0x829 {0,1,16} (0x800) (Bits=4)
# 0x829 HD=6 NONE Example: Len=1 0x829 {0} (0x829) (Bits=5)
0x829 {4083,95,16}
# 0xddf HD=3 len=4083 Example: Len=4084 0xddf {0} (0x800) (Bits=2)
# 0xddf HD=4 len=71 Example: Len=72 0xddf {0,19} (0x800) (Bits=3)
# 0xddf HD=5 len=10 Example: Len=11 0xddf {0,3,5} (0x800) (Bits=4)
# 0xddf HD=6 len=8 Example: Len=9 0xddf {0,2,7} (0x808) (Bits=5)
# 0xddf HD=7 len=1 Example: Len=2 0xddf {0} (0xb30) (Bits=6)
# 0xddf HD=8 len=1 Example: Len=2 0xddf {0} (0xb30) (Bits=6)
# 0xddf HD=9 len=1 Example: Len=2 0xddf {0} (0xb30) (Bits=6)
# 0xddf HD=10 len=1 Example: Len=2 0xddf {0} (0xb30) (Bits=6)
# 0xddf HD=11 len=1 Example: Len=2 0xddf {0} (0xb30) (Bits=6)
# 0xddf HD=12 NONE Example: Len=1 0xddf {0} (0xddf) (Bits=11)
0xddf {4083,71,10,8,1,1,1,1,1}
# 0xbdf HD=3 len=4083 Example: Len=4084 0xbdf {0} (0x800) (Bits=2)
# 0xbdf HD=4 len=59 Example: Len=60 0xbdf {0,41} (0x800) (Bits=3)
# 0xbdf HD=5 len=33 Example: Len=34 0xbdf {0,30} (0xc00) (Bits=4)
# 0xbdf HD=6 len=6 Example: Len=7 0xbdf {0,3} (0x822) (Bits=5)
# 0xbdf HD=7 len=1 Example: Len=2 0xbdf {0} (0xe30) (Bits=6)
# 0xbdf HD=8 len=1 Example: Len=2 0xbdf {0} (0xe30) (Bits=6)
# 0xbdf HD=9 len=1 Example: Len=2 0xbdf {0} (0xe30) (Bits=6)
# 0xbdf HD=10 len=1 Example: Len=2 0xbdf {0} (0xe30) (Bits=6)
# 0xbdf HD=11 len=1 Example: Len=2 0xbdf {0} (0xe30) (Bits=6)
# 0xbdf HD=12 NONE Example: Len=1 0xbdf {0} (0xbdf) (Bits=11)
0xbdf {4083,59,33,6,1,1,1,1,1}
# 0x83e HD=3 len=4083 Example: Len=4084 0x83e {0} (0x800) (Bits=2)
# 0x83e HD=4 len=22 Example: Len=23 0x83e {0,5} (0x800) (Bits=3)
# 0x83e HD=5 len=15 Example: Len=16 0x83e {0,8} (0x820) (Bits=4)
# 0x83e HD=6 len=15 Example: Len=16 0x83e {0,8} (0x820) (Bits=4)
# 0x83e HD=7 len=1 Example: Len=2 0x83e {0,1} (0xc21) (Bits=6)
# 0x83e HD=8 NONE Example: Len=1 0x83e {0} (0x83e) (Bits=7)
0x83e {4083,22,15,15,1}
# 0xb75 HD=3 len=2655 Example: Len=2656 0xb75 {0} (0x800) (Bits=2)
# 0xb75 HD=4 len=52 Example: Len=53 0xb75 {0,5} (0x800) (Bits=3)
# 0xb75 HD=5 len=24 Example: Len=25 0xb75 {0} (0xa40) (Bits=4)
# 0xb75 HD=6 len=2 Example: Len=3 0xb75 {0} (0xc12) (Bits=5)
# 0xb75 HD=7 len=2 Example: Len=3 0xb75 {0} (0xc12) (Bits=5)
# 0xb75 HD=8 len=2 Example: Len=3 0xb75 {0} (0xc12) (Bits=5)
# 0xb75 HD=9 len=2 Example: Len=3 0xb75 {0} (0xc12) (Bits=5)
# 0xb75 HD=10 NONE Example: Len=1 0xb75 {0} (0xb75) (Bits=9)
0xb75 {2655,52,24,2,2,2,2}
# 0x8f3 HD=3 len=2035 Example: Len=2036 0x8f3 {0} (0x800) (Bits=2)
# 0x8f3 HD=4 len=2035 Example: Len=2036 0x8f3 {0} (0x800) (Bits=2)
# 0x8f3 HD=5 len=25 Example: Len=26 0x8f3 {0,3,4} (0x800) (Bits=4)
# 0x8f3 HD=6 len=25 Example: Len=26 0x8f3 {0,3,4} (0x800) (Bits=4)
# 0x8f3 HD=7 len=1 Example: Len=2 0x8f3 {0} (0xc8a) (Bits=6)
# 0x8f3 HD=8 len=1 Example: Len=2 0x8f3 {0} (0xc8a) (Bits=6)
# 0x8f3 HD=9 NONE Example: Len=1 0x8f3 {0} (0x8f3) (Bits=8)
0x8f3 {2035,2035,25,25,1,1}
# 0xf89 HD=3 len=2035 Example: Len=2036 0xf89 {0} (0x800) (Bits=2)
# 0xf89 HD=4 len=2035 Example: Len=2036 0xf89 {0} (0x800) (Bits=2)
# 0xf89 HD=5 len=16 Example: Len=17 0xf89 {0,7} (0x801) (Bits=4)
# 0xf89 HD=6 len=16 Example: Len=17 0xf89 {0,7} (0x801) (Bits=4)
# 0xf89 HD=7 len=1 Example: Len=2 0xf89 {0} (0x84d) (Bits=6)
# 0xf89 HD=8 len=1 Example: Len=2 0xf89 {0} (0x84d) (Bits=6)
# 0xf89 HD=9 NONE Example: Len=1 0xf89 {0} (0xf89) (Bits=8)
0xf89 {2035,2035,16,16,1,1}
# 0x817 HD=3 len=2035 Example: Len=2036 0x817 {0} (0x800) (Bits=2)
# 0x817 HD=4 len=2035 Example: Len=2036 0x817 {0} (0x800) (Bits=2)
# 0x817 HD=5 len=14 Example: Len=15 0x817 {0,1} (0x801) (Bits=4)
# 0x817 HD=6 len=14 Example: Len=15 0x817 {0,1} (0x801) (Bits=4)
# 0x817 HD=7 NONE Example: Len=1 0x817 {0} (0x817) (Bits=6)
0x817 {2035,2035,14,14}
# 0xc07 HD=3 len=2035 Example: Len=2036 0xc07 {0} (0x800) (Bits=2)
# 0xc07 HD=4 len=2035 Example: Len=2036 0xc07 {0} (0x800) (Bits=2)
# 0xc07 HD=5 len=1 Example: Len=2 0xc07 {0} (0xa04) (Bits=4)
# 0xc07 HD=6 len=1 Example: Len=2 0xc07 {0} (0xa04) (Bits=4)
# 0xc07 HD=7 NONE Example: Len=1 0xc07 {0} (0xc07) (Bits=6)
0xc07 {2035,2035,1,1}
# 0xbff HD=3 len=2035 Example: Len=2036 0xbff {0} (0x800) (Bits=2)
# 0xbff HD=4 len=2035 Example: Len=2036 0xbff {0} (0x800) (Bits=2)
# 0xbff HD=5 len=1 Example: Len=2 0xbff {0} (0xe00) (Bits=4)
# 0xbff HD=6 len=1 Example: Len=2 0xbff {0} (0xe00) (Bits=4)
# 0xbff HD=7 len=1 Example: Len=2 0xbff {0} (0xe00) (Bits=4)
# 0xbff HD=8 len=1 Example: Len=2 0xbff {0} (0xe00) (Bits=4)
# 0xbff HD=9 len=1 Example: Len=2 0xbff {0} (0xe00) (Bits=4)
# 0xbff HD=10 len=1 Example: Len=2 0xbff {0} (0xe00) (Bits=4)
# 0xbff HD=11 len=1 Example: Len=2 0xbff {0} (0xe00) (Bits=4)
# 0xbff HD=12 len=1 Example: Len=2 0xbff {0} (0xe00) (Bits=4)
# 0xbff HD=13 NONE Example: Len=1 0xbff {0} (0xbff) (Bits=12)
0xbff {2035,2035,1,1,1,1,1,1,1,1}
# 0xb41 HD=3 len=1773 Example: Len=1774 0xb41 {0} (0x800) (Bits=2)
# 0xb41 HD=4 len=1773 Example: Len=1774 0xb41 {0} (0x800) (Bits=2)
# 0xb41 HD=5 len=27 Example: Len=28 0xb41 {0,2} (0x802) (Bits=4)
# 0xb41 HD=6 len=27 Example: Len=28 0xb41 {0,2} (0x802) (Bits=4)
# 0xb41 HD=7 NONE Example: Len=1 0xb41 {0} (0xb41) (Bits=6)
0xb41 {1773,1773,27,27}
# 0xb91 HD=3 len=1073 Example: Len=1074 0xb91 {0} (0x800) (Bits=2)
# 0xb91 HD=4 len=1073 Example: Len=1074 0xb91 {0} (0x800) (Bits=2)
# 0xb91 HD=5 len=27 Example: Len=28 0xb91 {0,9,15} (0x800) (Bits=4)
# 0xb91 HD=6 len=7 Example: Len=8 0xb91 {0,3} (0x910) (Bits=5)
# 0xb91 HD=7 len=4 Example: Len=5 0xb91 {0,1,2} (0xc04) (Bits=6)
# 0xb91 HD=8 NONE Example: Len=1 0xb91 {0} (0xb91) (Bits=7)
0xb91 {1073,1073,27,7,4}
# 0xe98 HD=3 len=1073 Example: Len=1074 0xe98 {0} (0x800) (Bits=2)
# 0xe98 HD=4 len=1073 Example: Len=1074 0xe98 {0} (0x800) (Bits=2)
# 0xe98 HD=5 len=13 Example: Len=14 0xe98 {0,1,6} (0x800) (Bits=4)
# 0xe98 HD=6 len=5 Example: Len=6 0xe98 {0} (0x9a0) (Bits=5)
# 0xe98 HD=7 len=4 Example: Len=5 0xe98 {0,1,2} (0xc04) (Bits=6)
# 0xe98 HD=8 NONE Example: Len=1 0xe98 {0} (0xe98) (Bits=7)
0xe98 {1073,1073,13,5,4}
# 0xc05 HD=3 len=498 Example: Len=499 0xc05 {0} (0x800) (Bits=2)
# 0xc05 HD=4 len=160 Example: Len=161 0xc05 {0,98} (0x800) (Bits=3)
# 0xc05 HD=5 len=24 Example: Len=25 0xc05 {0,2,8} (0x800) (Bits=4)
# 0xc05 HD=6 NONE Example: Len=1 0xc05 {0} (0xc05) (Bits=5)
0xc05 {498,160,24}
# 0x993 HD=3 len=498 Example: Len=499 0x993 {0} (0x800) (Bits=2)
# 0x993 HD=4 len=74 Example: Len=75 0x993 {0,16} (0x800) (Bits=3)
# 0x993 HD=5 len=24 Example: Len=25 0x993 {0,5} (0x810) (Bits=4)
# 0x993 HD=6 len=8 Example: Len=9 0x993 {0} (0xa0a) (Bits=5)
# 0x993 HD=7 len=8 Example: Len=9 0x993 {0} (0xa0a) (Bits=5)
# 0x993 HD=8 NONE Example: Len=1 0x993 {0} (0x993) (Bits=7)
0x993 {498,74,24,8,8}
# 0xa6f HD=3 len=443 Example: Len=444 0xa6f {0} (0x800) (Bits=2)
# 0xa6f HD=4 len=183 Example: Len=184 0xa6f {0,130} (0x800) (Bits=3)
# 0xa6f HD=5 len=12 Example: Len=13 0xa6f {0,2} (0x840) (Bits=4)
# 0xa6f HD=6 len=12 Example: Len=13 0xa6f {0,2} (0x840) (Bits=4)
# 0xa6f HD=7 len=5 Example: Len=6 0xa6f {0,3,4,5} (0x801) (Bits=6)
# 0xa6f HD=8 len=4 Example: Len=5 0xa6f {0,4} (0xb84) (Bits=7)
# 0xa6f HD=9 len=1 Example: Len=2 0xa6f {0} (0xf58) (Bits=8)
# 0xa6f HD=10 NONE Example: Len=1 0xa6f {0} (0xa6f) (Bits=9)
0xa6f {443,183,12,12,5,4,1}
# 0xc06 HD=3 len=79 Example: Len=80 0xc06 {0} (0x800) (Bits=2)
# 0xc06 HD=4 len=27 Example: Len=28 0xc06 {0,26} (0x800) (Bits=3)
# 0xc06 HD=5 len=24 Example: Len=25 0xc06 {0} (0x821) (Bits=4)
# 0xc06 HD=6 NONE Example: Len=1 0xc06 {0} (0xc06) (Bits=5)
0xc06 {79,27,24}
# 0xbae HD=3 len=53 Example: Len=54 0xbae {0} (0x800) (Bits=2)
# 0xbae HD=4 len=53 Example: Len=54 0xbae {0} (0x800) (Bits=2)
# 0xbae HD=5 len=53 Example: Len=54 0xbae {0} (0x800) (Bits=2)
# 0xbae HD=6 len=10 Example: Len=11 0xbae {0} (0x894) (Bits=5)
# 0xbae HD=7 len=2 Example: Len=3 0xbae {0} (0x945) (Bits=6)
# 0xbae HD=8 len=2 Example: Len=3 0xbae {0} (0x945) (Bits=6)
# 0xbae HD=9 len=2 Example: Len=3 0xbae {0} (0x945) (Bits=6)
# 0xbae HD=10 NONE Example: Len=1 0xbae {0} (0xbae) (Bits=9)
0xbae {53,53,53,10,2,2,2}
# 0x8f8 HD=3 len=53 Example: Len=54 0x8f8 {0} (0x800) (Bits=2)
# 0x8f8 HD=4 len=53 Example: Len=54 0x8f8 {0} (0x800) (Bits=2)
# 0x8f8 HD=5 len=53 Example: Len=54 0x8f8 {0} (0x800) (Bits=2)
# 0x8f8 HD=6 len=10 Example: Len=11 0x8f8 {0,7} (0x811) (Bits=5)
# 0x8f8 HD=7 len=1 Example: Len=2 0x8f8 {0,1} (0xc84) (Bits=6)
# 0x8f8 HD=8 NONE Example: Len=1 0x8f8 {0} (0x8f8) (Bits=7)
0x8f8 {53,53,53,10,1}
# 0xa4f HD=3 len=11 Example: Len=12 0xa4f {0} (0x800) (Bits=2)
# 0xa4f HD=4 len=11 Example: Len=12 0xa4f {0} (0x800) (Bits=2)
# 0xa4f HD=5 len=11 Example: Len=12 0xa4f {0} (0x800) (Bits=2)
# 0xa4f HD=6 len=11 Example: Len=12 0xa4f {0} (0x800) (Bits=2)
# 0xa4f HD=7 len=11 Example: Len=12 0xa4f {0} (0x800) (Bits=2)
# 0xa4f HD=8 len=11 Example: Len=12 0xa4f {0} (0x800) (Bits=2)
# 0xa4f HD=9 NONE Example: Len=1 0xa4f {0} (0xa4f) (Bits=8)
0xa4f {11,11,11,11,11,11}
# 0x1abf HD=3 len=8178 Example: Len=8179 0x1abf {0} (0x1000) (Bits=2)
# 0x1abf HD=4 len=324 Example: Len=325 0x1abf {0,39} (0x1000) (Bits=3)
# 0x1abf HD=5 len=31 Example: Len=32 0x1abf {0,21,26} (0x1000) (Bits=4)
# 0x1abf HD=6 len=6 Example: Len=7 0x1abf {0,6} (0x1a00) (Bits=5)
# 0x1abf HD=7 len=2 Example: Len=3 0x1abf {0,1} (0x1c10) (Bits=6)
# 0x1abf HD=8 len=2 Example: Len=3 0x1abf {0,1} (0x1c10) (Bits=6)
# 0x1abf HD=9 len=1 Example: Len=2 0x1abf {0} (0x17e0) (Bits=8)
# 0x1abf HD=10 len=1 Example: Len=2 0x1abf {0} (0x17e0) (Bits=8)
# 0x1abf HD=11 len=1 Example: Len=2 0x1abf {0} (0x17e0) (Bits=8)
# 0x1abf HD=12 NONE Example: Len=1 0x1abf {0} (0x1abf) (Bits=11)
0x1abf {8178,324,31,6,2,2,1,1,1}
# 0x1747 HD=3 len=8178 Example: Len=8179 0x1747 {0} (0x1000) (Bits=2)
# 0x1747 HD=4 len=233 Example: Len=234 0x1747 {0,209} (0x1000) (Bits=3)
# 0x1747 HD=5 len=34 Example: Len=35 0x1747 {0,1} (0x1040) (Bits=4)
# 0x1747 HD=6 len=7 Example: Len=8 0x1747 {0} (0x100d) (Bits=5)
# 0x1747 HD=7 len=7 Example: Len=8 0x1747 {0} (0x100d) (Bits=5)
# 0x1747 HD=8 len=7 Example: Len=8 0x1747 {0} (0x100d) (Bits=5)
# 0x1747 HD=9 len=1 Example: Len=2 0x1747 {0} (0x1ce4) (Bits=8)
# 0x1747 HD=10 NONE Example: Len=1 0x1747 {0} (0x1747) (Bits=9)
0x1747 {8178,233,34,7,7,7,1}
# 0x1495 HD=3 len=8178 Example: Len=8179 0x1495 {0} (0x1000) (Bits=2)
# 0x1495 HD=4 len=108 Example: Len=109 0x1495 {0,21} (0x1000) (Bits=3)
# 0x1495 HD=5 len=21 Example: Len=22 0x1495 {0,18,19} (0x1000) (Bits=4)
# 0x1495 HD=6 len=15 Example: Len=16 0x1495 {0,8} (0x1021) (Bits=5)
# 0x1495 HD=7 len=9 Example: Len=10 0x1495 {0,7} (0x1a20) (Bits=6)
# 0x1495 HD=8 NONE Example: Len=1 0x1495 {0} (0x1495) (Bits=7)
0x1495 {8178,108,21,15,9}
# 0x100d HD=3 len=8178 Example: Len=8179 0x100d {0} (0x1000) (Bits=2)
# 0x100d HD=4 len=81 Example: Len=82 0x100d {0,13} (0x1000) (Bits=3)
# 0x100d HD=5 len=26 Example: Len=27 0x100d {0,18} (0x1800) (Bits=4)
# 0x100d HD=6 NONE Example: Len=1 0x100d {0} (0x100d) (Bits=5)
0x100d {8178,81,26}
# 0x112d HD=3 len=8178 Example: Len=8179 0x112d {0} (0x1000) (Bits=2)
# 0x112d HD=4 len=75 Example: Len=76 0x112d {0} (0x1800) (Bits=3)
# 0x112d HD=5 len=49 Example: Len=50 0x112d {0,21} (0x1100) (Bits=4)
# 0x112d HD=6 len=16 Example: Len=17 0x112d {0,5} (0x1840) (Bits=5)
# 0x112d HD=7 len=3 Example: Len=4 0x112d {0,1} (0x1308) (Bits=6)
# 0x112d HD=8 NONE Example: Len=1 0x112d {0} (0x112d) (Bits=7)
0x112d {8178,75,49,16,3}
# 0x17ff HD=3 len=8178 Example: Len=8179 0x17ff {0} (0x1000) (Bits=2)
# 0x17ff HD=4 len=59 Example: Len=60 0x17ff {0,11} (0x1000) (Bits=3)
# 0x17ff HD=5 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=6 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=7 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=8 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=9 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=10 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=11 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=12 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=13 len=1 Example: Len=2 0x17ff {0} (0x1c00) (Bits=4)
# 0x17ff HD=14 NONE Example: Len=1 0x17ff {0} (0x17ff) (Bits=13)
0x17ff {8178,59,1,1,1,1,1,1,1,1,1}
# 0x1877 HD=3 len=8178 Example: Len=8179 0x1877 {0} (0x1000) (Bits=2)
# 0x1877 HD=4 len=50 Example: Len=51 0x1877 {0,25} (0x1000) (Bits=3)
# 0x1877 HD=5 len=50 Example: Len=51 0x1877 {0,25} (0x1000) (Bits=3)
# 0x1877 HD=6 len=7 Example: Len=8 0x1877 {0,4,7} (0x1200) (Bits=5)
# 0x1877 HD=7 len=1 Example: Len=2 0x1877 {0} (0x144c) (Bits=6)
# 0x1877 HD=8 len=1 Example: Len=2 0x1877 {0} (0x144c) (Bits=6)
# 0x1877 HD=9 len=1 Example: Len=2 0x1877 {0} (0x144c) (Bits=6)
# 0x1877 HD=10 NONE Example: Len=1 0x1877 {0} (0x1877) (Bits=9)
0x1877 {8178,50,50,7,1,1,1}
# 0x1537 HD=3 len=8178 Example: Len=8179 0x1537 {0} (0x1000) (Bits=2)
# 0x1537 HD=4 len=33 Example: Len=34 0x1537 {0,19} (0x1000) (Bits=3)
# 0x1537 HD=5 len=16 Example: Len=17 0x1537 {0,11} (0x1020) (Bits=4)
# 0x1537 HD=6 len=14 Example: Len=15 0x1537 {0,10,14} (0x1040) (Bits=5)
# 0x1537 HD=7 len=5 Example: Len=6 0x1537 {0,3,5} (0x1180) (Bits=6)
# 0x1537 HD=8 len=4 Example: Len=5 0x1537 {0} (0x16c2) (Bits=7)
# 0x1537 HD=9 len=2 Example: Len=3 0x1537 {0,1} (0x107a) (Bits=8)
# 0x1537 HD=10 NONE Example: Len=1 0x1537 {0} (0x1537) (Bits=9)
0x1537 {8178,33,16,14,5,4,2}
# 0x12e6 HD=3 len=4082 Example: Len=4083 0x12e6 {0} (0x1000) (Bits=2)
# 0x12e6 HD=4 len=4082 Example: Len=4083 0x12e6 {0} (0x1000) (Bits=2)
# 0x12e6 HD=5 len=32 Example: Len=33 0x12e6 {0,6,24} (0x1000) (Bits=4)
# 0x12e6 HD=6 len=32 Example: Len=33 0x12e6 {0,6,24} (0x1000) (Bits=4)
# 0x12e6 HD=7 len=4 Example: Len=5 0x12e6 {0} (0x1e02) (Bits=6)
# 0x12e6 HD=8 len=4 Example: Len=5 0x12e6 {0} (0x1e02) (Bits=6)
# 0x12e6 HD=9 NONE Example: Len=1 0x12e6 {0} (0x12e6) (Bits=8)
0x12e6 {4082,4082,32,32,4,4}
# 0x1aeb HD=3 len=4082 Example: Len=4083 0x1aeb {0} (0x1000) (Bits=2)
# 0x1aeb HD=4 len=4082 Example: Len=4083 0x1aeb {0} (0x1000) (Bits=2)
# 0x1aeb HD=5 len=18 Example: Len=19 0x1aeb {0,3,7} (0x1000) (Bits=4)
# 0x1aeb HD=6 len=18 Example: Len=19 0x1aeb {0,3,7} (0x1000) (Bits=4)
# 0x1aeb HD=7 len=2 Example: Len=3 0x1aeb {0,2} (0x1124) (Bits=6)
# 0x1aeb HD=8 len=2 Example: Len=3 0x1aeb {0,2} (0x1124) (Bits=6)
# 0x1aeb HD=9 len=2 Example: Len=3 0x1aeb {0,2} (0x1124) (Bits=6)
# 0x1aeb HD=10 len=2 Example: Len=3 0x1aeb {0,2} (0x1124) (Bits=6)
# 0x1aeb HD=11 NONE Example: Len=1 0x1aeb {0} (0x1aeb) (Bits=10)
0x1aeb {4082,4082,18,18,2,2,2,2}
# 0x1df7 HD=3 len=4082 Example: Len=4083 0x1df7 {0} (0x1000) (Bits=2)
# 0x1df7 HD=4 len=4082 Example: Len=4083 0x1df7 {0} (0x1000) (Bits=2)
# 0x1df7 HD=5 len=14 Example: Len=15 0x1df7 {0,9} (0x1100) (Bits=4)
# 0x1df7 HD=6 len=14 Example: Len=15 0x1df7 {0,9} (0x1100) (Bits=4)
# 0x1df7 HD=7 len=1 Example: Len=2 0x1df7 {0} (0x130c) (Bits=6)
# 0x1df7 HD=8 len=1 Example: Len=2 0x1df7 {0} (0x130c) (Bits=6)
# 0x1df7 HD=9 len=1 Example: Len=2 0x1df7 {0} (0x130c) (Bits=6)
# 0x1df7 HD=10 len=1 Example: Len=2 0x1df7 {0} (0x130c) (Bits=6)
# 0x1df7 HD=11 len=1 Example: Len=2 0x1df7 {0} (0x130c) (Bits=6)
# 0x1df7 HD=12 len=1 Example: Len=2 0x1df7 {0} (0x130c) (Bits=6)
# 0x1df7 HD=13 NONE Example: Len=1 0x1df7 {0} (0x1df7) (Bits=12)
0x1df7 {4082,4082,14,14,1,1,1,1,1,1}
# 0x102d HD=3 len=4082 Example: Len=4083 0x102d {0} (0x1000) (Bits=2)
# 0x102d HD=4 len=4082 Example: Len=4083 0x102d {0} (0x1000) (Bits=2)
# 0x102d HD=5 len=14 Example: Len=15 0x102d {0,3} (0x1002) (Bits=4)
# 0x102d HD=6 len=14 Example: Len=15 0x102d {0,3} (0x1002) (Bits=4)
# 0x102d HD=7 NONE Example: Len=1 0x102d {0} (0x102d) (Bits=6)
0x102d {4082,4082,14,14}
# 0x1036 HD=3 len=3924 Example: Len=3925 0x1036 {0} (0x1000) (Bits=2)
# 0x1036 HD=4 len=3924 Example: Len=3925 0x1036 {0} (0x1000) (Bits=2)
# 0x1036 HD=5 len=32 Example: Len=33 0x1036 {0} (0x1060) (Bits=4)
# 0x1036 HD=6 len=32 Example: Len=33 0x1036 {0} (0x1060) (Bits=4)
# 0x1036 HD=7 NONE Example: Len=1 0x1036 {0} (0x1036) (Bits=6)
0x1036 {3924,3924,32,32}
# 0x1c6b HD=3 len=2542 Example: Len=2543 0x1c6b {0} (0x1000) (Bits=2)
# 0x1c6b HD=4 len=2542 Example: Len=2543 0x1c6b {0} (0x1000) (Bits=2)
# 0x1c6b HD=5 len=34 Example: Len=35 0x1c6b {0,10} (0x1080) (Bits=4)
# 0x1c6b HD=6 len=14 Example: Len=15 0x1c6b {0,3} (0x1012) (Bits=5)
# 0x1c6b HD=7 len=4 Example: Len=5 0x1c6b {0,4} (0x1015) (Bits=6)
# 0x1c6b HD=8 len=2 Example: Len=3 0x1c6b {0,2} (0x1544) (Bits=7)
# 0x1c6b HD=9 len=1 Example: Len=2 0x1c6b {0} (0x125e) (Bits=8)
# 0x1c6b HD=10 NONE Example: Len=1 0x1c6b {0} (0x1c6b) (Bits=9)
0x1c6b {2542,2542,34,14,4,2,1}
# 0x102a HD=3 len=2542 Example: Len=2543 0x102a {0} (0x1000) (Bits=2)
# 0x102a HD=4 len=2542 Example: Len=2543 0x102a {0} (0x1000) (Bits=2)
# 0x102a HD=5 len=2 Example: Len=3 0x102a {0} (0x1420) (Bits=4)
# 0x102a HD=6 NONE Example: Len=1 0x102a {0} (0x102a) (Bits=5)
0x102a {2542,2542,2}
# 0x111d HD=3 len=638 Example: Len=639 0x111d {0} (0x1000) (Bits=2)
# 0x111d HD=4 len=638 Example: Len=639 0x111d {0} (0x1000) (Bits=2)
# 0x111d HD=5 len=21 Example: Len=22 0x111d {0} (0x1060) (Bits=4)
# 0x111d HD=6 len=21 Example: Len=22 0x111d {0} (0x1060) (Bits=4)
# 0x111d HD=7 len=4 Example: Len=5 0x111d {0,1,3} (0x100c) (Bits=6)
# 0x111d HD=8 NONE Example: Len=1 0x111d {0} (0x111d) (Bits=7)
0x111d {638,638,21,21,4}
# 0x1e7a HD=3 len=165 Example: Len=166 0x1e7a {0} (0x1000) (Bits=2)
# 0x1e7a HD=4 len=165 Example: Len=166 0x1e7a {0} (0x1000) (Bits=2)
# 0x1e7a HD=5 len=14 Example: Len=15 0x1e7a {0} (0x1018) (Bits=4)
# 0x1e7a HD=6 len=14 Example: Len=15 0x1e7a {0} (0x1018) (Bits=4)
# 0x1e7a HD=7 len=3 Example: Len=4 0x1e7a {0,3} (0x1288) (Bits=6)
# 0x1e7a HD=8 len=3 Example: Len=4 0x1e7a {0,3} (0x1288) (Bits=6)
# 0x1e7a HD=9 len=1 Example: Len=2 0x1e7a {0,1} (0x1147) (Bits=8)
# 0x1e7a HD=10 len=1 Example: Len=2 0x1e7a {0,1} (0x1147) (Bits=8)
# 0x1e7a HD=11 NONE Example: Len=1 0x1e7a {0} (0x1e7a) (Bits=10)
0x1e7a {165,165,14,14,3,3,1,1}
# 0x12a5 HD=3 len=56 Example: Len=57 0x12a5 {0} (0x1000) (Bits=2)
# 0x12a5 HD=4 len=56 Example: Len=57 0x12a5 {0} (0x1000) (Bits=2)
# 0x12a5 HD=5 len=13 Example: Len=14 0x12a5 {0,3} (0x1200) (Bits=4)
# 0x12a5 HD=6 len=13 Example: Len=14 0x12a5 {0,3} (0x1200) (Bits=4)
# 0x12a5 HD=7 len=12 Example: Len=13 0x12a5 {0,1,2} (0x1c00) (Bits=6)
# 0x12a5 HD=8 NONE Example: Len=1 0x12a5 {0} (0x12a5) (Bits=7)
0x12a5 {56,56,13,13,12}
# 0x1e97 HD=3 len=52 Example: Len=53 0x1e97 {0} (0x1000) (Bits=2)
# 0x1e97 HD=4 len=52 Example: Len=53 0x1e97 {0} (0x1000) (Bits=2)
# 0x1e97 HD=5 len=52 Example: Len=53 0x1e97 {0} (0x1000) (Bits=2)
# 0x1e97 HD=6 len=52 Example: Len=53 0x1e97 {0} (0x1000) (Bits=2)
# 0x1e97 HD=7 len=4 Example: Len=5 0x1e97 {0,2} (0x1442) (Bits=6)
# 0x1e97 HD=8 len=4 Example: Len=5 0x1e97 {0,2} (0x1442) (Bits=6)
# 0x1e97 HD=9 len=1 Example: Len=2 0x1e97 {0} (0x11dc) (Bits=8)
# 0x1e97 HD=10 len=1 Example: Len=2 0x1e97 {0} (0x11dc) (Bits=8)
# 0x1e97 HD=11 NONE Example: Len=1 0x1e97 {0} (0x1e97) (Bits=10)
0x1e97 {52,52,52,52,4,4,1,1}
# 0x1909 HD=3 len=52 Example: Len=53 0x1909 {0} (0x1000) (Bits=2)
# 0x1909 HD=4 len=52 Example: Len=53 0x1909 {0} (0x1000) (Bits=2)
# 0x1909 HD=5 len=52 Example: Len=53 0x1909 {0} (0x1000) (Bits=2)
# 0x1909 HD=6 len=52 Example: Len=53 0x1909 {0} (0x1000) (Bits=2)
# 0x1909 HD=7 NONE Example: Len=1 0x1909 {0} (0x1909) (Bits=6)
0x1909 {52,52,52,52}
# 0x10b7 HD=3 len=33 Example: Len=34 0x10b7 {0} (0x1000) (Bits=2)
# 0x10b7 HD=4 len=33 Example: Len=34 0x10b7 {0} (0x1000) (Bits=2)
# 0x10b7 HD=5 len=11 Example: Len=12 0x10b7 {0,1} (0x1800) (Bits=4)
# 0x10b7 HD=6 len=11 Example: Len=12 0x10b7 {0,1} (0x1800) (Bits=4)
# 0x10b7 HD=7 len=11 Example: Len=12 0x10b7 {0,1} (0x1800) (Bits=4)
# 0x10b7 HD=8 len=11 Example: Len=12 0x10b7 {0,1} (0x1800) (Bits=4)
# 0x10b7 HD=9 NONE Example: Len=1 0x10b7 {0} (0x10b7) (Bits=8)
0x10b7 {33,33,11,11,11,11}
# 0x27cf HD=3 len=16369 Example: Len=16370 0x27cf {0} (0x2000) (Bits=2)
# 0x27cf HD=4 len=459 Example: Len=460 0x27cf {0,42} (0x2000) (Bits=3)
# 0x27cf HD=5 len=17 Example: Len=18 0x27cf {0,9,10} (0x2000) (Bits=4)
# 0x27cf HD=6 len=5 Example: Len=6 0x27cf {0,1} (0x2208) (Bits=5)
# 0x27cf HD=7 len=1 Example: Len=2 0x27cf {0} (0x3428) (Bits=6)
# 0x27cf HD=8 len=1 Example: Len=2 0x27cf {0} (0x3428) (Bits=6)
# 0x27cf HD=9 len=1 Example: Len=2 0x27cf {0} (0x3428) (Bits=6)
# 0x27cf HD=10 len=1 Example: Len=2 0x27cf {0} (0x3428) (Bits=6)
# 0x27cf HD=11 len=1 Example: Len=2 0x27cf {0} (0x3428) (Bits=6)
# 0x27cf HD=12 NONE Example: Len=1 0x27cf {0} (0x27cf) (Bits=11)
0x27cf {16369,459,17,5,1,1,1,1,1}
# 0x28a9 HD=3 len=16369 Example: Len=16370 0x28a9 {0} (0x2000) (Bits=2)
# 0x28a9 HD=4 len=317 Example: Len=318 0x28a9 {0,59} (0x2000) (Bits=3)
# 0x28a9 HD=5 len=46 Example: Len=47 0x28a9 {0,9,30} (0x2000) (Bits=4)
# 0x28a9 HD=6 len=14 Example: Len=15 0x28a9 {0,10} (0x20c0) (Bits=5)
# 0x28a9 HD=7 len=13 Example: Len=14 0x28a9 {0} (0x2311) (Bits=6)
# 0x28a9 HD=8 NONE Example: Len=1 0x28a9 {0} (0x28a9) (Bits=7)
0x28a9 {16369,317,46,14,13}
# 0x37ef HD=3 len=16369 Example: Len=16370 0x37ef {0} (0x2000) (Bits=2)
# 0x37ef HD=4 len=260 Example: Len=261 0x37ef {0,225} (0x2000) (Bits=3)
# 0x37ef HD=5 len=69 Example: Len=70 0x37ef {0,1,55} (0x2000) (Bits=4)
# 0x37ef HD=6 len=19 Example: Len=20 0x37ef {0,8,19} (0x2800) (Bits=5)
# 0x37ef HD=7 len=1 Example: Len=2 0x37ef {0} (0x2c18) (Bits=6)
# 0x37ef HD=8 len=1 Example: Len=2 0x37ef {0} (0x2c18) (Bits=6)
# 0x37ef HD=9 len=1 Example: Len=2 0x37ef {0} (0x2c18) (Bits=6)
# 0x37ef HD=10 len=1 Example: Len=2 0x37ef {0} (0x2c18) (Bits=6)
# 0x37ef HD=11 len=1 Example: Len=2 0x37ef {0} (0x2c18) (Bits=6)
# 0x37ef HD=12 len=1 Example: Len=2 0x37ef {0} (0x2c18) (Bits=6)
# 0x37ef HD=13 len=1 Example: Len=2 0x37ef {0} (0x2c18) (Bits=6)
# 0x37ef HD=14 NONE Example: Len=1 0x37ef {0} (0x37ef) (Bits=13)
0x37ef {16369,260,69,19,1,1,1,1,1,1,1}
# 0x2015 HD=3 len=16369 Example: Len=16370 0x2015 {0} (0x2000) (Bits=2)
# 0x2015 HD=4 len=210 Example: Len=211 0x2015 {0,77} (0x2000) (Bits=3)
# 0x2015 HD=5 len=33 Example: Len=34 0x2015 {0,6,16} (0x2000) (Bits=4)
# 0x2015 HD=6 NONE Example: Len=1 0x2015 {0} (0x2015) (Bits=5)
0x2015 {16369,210,33}
# 0x3abb HD=3 len=16369 Example: Len=16370 0x3abb {0} (0x2000) (Bits=2)
# 0x3abb HD=4 len=204 Example: Len=205 0x3abb {0,157} (0x2000) (Bits=3)
# 0x3abb HD=5 len=18 Example: Len=19 0x3abb {0,2,3} (0x2000) (Bits=4)
# 0x3abb HD=6 len=18 Example: Len=19 0x3abb {0,2,3} (0x2000) (Bits=4)
# 0x3abb HD=7 len=8 Example: Len=9 0x3abb {0,2,5} (0x2014) (Bits=6)
# 0x3abb HD=8 len=2 Example: Len=3 0x3abb {0,2} (0x2948) (Bits=7)
# 0x3abb HD=9 len=2 Example: Len=3 0x3abb {0,2} (0x2948) (Bits=7)
# 0x3abb HD=10 len=2 Example: Len=3 0x3abb {0,2} (0x2948) (Bits=7)
# 0x3abb HD=11 len=1 Example: Len=2 0x3abb {0} (0x27e6) (Bits=10)
# 0x3abb HD=12 NONE Example: Len=1 0x3abb {0} (0x3abb) (Bits=11)
0x3abb {16369,204,18,18,8,2,2,2,1}
# 0x3497 HD=3 len=16369 Example: Len=16370 0x3497 {0} (0x2000) (Bits=2)
# 0x3497 HD=4 len=197 Example: Len=198 0x3497 {0,91} (0x2000) (Bits=3)
# 0x3497 HD=5 len=49 Example: Len=50 0x3497 {0,14} (0x3000) (Bits=4)
# 0x3497 HD=6 len=18 Example: Len=19 0x3497 {0} (0x2241) (Bits=5)
# 0x3497 HD=7 len=8 Example: Len=9 0x3497 {0,3,6,8} (0x2200) (Bits=6)
# 0x3497 HD=8 len=4 Example: Len=5 0x3497 {0} (0x314c) (Bits=7)
# 0x3497 HD=9 len=3 Example: Len=4 0x3497 {0,1,2} (0x3205) (Bits=8)
# 0x3497 HD=10 NONE Example: Len=1 0x3497 {0} (0x3497) (Bits=9)
0x3497 {16369,197,49,18,8,4,3}
# 0x2769 HD=3 len=16369 Example: Len=16370 0x2769 {0} (0x2000) (Bits=2)
# 0x2769 HD=4 len=134 Example: Len=135 0x2769 {0} (0x2004) (Bits=3)
# 0x2769 HD=5 len=32 Example: Len=33 0x2769 {0,5} (0x2001) (Bits=4)
# 0x2769 HD=6 len=26 Example: Len=27 0x2769 {0,13,15} (0x2008) (Bits=5)
# 0x2769 HD=7 len=4 Example: Len=5 0x2769 {0,3} (0x2828) (Bits=6)
# 0x2769 HD=8 len=3 Example: Len=4 0x2769 {0,1,2} (0x3030) (Bits=7)
# 0x2769 HD=9 len=3 Example: Len=4 0x2769 {0,1,2} (0x3030) (Bits=7)
# 0x2769 HD=10 NONE Example: Len=1 0x2769 {0} (0x2769) (Bits=9)
0x2769 {16369,134,32,26,4,3,3}
# 0x2a4f HD=3 len=16369 Example: Len=16370 0x2a4f {0} (0x2000) (Bits=2)
# 0x2a4f HD=4 len=24 Example: Len=25 0x2a4f {0,17} (0x2000) (Bits=3)
# 0x2a4f HD=5 len=24 Example: Len=25 0x2a4f {0,17} (0x2000) (Bits=3)
# 0x2a4f HD=6 len=8 Example: Len=9 0x2a4f {0,2} (0x2410) (Bits=5)
# 0x2a4f HD=7 len=7 Example: Len=8 0x2a4f {0,6,7} (0x2021) (Bits=6)
# 0x2a4f HD=8 len=6 Example: Len=7 0x2a4f {0,4,5,6} (0x3400) (Bits=7)
# 0x2a4f HD=9 len=2 Example: Len=3 0x2a4f {0,1} (0x20dc) (Bits=8)
# 0x2a4f HD=10 NONE Example: Len=1 0x2a4f {0} (0x2a4f) (Bits=9)
0x2a4f {16369,24,24,8,7,6,2}
# 0x2322 HD=3 len=8177 Example: Len=8178 0x2322 {0} (0x2000) (Bits=2)
# 0x2322 HD=4 len=8177 Example: Len=8178 0x2322 {0} (0x2000) (Bits=2)
# 0x2322 HD=5 len=57 Example: Len=58 0x2322 {0,15} (0x2002) (Bits=4)
# 0x2322 HD=6 len=57 Example: Len=58 0x2322 {0,15} (0x2002) (Bits=4)
# 0x2322 HD=7 NONE Example: Len=1 0x2322 {0} (0x2322) (Bits=6)
0x2322 {8177,8177,57,57}
# 0x231e HD=3 len=8177 Example: Len=8178 0x231e {0} (0x2000) (Bits=2)
# 0x231e HD=4 len=8177 Example: Len=8178 0x231e {0} (0x2000) (Bits=2)
# 0x231e HD=5 len=27 Example: Len=28 0x231e {0,14,23} (0x2000) (Bits=4)
# 0x231e HD=6 len=27 Example: Len=28 0x231e {0,14,23} (0x2000) (Bits=4)
# 0x231e HD=7 len=4 Example: Len=5 0x231e {0,2} (0x30a0) (Bits=6)
# 0x231e HD=8 len=4 Example: Len=5 0x231e {0,2} (0x30a0) (Bits=6)
# 0x231e HD=9 NONE Example: Len=1 0x231e {0} (0x231e) (Bits=8)
0x231e {8177,8177,27,27,4,4}
# 0x3016 HD=3 len=8177 Example: Len=8178 0x3016 {0} (0x2000) (Bits=2)
# 0x3016 HD=4 len=8177 Example: Len=8178 0x3016 {0} (0x2000) (Bits=2)
# 0x3016 HD=5 len=25 Example: Len=26 0x3016 {0,18} (0x3000) (Bits=4)
# 0x3016 HD=6 len=25 Example: Len=26 0x3016 {0,18} (0x3000) (Bits=4)
# 0x3016 HD=7 NONE Example: Len=1 0x3016 {0} (0x3016) (Bits=6)
0x3016 {8177,8177,25,25}
# 0x33ab HD=3 len=8177 Example: Len=8178 0x33ab {0} (0x2000) (Bits=2)
# 0x33ab HD=4 len=8177 Example: Len=8178 0x33ab {0} (0x2000) (Bits=2)
# 0x33ab HD=5 len=9 Example: Len=10 0x33ab {0} (0x2005) (Bits=4)
# 0x33ab HD=6 len=9 Example: Len=10 0x33ab {0} (0x2005) (Bits=4)
# 0x33ab HD=7 len=7 Example: Len=8 0x33ab {0,3,5} (0x2048) (Bits=6)
# 0x33ab HD=8 len=7 Example: Len=8 0x33ab {0,3,5} (0x2048) (Bits=6)
# 0x33ab HD=9 len=2 Example: Len=3 0x33ab {0,2} (0x2694) (Bits=8)
# 0x33ab HD=10 len=2 Example: Len=3 0x33ab {0,2} (0x2694) (Bits=8)
# 0x33ab HD=11 NONE Example: Len=1 0x33ab {0} (0x33ab) (Bits=10)
0x33ab {8177,8177,9,9,7,7,2,2}
# 0x2003 HD=3 len=8177 Example: Len=8178 0x2003 {0} (0x2000) (Bits=2)
# 0x2003 HD=4 len=8177 Example: Len=8178 0x2003 {0} (0x2000) (Bits=2)
# 0x2003 HD=5 NONE Example: Len=1 0x2003 {0} (0x2003) (Bits=4)
0x2003 {8177,8177}
# 0x37ff HD=3 len=8177 Example: Len=8178 0x37ff {0} (0x2000) (Bits=2)
# 0x37ff HD=4 len=8177 Example: Len=8178 0x37ff {0} (0x2000) (Bits=2)
# 0x37ff HD=5 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=6 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=7 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=8 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=9 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=10 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=11 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=12 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=13 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=14 len=1 Example: Len=2 0x37ff {0} (0x2c00) (Bits=4)
# 0x37ff HD=15 NONE Example: Len=1 0x37ff {0} (0x37ff) (Bits=14)
0x37ff {8177,8177,1,1,1,1,1,1,1,1,1,1}
# 0x2402 HD=3 len=8177 Example: Len=8178 0x2402 {0} (0x2000) (Bits=2)
# 0x2402 HD=4 len=8177 Example: Len=8178 0x2402 {0} (0x2000) (Bits=2)
# 0x2402 HD=5 NONE Example: Len=1 0x2402 {0} (0x2402) (Bits=4)
0x2402 {8177,8177}
# 0x372b HD=3 len=8176 Example: Len=8177 0x372b {0} (0x2000) (Bits=2)
# 0x372b HD=4 len=8176 Example: Len=8177 0x372b {0} (0x2000) (Bits=2)