-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhc.ttl
1025 lines (1025 loc) · 93.1 KB
/
hc.ttl
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
@prefix : <http://odroid.0xFFFFFFFF.in/psoc5lp/ns#> .
[] a :hc ; :polarity :tx ; :v "0" ; :h "0" ; :bit "0" ; :offset "0x00" ; :name "HC0" .
[] a :hc ; :polarity :tx ; :v "0" ; :h "2" ; :bit "1" ; :offset "0x00" ; :name "HC0" .
[] a :hc ; :polarity :tx ; :v "0" ; :h "24" ; :bit "0" ; :offset "0x01" ; :name "HC1" .
[] a :hc ; :polarity :tx ; :v "0" ; :h "28" ; :bit "1" ; :offset "0x01" ; :name "HC1" .
[] a :hc ; :polarity :tx ; :v "0" ; :h "67" ; :bit "6" ; :offset "0x02" ; :name "HC2" .
[] a :hc ; :polarity :tx ; :v "0" ; :h "71" ; :bit "7" ; :offset "0x02" ; :name "HC2" .
[] a :hc ; :polarity :tx ; :v "0" ; :h "91" ; :bit "6" ; :offset "0x03" ; :name "HC3" .
[] a :hc ; :polarity :tx ; :v "0" ; :h "95" ; :bit "7" ; :offset "0x03" ; :name "HC3" .
[] a :hc ; :polarity :tx ; :v "1" ; :h "0" ; :bit "0" ; :offset "0x04" ; :name "HC4" .
[] a :hc ; :polarity :tx ; :v "1" ; :h "3" ; :bit "1" ; :offset "0x04" ; :name "HC4" .
[] a :hc ; :polarity :tx ; :v "1" ; :h "25" ; :bit "0" ; :offset "0x05" ; :name "HC5" .
[] a :hc ; :polarity :tx ; :v "1" ; :h "28" ; :bit "1" ; :offset "0x05" ; :name "HC5" .
[] a :hc ; :polarity :tx ; :v "1" ; :h "67" ; :bit "6" ; :offset "0x06" ; :name "HC6" .
[] a :hc ; :polarity :tx ; :v "1" ; :h "70" ; :bit "7" ; :offset "0x06" ; :name "HC6" .
[] a :hc ; :polarity :tx ; :v "1" ; :h "91" ; :bit "6" ; :offset "0x07" ; :name "HC7" .
[] a :hc ; :polarity :tx ; :v "1" ; :h "94" ; :bit "7" ; :offset "0x07" ; :name "HC7" .
[] a :hc ; :polarity :tx ; :v "2" ; :h "6" ; :bit "2" ; :offset "0x00" ; :name "HC0" .
[] a :hc ; :polarity :tx ; :v "2" ; :h "8" ; :bit "3" ; :offset "0x00" ; :name "HC0" .
[] a :hc ; :polarity :tx ; :v "2" ; :h "30" ; :bit "2" ; :offset "0x01" ; :name "HC1" .
[] a :hc ; :polarity :tx ; :v "2" ; :h "34" ; :bit "3" ; :offset "0x01" ; :name "HC1" .
[] a :hc ; :polarity :tx ; :v "2" ; :h "61" ; :bit "4" ; :offset "0x02" ; :name "HC2" .
[] a :hc ; :polarity :tx ; :v "2" ; :h "65" ; :bit "5" ; :offset "0x02" ; :name "HC2" .
[] a :hc ; :polarity :tx ; :v "2" ; :h "85" ; :bit "4" ; :offset "0x03" ; :name "HC3" .
[] a :hc ; :polarity :tx ; :v "2" ; :h "89" ; :bit "5" ; :offset "0x03" ; :name "HC3" .
[] a :hc ; :polarity :tx ; :v "3" ; :h "6" ; :bit "2" ; :offset "0x04" ; :name "HC4" .
[] a :hc ; :polarity :tx ; :v "3" ; :h "9" ; :bit "3" ; :offset "0x04" ; :name "HC4" .
[] a :hc ; :polarity :tx ; :v "3" ; :h "31" ; :bit "2" ; :offset "0x05" ; :name "HC5" .
[] a :hc ; :polarity :tx ; :v "3" ; :h "34" ; :bit "3" ; :offset "0x05" ; :name "HC5" .
[] a :hc ; :polarity :tx ; :v "3" ; :h "61" ; :bit "4" ; :offset "0x06" ; :name "HC6" .
[] a :hc ; :polarity :tx ; :v "3" ; :h "64" ; :bit "5" ; :offset "0x06" ; :name "HC6" .
[] a :hc ; :polarity :tx ; :v "3" ; :h "85" ; :bit "4" ; :offset "0x07" ; :name "HC7" .
[] a :hc ; :polarity :tx ; :v "3" ; :h "88" ; :bit "5" ; :offset "0x07" ; :name "HC7" .
[] a :hc ; :polarity :tx ; :v "4" ; :h "12" ; :bit "4" ; :offset "0x00" ; :name "HC0" .
[] a :hc ; :polarity :tx ; :v "4" ; :h "14" ; :bit "5" ; :offset "0x00" ; :name "HC0" .
[] a :hc ; :polarity :tx ; :v "4" ; :h "36" ; :bit "4" ; :offset "0x01" ; :name "HC1" .
[] a :hc ; :polarity :tx ; :v "4" ; :h "40" ; :bit "5" ; :offset "0x01" ; :name "HC1" .
[] a :hc ; :polarity :tx ; :v "4" ; :h "55" ; :bit "2" ; :offset "0x02" ; :name "HC2" .
[] a :hc ; :polarity :tx ; :v "4" ; :h "59" ; :bit "3" ; :offset "0x02" ; :name "HC2" .
[] a :hc ; :polarity :tx ; :v "4" ; :h "79" ; :bit "2" ; :offset "0x03" ; :name "HC3" .
[] a :hc ; :polarity :tx ; :v "4" ; :h "83" ; :bit "3" ; :offset "0x03" ; :name "HC3" .
[] a :hc ; :polarity :tx ; :v "5" ; :h "12" ; :bit "4" ; :offset "0x04" ; :name "HC4" .
[] a :hc ; :polarity :tx ; :v "5" ; :h "15" ; :bit "5" ; :offset "0x04" ; :name "HC4" .
[] a :hc ; :polarity :tx ; :v "5" ; :h "37" ; :bit "4" ; :offset "0x05" ; :name "HC5" .
[] a :hc ; :polarity :tx ; :v "5" ; :h "40" ; :bit "5" ; :offset "0x05" ; :name "HC5" .
[] a :hc ; :polarity :tx ; :v "5" ; :h "55" ; :bit "2" ; :offset "0x06" ; :name "HC6" .
[] a :hc ; :polarity :tx ; :v "5" ; :h "58" ; :bit "3" ; :offset "0x06" ; :name "HC6" .
[] a :hc ; :polarity :tx ; :v "5" ; :h "79" ; :bit "2" ; :offset "0x07" ; :name "HC7" .
[] a :hc ; :polarity :tx ; :v "5" ; :h "82" ; :bit "3" ; :offset "0x07" ; :name "HC7" .
[] a :hc ; :polarity :tx ; :v "6" ; :h "18" ; :bit "6" ; :offset "0x00" ; :name "HC0" .
[] a :hc ; :polarity :tx ; :v "6" ; :h "20" ; :bit "7" ; :offset "0x00" ; :name "HC0" .
[] a :hc ; :polarity :tx ; :v "6" ; :h "42" ; :bit "6" ; :offset "0x01" ; :name "HC1" .
[] a :hc ; :polarity :tx ; :v "6" ; :h "46" ; :bit "7" ; :offset "0x01" ; :name "HC1" .
[] a :hc ; :polarity :tx ; :v "6" ; :h "49" ; :bit "0" ; :offset "0x02" ; :name "HC2" .
[] a :hc ; :polarity :tx ; :v "6" ; :h "53" ; :bit "1" ; :offset "0x02" ; :name "HC2" .
[] a :hc ; :polarity :tx ; :v "6" ; :h "73" ; :bit "0" ; :offset "0x03" ; :name "HC3" .
[] a :hc ; :polarity :tx ; :v "6" ; :h "77" ; :bit "1" ; :offset "0x03" ; :name "HC3" .
[] a :hc ; :polarity :tx ; :v "7" ; :h "18" ; :bit "6" ; :offset "0x04" ; :name "HC4" .
[] a :hc ; :polarity :tx ; :v "7" ; :h "21" ; :bit "7" ; :offset "0x04" ; :name "HC4" .
[] a :hc ; :polarity :tx ; :v "7" ; :h "43" ; :bit "6" ; :offset "0x05" ; :name "HC5" .
[] a :hc ; :polarity :tx ; :v "7" ; :h "46" ; :bit "7" ; :offset "0x05" ; :name "HC5" .
[] a :hc ; :polarity :tx ; :v "7" ; :h "49" ; :bit "0" ; :offset "0x06" ; :name "HC6" .
[] a :hc ; :polarity :tx ; :v "7" ; :h "52" ; :bit "1" ; :offset "0x06" ; :name "HC6" .
[] a :hc ; :polarity :tx ; :v "7" ; :h "73" ; :bit "0" ; :offset "0x07" ; :name "HC7" .
[] a :hc ; :polarity :tx ; :v "7" ; :h "76" ; :bit "1" ; :offset "0x07" ; :name "HC7" .
[] a :hc ; :polarity :tx ; :v "8" ; :h "1" ; :bit "0" ; :offset "0x08" ; :name "HC8" .
[] a :hc ; :polarity :tx ; :v "8" ; :h "4" ; :bit "1" ; :offset "0x08" ; :name "HC8" .
[] a :hc ; :polarity :tx ; :v "8" ; :h "26" ; :bit "0" ; :offset "0x09" ; :name "HC9" .
[] a :hc ; :polarity :tx ; :v "8" ; :h "29" ; :bit "1" ; :offset "0x09" ; :name "HC9" .
[] a :hc ; :polarity :tx ; :v "8" ; :h "66" ; :bit "6" ; :offset "0x0A" ; :name "HC10" .
[] a :hc ; :polarity :tx ; :v "8" ; :h "69" ; :bit "7" ; :offset "0x0A" ; :name "HC10" .
[] a :hc ; :polarity :tx ; :v "8" ; :h "90" ; :bit "6" ; :offset "0x0B" ; :name "HC11" .
[] a :hc ; :polarity :tx ; :v "8" ; :h "93" ; :bit "7" ; :offset "0x0B" ; :name "HC11" .
[] a :hc ; :polarity :tx ; :v "9" ; :h "1" ; :bit "0" ; :offset "0x0C" ; :name "HC12" .
[] a :hc ; :polarity :tx ; :v "9" ; :h "5" ; :bit "1" ; :offset "0x0C" ; :name "HC12" .
[] a :hc ; :polarity :tx ; :v "9" ; :h "27" ; :bit "0" ; :offset "0x0D" ; :name "HC13" .
[] a :hc ; :polarity :tx ; :v "9" ; :h "29" ; :bit "1" ; :offset "0x0D" ; :name "HC13" .
[] a :hc ; :polarity :tx ; :v "9" ; :h "66" ; :bit "6" ; :offset "0x0E" ; :name "HC14" .
[] a :hc ; :polarity :tx ; :v "9" ; :h "68" ; :bit "7" ; :offset "0x0E" ; :name "HC14" .
[] a :hc ; :polarity :tx ; :v "9" ; :h "90" ; :bit "6" ; :offset "0x0F" ; :name "HC15" .
[] a :hc ; :polarity :tx ; :v "9" ; :h "92" ; :bit "7" ; :offset "0x0F" ; :name "HC15" .
[] a :hc ; :polarity :tx ; :v "10" ; :h "7" ; :bit "2" ; :offset "0x08" ; :name "HC8" .
[] a :hc ; :polarity :tx ; :v "10" ; :h "10" ; :bit "3" ; :offset "0x08" ; :name "HC8" .
[] a :hc ; :polarity :tx ; :v "10" ; :h "32" ; :bit "2" ; :offset "0x09" ; :name "HC9" .
[] a :hc ; :polarity :tx ; :v "10" ; :h "35" ; :bit "3" ; :offset "0x09" ; :name "HC9" .
[] a :hc ; :polarity :tx ; :v "10" ; :h "60" ; :bit "4" ; :offset "0x0A" ; :name "HC10" .
[] a :hc ; :polarity :tx ; :v "10" ; :h "63" ; :bit "5" ; :offset "0x0A" ; :name "HC10" .
[] a :hc ; :polarity :tx ; :v "10" ; :h "84" ; :bit "4" ; :offset "0x0B" ; :name "HC11" .
[] a :hc ; :polarity :tx ; :v "10" ; :h "87" ; :bit "5" ; :offset "0x0B" ; :name "HC11" .
[] a :hc ; :polarity :tx ; :v "11" ; :h "7" ; :bit "2" ; :offset "0x0C" ; :name "HC12" .
[] a :hc ; :polarity :tx ; :v "11" ; :h "11" ; :bit "3" ; :offset "0x0C" ; :name "HC12" .
[] a :hc ; :polarity :tx ; :v "11" ; :h "33" ; :bit "2" ; :offset "0x0D" ; :name "HC13" .
[] a :hc ; :polarity :tx ; :v "11" ; :h "35" ; :bit "3" ; :offset "0x0D" ; :name "HC13" .
[] a :hc ; :polarity :tx ; :v "11" ; :h "60" ; :bit "4" ; :offset "0x0E" ; :name "HC14" .
[] a :hc ; :polarity :tx ; :v "11" ; :h "62" ; :bit "5" ; :offset "0x0E" ; :name "HC14" .
[] a :hc ; :polarity :tx ; :v "11" ; :h "84" ; :bit "4" ; :offset "0x0F" ; :name "HC15" .
[] a :hc ; :polarity :tx ; :v "11" ; :h "86" ; :bit "5" ; :offset "0x0F" ; :name "HC15" .
[] a :hc ; :polarity :tx ; :v "12" ; :h "13" ; :bit "4" ; :offset "0x08" ; :name "HC8" .
[] a :hc ; :polarity :tx ; :v "12" ; :h "16" ; :bit "5" ; :offset "0x08" ; :name "HC8" .
[] a :hc ; :polarity :tx ; :v "12" ; :h "38" ; :bit "4" ; :offset "0x09" ; :name "HC9" .
[] a :hc ; :polarity :tx ; :v "12" ; :h "41" ; :bit "5" ; :offset "0x09" ; :name "HC9" .
[] a :hc ; :polarity :tx ; :v "12" ; :h "54" ; :bit "2" ; :offset "0x0A" ; :name "HC10" .
[] a :hc ; :polarity :tx ; :v "12" ; :h "57" ; :bit "3" ; :offset "0x0A" ; :name "HC10" .
[] a :hc ; :polarity :tx ; :v "12" ; :h "78" ; :bit "2" ; :offset "0x0B" ; :name "HC11" .
[] a :hc ; :polarity :tx ; :v "12" ; :h "81" ; :bit "3" ; :offset "0x0B" ; :name "HC11" .
[] a :hc ; :polarity :tx ; :v "13" ; :h "13" ; :bit "4" ; :offset "0x0C" ; :name "HC12" .
[] a :hc ; :polarity :tx ; :v "13" ; :h "17" ; :bit "5" ; :offset "0x0C" ; :name "HC12" .
[] a :hc ; :polarity :tx ; :v "13" ; :h "39" ; :bit "4" ; :offset "0x0D" ; :name "HC13" .
[] a :hc ; :polarity :tx ; :v "13" ; :h "41" ; :bit "5" ; :offset "0x0D" ; :name "HC13" .
[] a :hc ; :polarity :tx ; :v "13" ; :h "54" ; :bit "2" ; :offset "0x0E" ; :name "HC14" .
[] a :hc ; :polarity :tx ; :v "13" ; :h "56" ; :bit "3" ; :offset "0x0E" ; :name "HC14" .
[] a :hc ; :polarity :tx ; :v "13" ; :h "78" ; :bit "2" ; :offset "0x0F" ; :name "HC15" .
[] a :hc ; :polarity :tx ; :v "13" ; :h "80" ; :bit "3" ; :offset "0x0F" ; :name "HC15" .
[] a :hc ; :polarity :tx ; :v "14" ; :h "19" ; :bit "6" ; :offset "0x08" ; :name "HC8" .
[] a :hc ; :polarity :tx ; :v "14" ; :h "22" ; :bit "7" ; :offset "0x08" ; :name "HC8" .
[] a :hc ; :polarity :tx ; :v "14" ; :h "44" ; :bit "6" ; :offset "0x09" ; :name "HC9" .
[] a :hc ; :polarity :tx ; :v "14" ; :h "47" ; :bit "7" ; :offset "0x09" ; :name "HC9" .
[] a :hc ; :polarity :tx ; :v "14" ; :h "48" ; :bit "0" ; :offset "0x0A" ; :name "HC10" .
[] a :hc ; :polarity :tx ; :v "14" ; :h "51" ; :bit "1" ; :offset "0x0A" ; :name "HC10" .
[] a :hc ; :polarity :tx ; :v "14" ; :h "72" ; :bit "0" ; :offset "0x0B" ; :name "HC11" .
[] a :hc ; :polarity :tx ; :v "14" ; :h "75" ; :bit "1" ; :offset "0x0B" ; :name "HC11" .
[] a :hc ; :polarity :tx ; :v "15" ; :h "19" ; :bit "6" ; :offset "0x0C" ; :name "HC12" .
[] a :hc ; :polarity :tx ; :v "15" ; :h "23" ; :bit "7" ; :offset "0x0C" ; :name "HC12" .
[] a :hc ; :polarity :tx ; :v "15" ; :h "45" ; :bit "6" ; :offset "0x0D" ; :name "HC13" .
[] a :hc ; :polarity :tx ; :v "15" ; :h "47" ; :bit "7" ; :offset "0x0D" ; :name "HC13" .
[] a :hc ; :polarity :tx ; :v "15" ; :h "48" ; :bit "0" ; :offset "0x0E" ; :name "HC14" .
[] a :hc ; :polarity :tx ; :v "15" ; :h "50" ; :bit "1" ; :offset "0x0E" ; :name "HC14" .
[] a :hc ; :polarity :tx ; :v "15" ; :h "72" ; :bit "0" ; :offset "0x0F" ; :name "HC15" .
[] a :hc ; :polarity :tx ; :v "15" ; :h "74" ; :bit "1" ; :offset "0x0F" ; :name "HC15" .
[] a :hc ; :polarity :tx ; :v "16" ; :h "19" ; :bit "6" ; :offset "0x10" ; :name "HC16" .
[] a :hc ; :polarity :tx ; :v "16" ; :h "23" ; :bit "7" ; :offset "0x10" ; :name "HC16" .
[] a :hc ; :polarity :tx ; :v "16" ; :h "24" ; :bit "0" ; :offset "0x11" ; :name "HC17" .
[] a :hc ; :polarity :tx ; :v "16" ; :h "26" ; :bit "1" ; :offset "0x11" ; :name "HC17" .
[] a :hc ; :polarity :tx ; :v "16" ; :h "67" ; :bit "6" ; :offset "0x12" ; :name "HC18" .
[] a :hc ; :polarity :tx ; :v "16" ; :h "71" ; :bit "7" ; :offset "0x12" ; :name "HC18" .
[] a :hc ; :polarity :tx ; :v "16" ; :h "72" ; :bit "0" ; :offset "0x13" ; :name "HC19" .
[] a :hc ; :polarity :tx ; :v "16" ; :h "76" ; :bit "1" ; :offset "0x13" ; :name "HC19" .
[] a :hc ; :polarity :tx ; :v "17" ; :h "19" ; :bit "6" ; :offset "0x14" ; :name "HC20" .
[] a :hc ; :polarity :tx ; :v "17" ; :h "22" ; :bit "7" ; :offset "0x14" ; :name "HC20" .
[] a :hc ; :polarity :tx ; :v "17" ; :h "24" ; :bit "0" ; :offset "0x15" ; :name "HC21" .
[] a :hc ; :polarity :tx ; :v "17" ; :h "27" ; :bit "1" ; :offset "0x15" ; :name "HC21" .
[] a :hc ; :polarity :tx ; :v "17" ; :h "67" ; :bit "6" ; :offset "0x16" ; :name "HC22" .
[] a :hc ; :polarity :tx ; :v "17" ; :h "70" ; :bit "7" ; :offset "0x16" ; :name "HC22" .
[] a :hc ; :polarity :tx ; :v "17" ; :h "73" ; :bit "0" ; :offset "0x17" ; :name "HC23" .
[] a :hc ; :polarity :tx ; :v "17" ; :h "76" ; :bit "1" ; :offset "0x17" ; :name "HC23" .
[] a :hc ; :polarity :tx ; :v "18" ; :h "13" ; :bit "4" ; :offset "0x10" ; :name "HC16" .
[] a :hc ; :polarity :tx ; :v "18" ; :h "17" ; :bit "5" ; :offset "0x10" ; :name "HC16" .
[] a :hc ; :polarity :tx ; :v "18" ; :h "30" ; :bit "2" ; :offset "0x11" ; :name "HC17" .
[] a :hc ; :polarity :tx ; :v "18" ; :h "32" ; :bit "3" ; :offset "0x11" ; :name "HC17" .
[] a :hc ; :polarity :tx ; :v "18" ; :h "61" ; :bit "4" ; :offset "0x12" ; :name "HC18" .
[] a :hc ; :polarity :tx ; :v "18" ; :h "65" ; :bit "5" ; :offset "0x12" ; :name "HC18" .
[] a :hc ; :polarity :tx ; :v "18" ; :h "78" ; :bit "2" ; :offset "0x13" ; :name "HC19" .
[] a :hc ; :polarity :tx ; :v "18" ; :h "82" ; :bit "3" ; :offset "0x13" ; :name "HC19" .
[] a :hc ; :polarity :tx ; :v "19" ; :h "13" ; :bit "4" ; :offset "0x14" ; :name "HC20" .
[] a :hc ; :polarity :tx ; :v "19" ; :h "16" ; :bit "5" ; :offset "0x14" ; :name "HC20" .
[] a :hc ; :polarity :tx ; :v "19" ; :h "30" ; :bit "2" ; :offset "0x15" ; :name "HC21" .
[] a :hc ; :polarity :tx ; :v "19" ; :h "33" ; :bit "3" ; :offset "0x15" ; :name "HC21" .
[] a :hc ; :polarity :tx ; :v "19" ; :h "61" ; :bit "4" ; :offset "0x16" ; :name "HC22" .
[] a :hc ; :polarity :tx ; :v "19" ; :h "64" ; :bit "5" ; :offset "0x16" ; :name "HC22" .
[] a :hc ; :polarity :tx ; :v "19" ; :h "79" ; :bit "2" ; :offset "0x17" ; :name "HC23" .
[] a :hc ; :polarity :tx ; :v "19" ; :h "82" ; :bit "3" ; :offset "0x17" ; :name "HC23" .
[] a :hc ; :polarity :tx ; :v "20" ; :h "7" ; :bit "2" ; :offset "0x10" ; :name "HC16" .
[] a :hc ; :polarity :tx ; :v "20" ; :h "11" ; :bit "3" ; :offset "0x10" ; :name "HC16" .
[] a :hc ; :polarity :tx ; :v "20" ; :h "36" ; :bit "4" ; :offset "0x11" ; :name "HC17" .
[] a :hc ; :polarity :tx ; :v "20" ; :h "38" ; :bit "5" ; :offset "0x11" ; :name "HC17" .
[] a :hc ; :polarity :tx ; :v "20" ; :h "55" ; :bit "2" ; :offset "0x12" ; :name "HC18" .
[] a :hc ; :polarity :tx ; :v "20" ; :h "59" ; :bit "3" ; :offset "0x12" ; :name "HC18" .
[] a :hc ; :polarity :tx ; :v "20" ; :h "84" ; :bit "4" ; :offset "0x13" ; :name "HC19" .
[] a :hc ; :polarity :tx ; :v "20" ; :h "88" ; :bit "5" ; :offset "0x13" ; :name "HC19" .
[] a :hc ; :polarity :tx ; :v "21" ; :h "7" ; :bit "2" ; :offset "0x14" ; :name "HC20" .
[] a :hc ; :polarity :tx ; :v "21" ; :h "10" ; :bit "3" ; :offset "0x14" ; :name "HC20" .
[] a :hc ; :polarity :tx ; :v "21" ; :h "36" ; :bit "4" ; :offset "0x15" ; :name "HC21" .
[] a :hc ; :polarity :tx ; :v "21" ; :h "39" ; :bit "5" ; :offset "0x15" ; :name "HC21" .
[] a :hc ; :polarity :tx ; :v "21" ; :h "55" ; :bit "2" ; :offset "0x16" ; :name "HC22" .
[] a :hc ; :polarity :tx ; :v "21" ; :h "58" ; :bit "3" ; :offset "0x16" ; :name "HC22" .
[] a :hc ; :polarity :tx ; :v "21" ; :h "85" ; :bit "4" ; :offset "0x17" ; :name "HC23" .
[] a :hc ; :polarity :tx ; :v "21" ; :h "88" ; :bit "5" ; :offset "0x17" ; :name "HC23" .
[] a :hc ; :polarity :tx ; :v "22" ; :h "1" ; :bit "0" ; :offset "0x10" ; :name "HC16" .
[] a :hc ; :polarity :tx ; :v "22" ; :h "5" ; :bit "1" ; :offset "0x10" ; :name "HC16" .
[] a :hc ; :polarity :tx ; :v "22" ; :h "42" ; :bit "6" ; :offset "0x11" ; :name "HC17" .
[] a :hc ; :polarity :tx ; :v "22" ; :h "44" ; :bit "7" ; :offset "0x11" ; :name "HC17" .
[] a :hc ; :polarity :tx ; :v "22" ; :h "49" ; :bit "0" ; :offset "0x12" ; :name "HC18" .
[] a :hc ; :polarity :tx ; :v "22" ; :h "53" ; :bit "1" ; :offset "0x12" ; :name "HC18" .
[] a :hc ; :polarity :tx ; :v "22" ; :h "90" ; :bit "6" ; :offset "0x13" ; :name "HC19" .
[] a :hc ; :polarity :tx ; :v "22" ; :h "94" ; :bit "7" ; :offset "0x13" ; :name "HC19" .
[] a :hc ; :polarity :tx ; :v "23" ; :h "1" ; :bit "0" ; :offset "0x14" ; :name "HC20" .
[] a :hc ; :polarity :tx ; :v "23" ; :h "4" ; :bit "1" ; :offset "0x14" ; :name "HC20" .
[] a :hc ; :polarity :tx ; :v "23" ; :h "42" ; :bit "6" ; :offset "0x15" ; :name "HC21" .
[] a :hc ; :polarity :tx ; :v "23" ; :h "45" ; :bit "7" ; :offset "0x15" ; :name "HC21" .
[] a :hc ; :polarity :tx ; :v "23" ; :h "49" ; :bit "0" ; :offset "0x16" ; :name "HC22" .
[] a :hc ; :polarity :tx ; :v "23" ; :h "52" ; :bit "1" ; :offset "0x16" ; :name "HC22" .
[] a :hc ; :polarity :tx ; :v "23" ; :h "91" ; :bit "6" ; :offset "0x17" ; :name "HC23" .
[] a :hc ; :polarity :tx ; :v "23" ; :h "94" ; :bit "7" ; :offset "0x17" ; :name "HC23" .
[] a :hc ; :polarity :rx ; :v "24" ; :h "18" ; :bit "6" ; :offset "0x18" ; :name "HC24" .
[] a :hc ; :polarity :rx ; :v "24" ; :h "21" ; :bit "7" ; :offset "0x18" ; :name "HC24" .
[] a :hc ; :polarity :rx ; :v "24" ; :h "25" ; :bit "0" ; :offset "0x19" ; :name "HC25" .
[] a :hc ; :polarity :rx ; :v "24" ; :h "28" ; :bit "1" ; :offset "0x19" ; :name "HC25" .
[] a :hc ; :polarity :rx ; :v "24" ; :h "66" ; :bit "6" ; :offset "0x1A" ; :name "HC26" .
[] a :hc ; :polarity :rx ; :v "24" ; :h "69" ; :bit "7" ; :offset "0x1A" ; :name "HC26" .
[] a :hc ; :polarity :rx ; :v "24" ; :h "74" ; :bit "0" ; :offset "0x1B" ; :name "HC27" .
[] a :hc ; :polarity :rx ; :v "24" ; :h "77" ; :bit "1" ; :offset "0x1B" ; :name "HC27" .
[] a :hc ; :polarity :rx ; :v "25" ; :h "18" ; :bit "6" ; :offset "0x1C" ; :name "HC28" .
[] a :hc ; :polarity :rx ; :v "25" ; :h "20" ; :bit "7" ; :offset "0x1C" ; :name "HC28" .
[] a :hc ; :polarity :rx ; :v "25" ; :h "25" ; :bit "0" ; :offset "0x1D" ; :name "HC29" .
[] a :hc ; :polarity :rx ; :v "25" ; :h "29" ; :bit "1" ; :offset "0x1D" ; :name "HC29" .
[] a :hc ; :polarity :rx ; :v "25" ; :h "66" ; :bit "6" ; :offset "0x1E" ; :name "HC30" .
[] a :hc ; :polarity :rx ; :v "25" ; :h "68" ; :bit "7" ; :offset "0x1E" ; :name "HC30" .
[] a :hc ; :polarity :rx ; :v "25" ; :h "75" ; :bit "0" ; :offset "0x1F" ; :name "HC31" .
[] a :hc ; :polarity :rx ; :v "25" ; :h "77" ; :bit "1" ; :offset "0x1F" ; :name "HC31" .
[] a :hc ; :polarity :rx ; :v "26" ; :h "12" ; :bit "4" ; :offset "0x18" ; :name "HC24" .
[] a :hc ; :polarity :rx ; :v "26" ; :h "15" ; :bit "5" ; :offset "0x18" ; :name "HC24" .
[] a :hc ; :polarity :rx ; :v "26" ; :h "31" ; :bit "2" ; :offset "0x19" ; :name "HC25" .
[] a :hc ; :polarity :rx ; :v "26" ; :h "34" ; :bit "3" ; :offset "0x19" ; :name "HC25" .
[] a :hc ; :polarity :rx ; :v "26" ; :h "60" ; :bit "4" ; :offset "0x1A" ; :name "HC26" .
[] a :hc ; :polarity :rx ; :v "26" ; :h "63" ; :bit "5" ; :offset "0x1A" ; :name "HC26" .
[] a :hc ; :polarity :rx ; :v "26" ; :h "80" ; :bit "2" ; :offset "0x1B" ; :name "HC27" .
[] a :hc ; :polarity :rx ; :v "26" ; :h "83" ; :bit "3" ; :offset "0x1B" ; :name "HC27" .
[] a :hc ; :polarity :rx ; :v "27" ; :h "12" ; :bit "4" ; :offset "0x1C" ; :name "HC28" .
[] a :hc ; :polarity :rx ; :v "27" ; :h "14" ; :bit "5" ; :offset "0x1C" ; :name "HC28" .
[] a :hc ; :polarity :rx ; :v "27" ; :h "31" ; :bit "2" ; :offset "0x1D" ; :name "HC29" .
[] a :hc ; :polarity :rx ; :v "27" ; :h "35" ; :bit "3" ; :offset "0x1D" ; :name "HC29" .
[] a :hc ; :polarity :rx ; :v "27" ; :h "60" ; :bit "4" ; :offset "0x1E" ; :name "HC30" .
[] a :hc ; :polarity :rx ; :v "27" ; :h "62" ; :bit "5" ; :offset "0x1E" ; :name "HC30" .
[] a :hc ; :polarity :rx ; :v "27" ; :h "81" ; :bit "2" ; :offset "0x1F" ; :name "HC31" .
[] a :hc ; :polarity :rx ; :v "27" ; :h "83" ; :bit "3" ; :offset "0x1F" ; :name "HC31" .
[] a :hc ; :polarity :rx ; :v "28" ; :h "6" ; :bit "2" ; :offset "0x18" ; :name "HC24" .
[] a :hc ; :polarity :rx ; :v "28" ; :h "9" ; :bit "3" ; :offset "0x18" ; :name "HC24" .
[] a :hc ; :polarity :rx ; :v "28" ; :h "37" ; :bit "4" ; :offset "0x19" ; :name "HC25" .
[] a :hc ; :polarity :rx ; :v "28" ; :h "40" ; :bit "5" ; :offset "0x19" ; :name "HC25" .
[] a :hc ; :polarity :rx ; :v "28" ; :h "54" ; :bit "2" ; :offset "0x1A" ; :name "HC26" .
[] a :hc ; :polarity :rx ; :v "28" ; :h "57" ; :bit "3" ; :offset "0x1A" ; :name "HC26" .
[] a :hc ; :polarity :rx ; :v "28" ; :h "86" ; :bit "4" ; :offset "0x1B" ; :name "HC27" .
[] a :hc ; :polarity :rx ; :v "28" ; :h "89" ; :bit "5" ; :offset "0x1B" ; :name "HC27" .
[] a :hc ; :polarity :rx ; :v "29" ; :h "6" ; :bit "2" ; :offset "0x1C" ; :name "HC28" .
[] a :hc ; :polarity :rx ; :v "29" ; :h "8" ; :bit "3" ; :offset "0x1C" ; :name "HC28" .
[] a :hc ; :polarity :rx ; :v "29" ; :h "37" ; :bit "4" ; :offset "0x1D" ; :name "HC29" .
[] a :hc ; :polarity :rx ; :v "29" ; :h "41" ; :bit "5" ; :offset "0x1D" ; :name "HC29" .
[] a :hc ; :polarity :rx ; :v "29" ; :h "54" ; :bit "2" ; :offset "0x1E" ; :name "HC30" .
[] a :hc ; :polarity :rx ; :v "29" ; :h "56" ; :bit "3" ; :offset "0x1E" ; :name "HC30" .
[] a :hc ; :polarity :rx ; :v "29" ; :h "87" ; :bit "4" ; :offset "0x1F" ; :name "HC31" .
[] a :hc ; :polarity :rx ; :v "29" ; :h "89" ; :bit "5" ; :offset "0x1F" ; :name "HC31" .
[] a :hc ; :polarity :rx ; :v "30" ; :h "0" ; :bit "0" ; :offset "0x18" ; :name "HC24" .
[] a :hc ; :polarity :rx ; :v "30" ; :h "3" ; :bit "1" ; :offset "0x18" ; :name "HC24" .
[] a :hc ; :polarity :rx ; :v "30" ; :h "43" ; :bit "6" ; :offset "0x19" ; :name "HC25" .
[] a :hc ; :polarity :rx ; :v "30" ; :h "46" ; :bit "7" ; :offset "0x19" ; :name "HC25" .
[] a :hc ; :polarity :rx ; :v "30" ; :h "48" ; :bit "0" ; :offset "0x1A" ; :name "HC26" .
[] a :hc ; :polarity :rx ; :v "30" ; :h "51" ; :bit "1" ; :offset "0x1A" ; :name "HC26" .
[] a :hc ; :polarity :rx ; :v "30" ; :h "92" ; :bit "6" ; :offset "0x1B" ; :name "HC27" .
[] a :hc ; :polarity :rx ; :v "30" ; :h "95" ; :bit "7" ; :offset "0x1B" ; :name "HC27" .
[] a :hc ; :polarity :rx ; :v "31" ; :h "0" ; :bit "0" ; :offset "0x1C" ; :name "HC28" .
[] a :hc ; :polarity :rx ; :v "31" ; :h "2" ; :bit "1" ; :offset "0x1C" ; :name "HC28" .
[] a :hc ; :polarity :rx ; :v "31" ; :h "43" ; :bit "6" ; :offset "0x1D" ; :name "HC29" .
[] a :hc ; :polarity :rx ; :v "31" ; :h "47" ; :bit "7" ; :offset "0x1D" ; :name "HC29" .
[] a :hc ; :polarity :rx ; :v "31" ; :h "48" ; :bit "0" ; :offset "0x1E" ; :name "HC30" .
[] a :hc ; :polarity :rx ; :v "31" ; :h "50" ; :bit "1" ; :offset "0x1E" ; :name "HC30" .
[] a :hc ; :polarity :rx ; :v "31" ; :h "93" ; :bit "6" ; :offset "0x1F" ; :name "HC31" .
[] a :hc ; :polarity :rx ; :v "31" ; :h "95" ; :bit "7" ; :offset "0x1F" ; :name "HC31" .
[] a :hc ; :polarity :rx ; :v "32" ; :h "0" ; :bit "0" ; :offset "0x20" ; :name "HC32" .
[] a :hc ; :polarity :rx ; :v "32" ; :h "2" ; :bit "1" ; :offset "0x20" ; :name "HC32" .
[] a :hc ; :polarity :rx ; :v "32" ; :h "45" ; :bit "6" ; :offset "0x21" ; :name "HC33" .
[] a :hc ; :polarity :rx ; :v "32" ; :h "47" ; :bit "7" ; :offset "0x21" ; :name "HC33" .
[] a :hc ; :polarity :rx ; :v "32" ; :h "69" ; :bit "6" ; :offset "0x22" ; :name "HC34" .
[] a :hc ; :polarity :rx ; :v "32" ; :h "71" ; :bit "7" ; :offset "0x22" ; :name "HC34" .
[] a :hc ; :polarity :rx ; :v "32" ; :h "72" ; :bit "0" ; :offset "0x23" ; :name "HC35" .
[] a :hc ; :polarity :rx ; :v "32" ; :h "76" ; :bit "1" ; :offset "0x23" ; :name "HC35" .
[] a :hc ; :polarity :rx ; :v "33" ; :h "0" ; :bit "0" ; :offset "0x24" ; :name "HC36" .
[] a :hc ; :polarity :rx ; :v "33" ; :h "3" ; :bit "1" ; :offset "0x24" ; :name "HC36" .
[] a :hc ; :polarity :rx ; :v "33" ; :h "44" ; :bit "6" ; :offset "0x25" ; :name "HC37" .
[] a :hc ; :polarity :rx ; :v "33" ; :h "47" ; :bit "7" ; :offset "0x25" ; :name "HC37" .
[] a :hc ; :polarity :rx ; :v "33" ; :h "68" ; :bit "6" ; :offset "0x26" ; :name "HC38" .
[] a :hc ; :polarity :rx ; :v "33" ; :h "71" ; :bit "7" ; :offset "0x26" ; :name "HC38" .
[] a :hc ; :polarity :rx ; :v "33" ; :h "73" ; :bit "0" ; :offset "0x27" ; :name "HC39" .
[] a :hc ; :polarity :rx ; :v "33" ; :h "76" ; :bit "1" ; :offset "0x27" ; :name "HC39" .
[] a :hc ; :polarity :rx ; :v "34" ; :h "6" ; :bit "2" ; :offset "0x20" ; :name "HC32" .
[] a :hc ; :polarity :rx ; :v "34" ; :h "8" ; :bit "3" ; :offset "0x20" ; :name "HC32" .
[] a :hc ; :polarity :rx ; :v "34" ; :h "39" ; :bit "4" ; :offset "0x21" ; :name "HC33" .
[] a :hc ; :polarity :rx ; :v "34" ; :h "41" ; :bit "5" ; :offset "0x21" ; :name "HC33" .
[] a :hc ; :polarity :rx ; :v "34" ; :h "63" ; :bit "4" ; :offset "0x22" ; :name "HC34" .
[] a :hc ; :polarity :rx ; :v "34" ; :h "65" ; :bit "5" ; :offset "0x22" ; :name "HC34" .
[] a :hc ; :polarity :rx ; :v "34" ; :h "78" ; :bit "2" ; :offset "0x23" ; :name "HC35" .
[] a :hc ; :polarity :rx ; :v "34" ; :h "82" ; :bit "3" ; :offset "0x23" ; :name "HC35" .
[] a :hc ; :polarity :rx ; :v "35" ; :h "6" ; :bit "2" ; :offset "0x24" ; :name "HC36" .
[] a :hc ; :polarity :rx ; :v "35" ; :h "9" ; :bit "3" ; :offset "0x24" ; :name "HC36" .
[] a :hc ; :polarity :rx ; :v "35" ; :h "38" ; :bit "4" ; :offset "0x25" ; :name "HC37" .
[] a :hc ; :polarity :rx ; :v "35" ; :h "41" ; :bit "5" ; :offset "0x25" ; :name "HC37" .
[] a :hc ; :polarity :rx ; :v "35" ; :h "62" ; :bit "4" ; :offset "0x26" ; :name "HC38" .
[] a :hc ; :polarity :rx ; :v "35" ; :h "65" ; :bit "5" ; :offset "0x26" ; :name "HC38" .
[] a :hc ; :polarity :rx ; :v "35" ; :h "79" ; :bit "2" ; :offset "0x27" ; :name "HC39" .
[] a :hc ; :polarity :rx ; :v "35" ; :h "82" ; :bit "3" ; :offset "0x27" ; :name "HC39" .
[] a :hc ; :polarity :rx ; :v "36" ; :h "12" ; :bit "4" ; :offset "0x20" ; :name "HC32" .
[] a :hc ; :polarity :rx ; :v "36" ; :h "14" ; :bit "5" ; :offset "0x20" ; :name "HC32" .
[] a :hc ; :polarity :rx ; :v "36" ; :h "33" ; :bit "2" ; :offset "0x21" ; :name "HC33" .
[] a :hc ; :polarity :rx ; :v "36" ; :h "35" ; :bit "3" ; :offset "0x21" ; :name "HC33" .
[] a :hc ; :polarity :rx ; :v "36" ; :h "57" ; :bit "2" ; :offset "0x22" ; :name "HC34" .
[] a :hc ; :polarity :rx ; :v "36" ; :h "59" ; :bit "3" ; :offset "0x22" ; :name "HC34" .
[] a :hc ; :polarity :rx ; :v "36" ; :h "84" ; :bit "4" ; :offset "0x23" ; :name "HC35" .
[] a :hc ; :polarity :rx ; :v "36" ; :h "88" ; :bit "5" ; :offset "0x23" ; :name "HC35" .
[] a :hc ; :polarity :rx ; :v "37" ; :h "12" ; :bit "4" ; :offset "0x24" ; :name "HC36" .
[] a :hc ; :polarity :rx ; :v "37" ; :h "15" ; :bit "5" ; :offset "0x24" ; :name "HC36" .
[] a :hc ; :polarity :rx ; :v "37" ; :h "32" ; :bit "2" ; :offset "0x25" ; :name "HC37" .
[] a :hc ; :polarity :rx ; :v "37" ; :h "35" ; :bit "3" ; :offset "0x25" ; :name "HC37" .
[] a :hc ; :polarity :rx ; :v "37" ; :h "56" ; :bit "2" ; :offset "0x26" ; :name "HC38" .
[] a :hc ; :polarity :rx ; :v "37" ; :h "59" ; :bit "3" ; :offset "0x26" ; :name "HC38" .
[] a :hc ; :polarity :rx ; :v "37" ; :h "85" ; :bit "4" ; :offset "0x27" ; :name "HC39" .
[] a :hc ; :polarity :rx ; :v "37" ; :h "88" ; :bit "5" ; :offset "0x27" ; :name "HC39" .
[] a :hc ; :polarity :rx ; :v "38" ; :h "18" ; :bit "6" ; :offset "0x20" ; :name "HC32" .
[] a :hc ; :polarity :rx ; :v "38" ; :h "20" ; :bit "7" ; :offset "0x20" ; :name "HC32" .
[] a :hc ; :polarity :rx ; :v "38" ; :h "27" ; :bit "0" ; :offset "0x21" ; :name "HC33" .
[] a :hc ; :polarity :rx ; :v "38" ; :h "29" ; :bit "1" ; :offset "0x21" ; :name "HC33" .
[] a :hc ; :polarity :rx ; :v "38" ; :h "51" ; :bit "0" ; :offset "0x22" ; :name "HC34" .
[] a :hc ; :polarity :rx ; :v "38" ; :h "53" ; :bit "1" ; :offset "0x22" ; :name "HC34" .
[] a :hc ; :polarity :rx ; :v "38" ; :h "90" ; :bit "6" ; :offset "0x23" ; :name "HC35" .
[] a :hc ; :polarity :rx ; :v "38" ; :h "94" ; :bit "7" ; :offset "0x23" ; :name "HC35" .
[] a :hc ; :polarity :rx ; :v "39" ; :h "18" ; :bit "6" ; :offset "0x24" ; :name "HC36" .
[] a :hc ; :polarity :rx ; :v "39" ; :h "21" ; :bit "7" ; :offset "0x24" ; :name "HC36" .
[] a :hc ; :polarity :rx ; :v "39" ; :h "26" ; :bit "0" ; :offset "0x25" ; :name "HC37" .
[] a :hc ; :polarity :rx ; :v "39" ; :h "29" ; :bit "1" ; :offset "0x25" ; :name "HC37" .
[] a :hc ; :polarity :rx ; :v "39" ; :h "50" ; :bit "0" ; :offset "0x26" ; :name "HC38" .
[] a :hc ; :polarity :rx ; :v "39" ; :h "53" ; :bit "1" ; :offset "0x26" ; :name "HC38" .
[] a :hc ; :polarity :rx ; :v "39" ; :h "91" ; :bit "6" ; :offset "0x27" ; :name "HC39" .
[] a :hc ; :polarity :rx ; :v "39" ; :h "94" ; :bit "7" ; :offset "0x27" ; :name "HC39" .
[] a :hc ; :polarity :tx ; :v "40" ; :h "1" ; :bit "0" ; :offset "0x28" ; :name "HC40" .
[] a :hc ; :polarity :tx ; :v "40" ; :h "4" ; :bit "1" ; :offset "0x28" ; :name "HC40" .
[] a :hc ; :polarity :tx ; :v "40" ; :h "43" ; :bit "6" ; :offset "0x29" ; :name "HC41" .
[] a :hc ; :polarity :tx ; :v "40" ; :h "46" ; :bit "7" ; :offset "0x29" ; :name "HC41" .
[] a :hc ; :polarity :tx ; :v "40" ; :h "67" ; :bit "6" ; :offset "0x2A" ; :name "HC42" .
[] a :hc ; :polarity :tx ; :v "40" ; :h "70" ; :bit "7" ; :offset "0x2A" ; :name "HC42" .
[] a :hc ; :polarity :tx ; :v "40" ; :h "74" ; :bit "0" ; :offset "0x2B" ; :name "HC43" .
[] a :hc ; :polarity :tx ; :v "40" ; :h "77" ; :bit "1" ; :offset "0x2B" ; :name "HC43" .
[] a :hc ; :polarity :tx ; :v "41" ; :h "1" ; :bit "0" ; :offset "0x2C" ; :name "HC44" .
[] a :hc ; :polarity :tx ; :v "41" ; :h "5" ; :bit "1" ; :offset "0x2C" ; :name "HC44" .
[] a :hc ; :polarity :tx ; :v "41" ; :h "42" ; :bit "6" ; :offset "0x2D" ; :name "HC45" .
[] a :hc ; :polarity :tx ; :v "41" ; :h "46" ; :bit "7" ; :offset "0x2D" ; :name "HC45" .
[] a :hc ; :polarity :tx ; :v "41" ; :h "66" ; :bit "6" ; :offset "0x2E" ; :name "HC46" .
[] a :hc ; :polarity :tx ; :v "41" ; :h "70" ; :bit "7" ; :offset "0x2E" ; :name "HC46" .
[] a :hc ; :polarity :tx ; :v "41" ; :h "75" ; :bit "0" ; :offset "0x2F" ; :name "HC47" .
[] a :hc ; :polarity :tx ; :v "41" ; :h "77" ; :bit "1" ; :offset "0x2F" ; :name "HC47" .
[] a :hc ; :polarity :tx ; :v "42" ; :h "7" ; :bit "2" ; :offset "0x28" ; :name "HC40" .
[] a :hc ; :polarity :tx ; :v "42" ; :h "10" ; :bit "3" ; :offset "0x28" ; :name "HC40" .
[] a :hc ; :polarity :tx ; :v "42" ; :h "37" ; :bit "4" ; :offset "0x29" ; :name "HC41" .
[] a :hc ; :polarity :tx ; :v "42" ; :h "40" ; :bit "5" ; :offset "0x29" ; :name "HC41" .
[] a :hc ; :polarity :tx ; :v "42" ; :h "61" ; :bit "4" ; :offset "0x2A" ; :name "HC42" .
[] a :hc ; :polarity :tx ; :v "42" ; :h "64" ; :bit "5" ; :offset "0x2A" ; :name "HC42" .
[] a :hc ; :polarity :tx ; :v "42" ; :h "80" ; :bit "2" ; :offset "0x2B" ; :name "HC43" .
[] a :hc ; :polarity :tx ; :v "42" ; :h "83" ; :bit "3" ; :offset "0x2B" ; :name "HC43" .
[] a :hc ; :polarity :tx ; :v "43" ; :h "7" ; :bit "2" ; :offset "0x2C" ; :name "HC44" .
[] a :hc ; :polarity :tx ; :v "43" ; :h "11" ; :bit "3" ; :offset "0x2C" ; :name "HC44" .
[] a :hc ; :polarity :tx ; :v "43" ; :h "36" ; :bit "4" ; :offset "0x2D" ; :name "HC45" .
[] a :hc ; :polarity :tx ; :v "43" ; :h "40" ; :bit "5" ; :offset "0x2D" ; :name "HC45" .
[] a :hc ; :polarity :tx ; :v "43" ; :h "60" ; :bit "4" ; :offset "0x2E" ; :name "HC46" .
[] a :hc ; :polarity :tx ; :v "43" ; :h "64" ; :bit "5" ; :offset "0x2E" ; :name "HC46" .
[] a :hc ; :polarity :tx ; :v "43" ; :h "81" ; :bit "2" ; :offset "0x2F" ; :name "HC47" .
[] a :hc ; :polarity :tx ; :v "43" ; :h "83" ; :bit "3" ; :offset "0x2F" ; :name "HC47" .
[] a :hc ; :polarity :tx ; :v "44" ; :h "13" ; :bit "4" ; :offset "0x28" ; :name "HC40" .
[] a :hc ; :polarity :tx ; :v "44" ; :h "16" ; :bit "5" ; :offset "0x28" ; :name "HC40" .
[] a :hc ; :polarity :tx ; :v "44" ; :h "31" ; :bit "2" ; :offset "0x29" ; :name "HC41" .
[] a :hc ; :polarity :tx ; :v "44" ; :h "34" ; :bit "3" ; :offset "0x29" ; :name "HC41" .
[] a :hc ; :polarity :tx ; :v "44" ; :h "55" ; :bit "2" ; :offset "0x2A" ; :name "HC42" .
[] a :hc ; :polarity :tx ; :v "44" ; :h "58" ; :bit "3" ; :offset "0x2A" ; :name "HC42" .
[] a :hc ; :polarity :tx ; :v "44" ; :h "86" ; :bit "4" ; :offset "0x2B" ; :name "HC43" .
[] a :hc ; :polarity :tx ; :v "44" ; :h "89" ; :bit "5" ; :offset "0x2B" ; :name "HC43" .
[] a :hc ; :polarity :tx ; :v "45" ; :h "13" ; :bit "4" ; :offset "0x2C" ; :name "HC44" .
[] a :hc ; :polarity :tx ; :v "45" ; :h "17" ; :bit "5" ; :offset "0x2C" ; :name "HC44" .
[] a :hc ; :polarity :tx ; :v "45" ; :h "30" ; :bit "2" ; :offset "0x2D" ; :name "HC45" .
[] a :hc ; :polarity :tx ; :v "45" ; :h "34" ; :bit "3" ; :offset "0x2D" ; :name "HC45" .
[] a :hc ; :polarity :tx ; :v "45" ; :h "54" ; :bit "2" ; :offset "0x2E" ; :name "HC46" .
[] a :hc ; :polarity :tx ; :v "45" ; :h "58" ; :bit "3" ; :offset "0x2E" ; :name "HC46" .
[] a :hc ; :polarity :tx ; :v "45" ; :h "87" ; :bit "4" ; :offset "0x2F" ; :name "HC47" .
[] a :hc ; :polarity :tx ; :v "45" ; :h "89" ; :bit "5" ; :offset "0x2F" ; :name "HC47" .
[] a :hc ; :polarity :tx ; :v "46" ; :h "19" ; :bit "6" ; :offset "0x28" ; :name "HC40" .
[] a :hc ; :polarity :tx ; :v "46" ; :h "22" ; :bit "7" ; :offset "0x28" ; :name "HC40" .
[] a :hc ; :polarity :tx ; :v "46" ; :h "25" ; :bit "0" ; :offset "0x29" ; :name "HC41" .
[] a :hc ; :polarity :tx ; :v "46" ; :h "28" ; :bit "1" ; :offset "0x29" ; :name "HC41" .
[] a :hc ; :polarity :tx ; :v "46" ; :h "49" ; :bit "0" ; :offset "0x2A" ; :name "HC42" .
[] a :hc ; :polarity :tx ; :v "46" ; :h "52" ; :bit "1" ; :offset "0x2A" ; :name "HC42" .
[] a :hc ; :polarity :tx ; :v "46" ; :h "92" ; :bit "6" ; :offset "0x2B" ; :name "HC43" .
[] a :hc ; :polarity :tx ; :v "46" ; :h "95" ; :bit "7" ; :offset "0x2B" ; :name "HC43" .
[] a :hc ; :polarity :tx ; :v "47" ; :h "19" ; :bit "6" ; :offset "0x2C" ; :name "HC44" .
[] a :hc ; :polarity :tx ; :v "47" ; :h "23" ; :bit "7" ; :offset "0x2C" ; :name "HC44" .
[] a :hc ; :polarity :tx ; :v "47" ; :h "24" ; :bit "0" ; :offset "0x2D" ; :name "HC45" .
[] a :hc ; :polarity :tx ; :v "47" ; :h "28" ; :bit "1" ; :offset "0x2D" ; :name "HC45" .
[] a :hc ; :polarity :tx ; :v "47" ; :h "48" ; :bit "0" ; :offset "0x2E" ; :name "HC46" .
[] a :hc ; :polarity :tx ; :v "47" ; :h "52" ; :bit "1" ; :offset "0x2E" ; :name "HC46" .
[] a :hc ; :polarity :tx ; :v "47" ; :h "93" ; :bit "6" ; :offset "0x2F" ; :name "HC47" .
[] a :hc ; :polarity :tx ; :v "47" ; :h "95" ; :bit "7" ; :offset "0x2F" ; :name "HC47" .
[] a :hc ; :polarity :tx ; :v "48" ; :h "19" ; :bit "6" ; :offset "0x30" ; :name "HC48" .
[] a :hc ; :polarity :tx ; :v "48" ; :h "23" ; :bit "7" ; :offset "0x30" ; :name "HC48" .
[] a :hc ; :polarity :tx ; :v "48" ; :h "43" ; :bit "6" ; :offset "0x31" ; :name "HC49" .
[] a :hc ; :polarity :tx ; :v "48" ; :h "47" ; :bit "7" ; :offset "0x31" ; :name "HC49" .
[] a :hc ; :polarity :tx ; :v "48" ; :h "69" ; :bit "6" ; :offset "0x32" ; :name "HC50" .
[] a :hc ; :polarity :tx ; :v "48" ; :h "71" ; :bit "7" ; :offset "0x32" ; :name "HC50" .
[] a :hc ; :polarity :tx ; :v "48" ; :h "91" ; :bit "6" ; :offset "0x33" ; :name "HC51" .
[] a :hc ; :polarity :tx ; :v "48" ; :h "95" ; :bit "7" ; :offset "0x33" ; :name "HC51" .
[] a :hc ; :polarity :tx ; :v "49" ; :h "19" ; :bit "6" ; :offset "0x34" ; :name "HC52" .
[] a :hc ; :polarity :tx ; :v "49" ; :h "22" ; :bit "7" ; :offset "0x34" ; :name "HC52" .
[] a :hc ; :polarity :tx ; :v "49" ; :h "43" ; :bit "6" ; :offset "0x35" ; :name "HC53" .
[] a :hc ; :polarity :tx ; :v "49" ; :h "46" ; :bit "7" ; :offset "0x35" ; :name "HC53" .
[] a :hc ; :polarity :tx ; :v "49" ; :h "68" ; :bit "6" ; :offset "0x36" ; :name "HC54" .
[] a :hc ; :polarity :tx ; :v "49" ; :h "71" ; :bit "7" ; :offset "0x36" ; :name "HC54" .
[] a :hc ; :polarity :tx ; :v "49" ; :h "91" ; :bit "6" ; :offset "0x37" ; :name "HC55" .
[] a :hc ; :polarity :tx ; :v "49" ; :h "94" ; :bit "7" ; :offset "0x37" ; :name "HC55" .
[] a :hc ; :polarity :tx ; :v "50" ; :h "13" ; :bit "4" ; :offset "0x30" ; :name "HC48" .
[] a :hc ; :polarity :tx ; :v "50" ; :h "17" ; :bit "5" ; :offset "0x30" ; :name "HC48" .
[] a :hc ; :polarity :tx ; :v "50" ; :h "37" ; :bit "4" ; :offset "0x31" ; :name "HC49" .
[] a :hc ; :polarity :tx ; :v "50" ; :h "41" ; :bit "5" ; :offset "0x31" ; :name "HC49" .
[] a :hc ; :polarity :tx ; :v "50" ; :h "63" ; :bit "4" ; :offset "0x32" ; :name "HC50" .
[] a :hc ; :polarity :tx ; :v "50" ; :h "65" ; :bit "5" ; :offset "0x32" ; :name "HC50" .
[] a :hc ; :polarity :tx ; :v "50" ; :h "85" ; :bit "4" ; :offset "0x33" ; :name "HC51" .
[] a :hc ; :polarity :tx ; :v "50" ; :h "89" ; :bit "5" ; :offset "0x33" ; :name "HC51" .
[] a :hc ; :polarity :tx ; :v "51" ; :h "13" ; :bit "4" ; :offset "0x34" ; :name "HC52" .
[] a :hc ; :polarity :tx ; :v "51" ; :h "16" ; :bit "5" ; :offset "0x34" ; :name "HC52" .
[] a :hc ; :polarity :tx ; :v "51" ; :h "37" ; :bit "4" ; :offset "0x35" ; :name "HC53" .
[] a :hc ; :polarity :tx ; :v "51" ; :h "40" ; :bit "5" ; :offset "0x35" ; :name "HC53" .
[] a :hc ; :polarity :tx ; :v "51" ; :h "62" ; :bit "4" ; :offset "0x36" ; :name "HC54" .
[] a :hc ; :polarity :tx ; :v "51" ; :h "65" ; :bit "5" ; :offset "0x36" ; :name "HC54" .
[] a :hc ; :polarity :tx ; :v "51" ; :h "85" ; :bit "4" ; :offset "0x37" ; :name "HC55" .
[] a :hc ; :polarity :tx ; :v "51" ; :h "88" ; :bit "5" ; :offset "0x37" ; :name "HC55" .
[] a :hc ; :polarity :tx ; :v "52" ; :h "7" ; :bit "2" ; :offset "0x30" ; :name "HC48" .
[] a :hc ; :polarity :tx ; :v "52" ; :h "11" ; :bit "3" ; :offset "0x30" ; :name "HC48" .
[] a :hc ; :polarity :tx ; :v "52" ; :h "31" ; :bit "2" ; :offset "0x31" ; :name "HC49" .
[] a :hc ; :polarity :tx ; :v "52" ; :h "35" ; :bit "3" ; :offset "0x31" ; :name "HC49" .
[] a :hc ; :polarity :tx ; :v "52" ; :h "57" ; :bit "2" ; :offset "0x32" ; :name "HC50" .
[] a :hc ; :polarity :tx ; :v "52" ; :h "59" ; :bit "3" ; :offset "0x32" ; :name "HC50" .
[] a :hc ; :polarity :tx ; :v "52" ; :h "79" ; :bit "2" ; :offset "0x33" ; :name "HC51" .
[] a :hc ; :polarity :tx ; :v "52" ; :h "83" ; :bit "3" ; :offset "0x33" ; :name "HC51" .
[] a :hc ; :polarity :tx ; :v "53" ; :h "7" ; :bit "2" ; :offset "0x34" ; :name "HC52" .
[] a :hc ; :polarity :tx ; :v "53" ; :h "10" ; :bit "3" ; :offset "0x34" ; :name "HC52" .
[] a :hc ; :polarity :tx ; :v "53" ; :h "31" ; :bit "2" ; :offset "0x35" ; :name "HC53" .
[] a :hc ; :polarity :tx ; :v "53" ; :h "34" ; :bit "3" ; :offset "0x35" ; :name "HC53" .
[] a :hc ; :polarity :tx ; :v "53" ; :h "56" ; :bit "2" ; :offset "0x36" ; :name "HC54" .
[] a :hc ; :polarity :tx ; :v "53" ; :h "59" ; :bit "3" ; :offset "0x36" ; :name "HC54" .
[] a :hc ; :polarity :tx ; :v "53" ; :h "79" ; :bit "2" ; :offset "0x37" ; :name "HC55" .
[] a :hc ; :polarity :tx ; :v "53" ; :h "82" ; :bit "3" ; :offset "0x37" ; :name "HC55" .
[] a :hc ; :polarity :tx ; :v "54" ; :h "1" ; :bit "0" ; :offset "0x30" ; :name "HC48" .
[] a :hc ; :polarity :tx ; :v "54" ; :h "5" ; :bit "1" ; :offset "0x30" ; :name "HC48" .
[] a :hc ; :polarity :tx ; :v "54" ; :h "25" ; :bit "0" ; :offset "0x31" ; :name "HC49" .
[] a :hc ; :polarity :tx ; :v "54" ; :h "29" ; :bit "1" ; :offset "0x31" ; :name "HC49" .
[] a :hc ; :polarity :tx ; :v "54" ; :h "51" ; :bit "0" ; :offset "0x32" ; :name "HC50" .
[] a :hc ; :polarity :tx ; :v "54" ; :h "53" ; :bit "1" ; :offset "0x32" ; :name "HC50" .
[] a :hc ; :polarity :tx ; :v "54" ; :h "73" ; :bit "0" ; :offset "0x33" ; :name "HC51" .
[] a :hc ; :polarity :tx ; :v "54" ; :h "77" ; :bit "1" ; :offset "0x33" ; :name "HC51" .
[] a :hc ; :polarity :tx ; :v "55" ; :h "1" ; :bit "0" ; :offset "0x34" ; :name "HC52" .
[] a :hc ; :polarity :tx ; :v "55" ; :h "4" ; :bit "1" ; :offset "0x34" ; :name "HC52" .
[] a :hc ; :polarity :tx ; :v "55" ; :h "25" ; :bit "0" ; :offset "0x35" ; :name "HC53" .
[] a :hc ; :polarity :tx ; :v "55" ; :h "28" ; :bit "1" ; :offset "0x35" ; :name "HC53" .
[] a :hc ; :polarity :tx ; :v "55" ; :h "50" ; :bit "0" ; :offset "0x36" ; :name "HC54" .
[] a :hc ; :polarity :tx ; :v "55" ; :h "53" ; :bit "1" ; :offset "0x36" ; :name "HC54" .
[] a :hc ; :polarity :tx ; :v "55" ; :h "73" ; :bit "0" ; :offset "0x37" ; :name "HC55" .
[] a :hc ; :polarity :tx ; :v "55" ; :h "76" ; :bit "1" ; :offset "0x37" ; :name "HC55" .
[] a :hc ; :polarity :tx ; :v "56" ; :h "18" ; :bit "6" ; :offset "0x38" ; :name "HC56" .
[] a :hc ; :polarity :tx ; :v "56" ; :h "21" ; :bit "7" ; :offset "0x38" ; :name "HC56" .
[] a :hc ; :polarity :tx ; :v "56" ; :h "42" ; :bit "6" ; :offset "0x39" ; :name "HC57" .
[] a :hc ; :polarity :tx ; :v "56" ; :h "45" ; :bit "7" ; :offset "0x39" ; :name "HC57" .
[] a :hc ; :polarity :tx ; :v "56" ; :h "67" ; :bit "6" ; :offset "0x3A" ; :name "HC58" .
[] a :hc ; :polarity :tx ; :v "56" ; :h "70" ; :bit "7" ; :offset "0x3A" ; :name "HC58" .
[] a :hc ; :polarity :tx ; :v "56" ; :h "90" ; :bit "6" ; :offset "0x3B" ; :name "HC59" .
[] a :hc ; :polarity :tx ; :v "56" ; :h "93" ; :bit "7" ; :offset "0x3B" ; :name "HC59" .
[] a :hc ; :polarity :tx ; :v "57" ; :h "18" ; :bit "6" ; :offset "0x3C" ; :name "HC60" .
[] a :hc ; :polarity :tx ; :v "57" ; :h "20" ; :bit "7" ; :offset "0x3C" ; :name "HC60" .
[] a :hc ; :polarity :tx ; :v "57" ; :h "42" ; :bit "6" ; :offset "0x3D" ; :name "HC61" .
[] a :hc ; :polarity :tx ; :v "57" ; :h "44" ; :bit "7" ; :offset "0x3D" ; :name "HC61" .
[] a :hc ; :polarity :tx ; :v "57" ; :h "66" ; :bit "6" ; :offset "0x3E" ; :name "HC62" .
[] a :hc ; :polarity :tx ; :v "57" ; :h "70" ; :bit "7" ; :offset "0x3E" ; :name "HC62" .
[] a :hc ; :polarity :tx ; :v "57" ; :h "90" ; :bit "6" ; :offset "0x3F" ; :name "HC63" .
[] a :hc ; :polarity :tx ; :v "57" ; :h "92" ; :bit "7" ; :offset "0x3F" ; :name "HC63" .
[] a :hc ; :polarity :tx ; :v "58" ; :h "12" ; :bit "4" ; :offset "0x38" ; :name "HC56" .
[] a :hc ; :polarity :tx ; :v "58" ; :h "15" ; :bit "5" ; :offset "0x38" ; :name "HC56" .
[] a :hc ; :polarity :tx ; :v "58" ; :h "36" ; :bit "4" ; :offset "0x39" ; :name "HC57" .
[] a :hc ; :polarity :tx ; :v "58" ; :h "39" ; :bit "5" ; :offset "0x39" ; :name "HC57" .
[] a :hc ; :polarity :tx ; :v "58" ; :h "61" ; :bit "4" ; :offset "0x3A" ; :name "HC58" .
[] a :hc ; :polarity :tx ; :v "58" ; :h "64" ; :bit "5" ; :offset "0x3A" ; :name "HC58" .
[] a :hc ; :polarity :tx ; :v "58" ; :h "84" ; :bit "4" ; :offset "0x3B" ; :name "HC59" .
[] a :hc ; :polarity :tx ; :v "58" ; :h "87" ; :bit "5" ; :offset "0x3B" ; :name "HC59" .
[] a :hc ; :polarity :tx ; :v "59" ; :h "12" ; :bit "4" ; :offset "0x3C" ; :name "HC60" .
[] a :hc ; :polarity :tx ; :v "59" ; :h "14" ; :bit "5" ; :offset "0x3C" ; :name "HC60" .
[] a :hc ; :polarity :tx ; :v "59" ; :h "36" ; :bit "4" ; :offset "0x3D" ; :name "HC61" .
[] a :hc ; :polarity :tx ; :v "59" ; :h "38" ; :bit "5" ; :offset "0x3D" ; :name "HC61" .
[] a :hc ; :polarity :tx ; :v "59" ; :h "60" ; :bit "4" ; :offset "0x3E" ; :name "HC62" .
[] a :hc ; :polarity :tx ; :v "59" ; :h "64" ; :bit "5" ; :offset "0x3E" ; :name "HC62" .
[] a :hc ; :polarity :tx ; :v "59" ; :h "84" ; :bit "4" ; :offset "0x3F" ; :name "HC63" .
[] a :hc ; :polarity :tx ; :v "59" ; :h "86" ; :bit "5" ; :offset "0x3F" ; :name "HC63" .
[] a :hc ; :polarity :tx ; :v "60" ; :h "6" ; :bit "2" ; :offset "0x38" ; :name "HC56" .
[] a :hc ; :polarity :tx ; :v "60" ; :h "9" ; :bit "3" ; :offset "0x38" ; :name "HC56" .
[] a :hc ; :polarity :tx ; :v "60" ; :h "30" ; :bit "2" ; :offset "0x39" ; :name "HC57" .
[] a :hc ; :polarity :tx ; :v "60" ; :h "33" ; :bit "3" ; :offset "0x39" ; :name "HC57" .
[] a :hc ; :polarity :tx ; :v "60" ; :h "55" ; :bit "2" ; :offset "0x3A" ; :name "HC58" .
[] a :hc ; :polarity :tx ; :v "60" ; :h "58" ; :bit "3" ; :offset "0x3A" ; :name "HC58" .
[] a :hc ; :polarity :tx ; :v "60" ; :h "78" ; :bit "2" ; :offset "0x3B" ; :name "HC59" .
[] a :hc ; :polarity :tx ; :v "60" ; :h "81" ; :bit "3" ; :offset "0x3B" ; :name "HC59" .
[] a :hc ; :polarity :tx ; :v "61" ; :h "6" ; :bit "2" ; :offset "0x3C" ; :name "HC60" .
[] a :hc ; :polarity :tx ; :v "61" ; :h "8" ; :bit "3" ; :offset "0x3C" ; :name "HC60" .
[] a :hc ; :polarity :tx ; :v "61" ; :h "30" ; :bit "2" ; :offset "0x3D" ; :name "HC61" .
[] a :hc ; :polarity :tx ; :v "61" ; :h "32" ; :bit "3" ; :offset "0x3D" ; :name "HC61" .
[] a :hc ; :polarity :tx ; :v "61" ; :h "54" ; :bit "2" ; :offset "0x3E" ; :name "HC62" .
[] a :hc ; :polarity :tx ; :v "61" ; :h "58" ; :bit "3" ; :offset "0x3E" ; :name "HC62" .
[] a :hc ; :polarity :tx ; :v "61" ; :h "78" ; :bit "2" ; :offset "0x3F" ; :name "HC63" .
[] a :hc ; :polarity :tx ; :v "61" ; :h "80" ; :bit "3" ; :offset "0x3F" ; :name "HC63" .
[] a :hc ; :polarity :tx ; :v "62" ; :h "0" ; :bit "0" ; :offset "0x38" ; :name "HC56" .
[] a :hc ; :polarity :tx ; :v "62" ; :h "3" ; :bit "1" ; :offset "0x38" ; :name "HC56" .
[] a :hc ; :polarity :tx ; :v "62" ; :h "24" ; :bit "0" ; :offset "0x39" ; :name "HC57" .
[] a :hc ; :polarity :tx ; :v "62" ; :h "27" ; :bit "1" ; :offset "0x39" ; :name "HC57" .
[] a :hc ; :polarity :tx ; :v "62" ; :h "49" ; :bit "0" ; :offset "0x3A" ; :name "HC58" .
[] a :hc ; :polarity :tx ; :v "62" ; :h "52" ; :bit "1" ; :offset "0x3A" ; :name "HC58" .
[] a :hc ; :polarity :tx ; :v "62" ; :h "72" ; :bit "0" ; :offset "0x3B" ; :name "HC59" .
[] a :hc ; :polarity :tx ; :v "62" ; :h "75" ; :bit "1" ; :offset "0x3B" ; :name "HC59" .
[] a :hc ; :polarity :tx ; :v "63" ; :h "0" ; :bit "0" ; :offset "0x3C" ; :name "HC60" .
[] a :hc ; :polarity :tx ; :v "63" ; :h "2" ; :bit "1" ; :offset "0x3C" ; :name "HC60" .
[] a :hc ; :polarity :tx ; :v "63" ; :h "24" ; :bit "0" ; :offset "0x3D" ; :name "HC61" .
[] a :hc ; :polarity :tx ; :v "63" ; :h "26" ; :bit "1" ; :offset "0x3D" ; :name "HC61" .
[] a :hc ; :polarity :tx ; :v "63" ; :h "48" ; :bit "0" ; :offset "0x3E" ; :name "HC62" .
[] a :hc ; :polarity :tx ; :v "63" ; :h "52" ; :bit "1" ; :offset "0x3E" ; :name "HC62" .
[] a :hc ; :polarity :tx ; :v "63" ; :h "72" ; :bit "0" ; :offset "0x3F" ; :name "HC63" .
[] a :hc ; :polarity :tx ; :v "63" ; :h "74" ; :bit "1" ; :offset "0x3F" ; :name "HC63" .
[] a :hc ; :polarity :tx ; :v "64" ; :h "0" ; :bit "0" ; :offset "0x40" ; :name "HC64" .
[] a :hc ; :polarity :tx ; :v "64" ; :h "4" ; :bit "1" ; :offset "0x40" ; :name "HC64" .
[] a :hc ; :polarity :tx ; :v "64" ; :h "45" ; :bit "6" ; :offset "0x41" ; :name "HC65" .
[] a :hc ; :polarity :tx ; :v "64" ; :h "47" ; :bit "7" ; :offset "0x41" ; :name "HC65" .
[] a :hc ; :polarity :tx ; :v "64" ; :h "48" ; :bit "0" ; :offset "0x42" ; :name "HC66" .
[] a :hc ; :polarity :tx ; :v "64" ; :h "52" ; :bit "1" ; :offset "0x42" ; :name "HC66" .
[] a :hc ; :polarity :tx ; :v "64" ; :h "91" ; :bit "6" ; :offset "0x43" ; :name "HC67" .
[] a :hc ; :polarity :tx ; :v "64" ; :h "95" ; :bit "7" ; :offset "0x43" ; :name "HC67" .
[] a :hc ; :polarity :tx ; :v "65" ; :h "1" ; :bit "0" ; :offset "0x44" ; :name "HC68" .
[] a :hc ; :polarity :tx ; :v "65" ; :h "4" ; :bit "1" ; :offset "0x44" ; :name "HC68" .
[] a :hc ; :polarity :tx ; :v "65" ; :h "44" ; :bit "6" ; :offset "0x45" ; :name "HC69" .
[] a :hc ; :polarity :tx ; :v "65" ; :h "47" ; :bit "7" ; :offset "0x45" ; :name "HC69" .
[] a :hc ; :polarity :tx ; :v "65" ; :h "49" ; :bit "0" ; :offset "0x46" ; :name "HC70" .
[] a :hc ; :polarity :tx ; :v "65" ; :h "52" ; :bit "1" ; :offset "0x46" ; :name "HC70" .
[] a :hc ; :polarity :tx ; :v "65" ; :h "91" ; :bit "6" ; :offset "0x47" ; :name "HC71" .
[] a :hc ; :polarity :tx ; :v "65" ; :h "94" ; :bit "7" ; :offset "0x47" ; :name "HC71" .
[] a :hc ; :polarity :tx ; :v "66" ; :h "6" ; :bit "2" ; :offset "0x40" ; :name "HC64" .
[] a :hc ; :polarity :tx ; :v "66" ; :h "10" ; :bit "3" ; :offset "0x40" ; :name "HC64" .
[] a :hc ; :polarity :tx ; :v "66" ; :h "39" ; :bit "4" ; :offset "0x41" ; :name "HC65" .
[] a :hc ; :polarity :tx ; :v "66" ; :h "41" ; :bit "5" ; :offset "0x41" ; :name "HC65" .
[] a :hc ; :polarity :tx ; :v "66" ; :h "54" ; :bit "2" ; :offset "0x42" ; :name "HC66" .
[] a :hc ; :polarity :tx ; :v "66" ; :h "58" ; :bit "3" ; :offset "0x42" ; :name "HC66" .
[] a :hc ; :polarity :tx ; :v "66" ; :h "85" ; :bit "4" ; :offset "0x43" ; :name "HC67" .
[] a :hc ; :polarity :tx ; :v "66" ; :h "89" ; :bit "5" ; :offset "0x43" ; :name "HC67" .
[] a :hc ; :polarity :tx ; :v "67" ; :h "7" ; :bit "2" ; :offset "0x44" ; :name "HC68" .
[] a :hc ; :polarity :tx ; :v "67" ; :h "10" ; :bit "3" ; :offset "0x44" ; :name "HC68" .
[] a :hc ; :polarity :tx ; :v "67" ; :h "38" ; :bit "4" ; :offset "0x45" ; :name "HC69" .
[] a :hc ; :polarity :tx ; :v "67" ; :h "41" ; :bit "5" ; :offset "0x45" ; :name "HC69" .
[] a :hc ; :polarity :tx ; :v "67" ; :h "55" ; :bit "2" ; :offset "0x46" ; :name "HC70" .
[] a :hc ; :polarity :tx ; :v "67" ; :h "58" ; :bit "3" ; :offset "0x46" ; :name "HC70" .
[] a :hc ; :polarity :tx ; :v "67" ; :h "85" ; :bit "4" ; :offset "0x47" ; :name "HC71" .
[] a :hc ; :polarity :tx ; :v "67" ; :h "88" ; :bit "5" ; :offset "0x47" ; :name "HC71" .
[] a :hc ; :polarity :tx ; :v "68" ; :h "12" ; :bit "4" ; :offset "0x40" ; :name "HC64" .
[] a :hc ; :polarity :tx ; :v "68" ; :h "16" ; :bit "5" ; :offset "0x40" ; :name "HC64" .
[] a :hc ; :polarity :tx ; :v "68" ; :h "33" ; :bit "2" ; :offset "0x41" ; :name "HC65" .
[] a :hc ; :polarity :tx ; :v "68" ; :h "35" ; :bit "3" ; :offset "0x41" ; :name "HC65" .
[] a :hc ; :polarity :tx ; :v "68" ; :h "60" ; :bit "4" ; :offset "0x42" ; :name "HC66" .
[] a :hc ; :polarity :tx ; :v "68" ; :h "64" ; :bit "5" ; :offset "0x42" ; :name "HC66" .
[] a :hc ; :polarity :tx ; :v "68" ; :h "79" ; :bit "2" ; :offset "0x43" ; :name "HC67" .
[] a :hc ; :polarity :tx ; :v "68" ; :h "83" ; :bit "3" ; :offset "0x43" ; :name "HC67" .
[] a :hc ; :polarity :tx ; :v "69" ; :h "13" ; :bit "4" ; :offset "0x44" ; :name "HC68" .
[] a :hc ; :polarity :tx ; :v "69" ; :h "16" ; :bit "5" ; :offset "0x44" ; :name "HC68" .
[] a :hc ; :polarity :tx ; :v "69" ; :h "32" ; :bit "2" ; :offset "0x45" ; :name "HC69" .
[] a :hc ; :polarity :tx ; :v "69" ; :h "35" ; :bit "3" ; :offset "0x45" ; :name "HC69" .
[] a :hc ; :polarity :tx ; :v "69" ; :h "61" ; :bit "4" ; :offset "0x46" ; :name "HC70" .
[] a :hc ; :polarity :tx ; :v "69" ; :h "64" ; :bit "5" ; :offset "0x46" ; :name "HC70" .
[] a :hc ; :polarity :tx ; :v "69" ; :h "79" ; :bit "2" ; :offset "0x47" ; :name "HC71" .
[] a :hc ; :polarity :tx ; :v "69" ; :h "82" ; :bit "3" ; :offset "0x47" ; :name "HC71" .
[] a :hc ; :polarity :tx ; :v "70" ; :h "18" ; :bit "6" ; :offset "0x40" ; :name "HC64" .
[] a :hc ; :polarity :tx ; :v "70" ; :h "22" ; :bit "7" ; :offset "0x40" ; :name "HC64" .
[] a :hc ; :polarity :tx ; :v "70" ; :h "27" ; :bit "0" ; :offset "0x41" ; :name "HC65" .
[] a :hc ; :polarity :tx ; :v "70" ; :h "29" ; :bit "1" ; :offset "0x41" ; :name "HC65" .
[] a :hc ; :polarity :tx ; :v "70" ; :h "66" ; :bit "6" ; :offset "0x42" ; :name "HC66" .
[] a :hc ; :polarity :tx ; :v "70" ; :h "70" ; :bit "7" ; :offset "0x42" ; :name "HC66" .
[] a :hc ; :polarity :tx ; :v "70" ; :h "73" ; :bit "0" ; :offset "0x43" ; :name "HC67" .
[] a :hc ; :polarity :tx ; :v "70" ; :h "77" ; :bit "1" ; :offset "0x43" ; :name "HC67" .
[] a :hc ; :polarity :tx ; :v "71" ; :h "19" ; :bit "6" ; :offset "0x44" ; :name "HC68" .
[] a :hc ; :polarity :tx ; :v "71" ; :h "22" ; :bit "7" ; :offset "0x44" ; :name "HC68" .
[] a :hc ; :polarity :tx ; :v "71" ; :h "26" ; :bit "0" ; :offset "0x45" ; :name "HC69" .
[] a :hc ; :polarity :tx ; :v "71" ; :h "29" ; :bit "1" ; :offset "0x45" ; :name "HC69" .
[] a :hc ; :polarity :tx ; :v "71" ; :h "67" ; :bit "6" ; :offset "0x46" ; :name "HC70" .
[] a :hc ; :polarity :tx ; :v "71" ; :h "70" ; :bit "7" ; :offset "0x46" ; :name "HC70" .
[] a :hc ; :polarity :tx ; :v "71" ; :h "73" ; :bit "0" ; :offset "0x47" ; :name "HC71" .
[] a :hc ; :polarity :tx ; :v "71" ; :h "76" ; :bit "1" ; :offset "0x47" ; :name "HC71" .
[] a :hc ; :polarity :tx ; :v "72" ; :h "2" ; :bit "0" ; :offset "0x48" ; :name "HC72" .
[] a :hc ; :polarity :tx ; :v "72" ; :h "5" ; :bit "1" ; :offset "0x48" ; :name "HC72" .
[] a :hc ; :polarity :tx ; :v "72" ; :h "43" ; :bit "6" ; :offset "0x49" ; :name "HC73" .
[] a :hc ; :polarity :tx ; :v "72" ; :h "46" ; :bit "7" ; :offset "0x49" ; :name "HC73" .
[] a :hc ; :polarity :tx ; :v "72" ; :h "50" ; :bit "0" ; :offset "0x4A" ; :name "HC74" .
[] a :hc ; :polarity :tx ; :v "72" ; :h "53" ; :bit "1" ; :offset "0x4A" ; :name "HC74" .
[] a :hc ; :polarity :tx ; :v "72" ; :h "90" ; :bit "6" ; :offset "0x4B" ; :name "HC75" .
[] a :hc ; :polarity :tx ; :v "72" ; :h "93" ; :bit "7" ; :offset "0x4B" ; :name "HC75" .
[] a :hc ; :polarity :tx ; :v "73" ; :h "3" ; :bit "0" ; :offset "0x4C" ; :name "HC76" .
[] a :hc ; :polarity :tx ; :v "73" ; :h "5" ; :bit "1" ; :offset "0x4C" ; :name "HC76" .
[] a :hc ; :polarity :tx ; :v "73" ; :h "42" ; :bit "6" ; :offset "0x4D" ; :name "HC77" .
[] a :hc ; :polarity :tx ; :v "73" ; :h "46" ; :bit "7" ; :offset "0x4D" ; :name "HC77" .
[] a :hc ; :polarity :tx ; :v "73" ; :h "51" ; :bit "0" ; :offset "0x4E" ; :name "HC78" .
[] a :hc ; :polarity :tx ; :v "73" ; :h "53" ; :bit "1" ; :offset "0x4E" ; :name "HC78" .
[] a :hc ; :polarity :tx ; :v "73" ; :h "90" ; :bit "6" ; :offset "0x4F" ; :name "HC79" .
[] a :hc ; :polarity :tx ; :v "73" ; :h "92" ; :bit "7" ; :offset "0x4F" ; :name "HC79" .
[] a :hc ; :polarity :tx ; :v "74" ; :h "8" ; :bit "2" ; :offset "0x48" ; :name "HC72" .
[] a :hc ; :polarity :tx ; :v "74" ; :h "11" ; :bit "3" ; :offset "0x48" ; :name "HC72" .
[] a :hc ; :polarity :tx ; :v "74" ; :h "37" ; :bit "4" ; :offset "0x49" ; :name "HC73" .
[] a :hc ; :polarity :tx ; :v "74" ; :h "40" ; :bit "5" ; :offset "0x49" ; :name "HC73" .
[] a :hc ; :polarity :tx ; :v "74" ; :h "56" ; :bit "2" ; :offset "0x4A" ; :name "HC74" .
[] a :hc ; :polarity :tx ; :v "74" ; :h "59" ; :bit "3" ; :offset "0x4A" ; :name "HC74" .
[] a :hc ; :polarity :tx ; :v "74" ; :h "84" ; :bit "4" ; :offset "0x4B" ; :name "HC75" .
[] a :hc ; :polarity :tx ; :v "74" ; :h "87" ; :bit "5" ; :offset "0x4B" ; :name "HC75" .
[] a :hc ; :polarity :tx ; :v "75" ; :h "9" ; :bit "2" ; :offset "0x4C" ; :name "HC76" .
[] a :hc ; :polarity :tx ; :v "75" ; :h "11" ; :bit "3" ; :offset "0x4C" ; :name "HC76" .
[] a :hc ; :polarity :tx ; :v "75" ; :h "36" ; :bit "4" ; :offset "0x4D" ; :name "HC77" .
[] a :hc ; :polarity :tx ; :v "75" ; :h "40" ; :bit "5" ; :offset "0x4D" ; :name "HC77" .
[] a :hc ; :polarity :tx ; :v "75" ; :h "57" ; :bit "2" ; :offset "0x4E" ; :name "HC78" .
[] a :hc ; :polarity :tx ; :v "75" ; :h "59" ; :bit "3" ; :offset "0x4E" ; :name "HC78" .
[] a :hc ; :polarity :tx ; :v "75" ; :h "84" ; :bit "4" ; :offset "0x4F" ; :name "HC79" .
[] a :hc ; :polarity :tx ; :v "75" ; :h "86" ; :bit "5" ; :offset "0x4F" ; :name "HC79" .
[] a :hc ; :polarity :rx ; :v "76" ; :h "14" ; :bit "4" ; :offset "0x48" ; :name "HC72" .
[] a :hc ; :polarity :rx ; :v "76" ; :h "17" ; :bit "5" ; :offset "0x48" ; :name "HC72" .
[] a :hc ; :polarity :rx ; :v "76" ; :h "31" ; :bit "2" ; :offset "0x49" ; :name "HC73" .
[] a :hc ; :polarity :rx ; :v "76" ; :h "34" ; :bit "3" ; :offset "0x49" ; :name "HC73" .
[] a :hc ; :polarity :rx ; :v "76" ; :h "62" ; :bit "4" ; :offset "0x4A" ; :name "HC74" .
[] a :hc ; :polarity :rx ; :v "76" ; :h "65" ; :bit "5" ; :offset "0x4A" ; :name "HC74" .
[] a :hc ; :polarity :rx ; :v "76" ; :h "78" ; :bit "2" ; :offset "0x4B" ; :name "HC75" .
[] a :hc ; :polarity :rx ; :v "76" ; :h "81" ; :bit "3" ; :offset "0x4B" ; :name "HC75" .
[] a :hc ; :polarity :rx ; :v "77" ; :h "15" ; :bit "4" ; :offset "0x4C" ; :name "HC76" .
[] a :hc ; :polarity :rx ; :v "77" ; :h "17" ; :bit "5" ; :offset "0x4C" ; :name "HC76" .
[] a :hc ; :polarity :rx ; :v "77" ; :h "30" ; :bit "2" ; :offset "0x4D" ; :name "HC77" .
[] a :hc ; :polarity :rx ; :v "77" ; :h "34" ; :bit "3" ; :offset "0x4D" ; :name "HC77" .
[] a :hc ; :polarity :rx ; :v "77" ; :h "63" ; :bit "4" ; :offset "0x4E" ; :name "HC78" .
[] a :hc ; :polarity :rx ; :v "77" ; :h "65" ; :bit "5" ; :offset "0x4E" ; :name "HC78" .
[] a :hc ; :polarity :rx ; :v "77" ; :h "78" ; :bit "2" ; :offset "0x4F" ; :name "HC79" .
[] a :hc ; :polarity :rx ; :v "77" ; :h "80" ; :bit "3" ; :offset "0x4F" ; :name "HC79" .
[] a :hc ; :polarity :rx ; :v "78" ; :h "20" ; :bit "6" ; :offset "0x48" ; :name "HC72" .
[] a :hc ; :polarity :rx ; :v "78" ; :h "23" ; :bit "7" ; :offset "0x48" ; :name "HC72" .
[] a :hc ; :polarity :rx ; :v "78" ; :h "25" ; :bit "0" ; :offset "0x49" ; :name "HC73" .
[] a :hc ; :polarity :rx ; :v "78" ; :h "28" ; :bit "1" ; :offset "0x49" ; :name "HC73" .
[] a :hc ; :polarity :rx ; :v "78" ; :h "68" ; :bit "6" ; :offset "0x4A" ; :name "HC74" .
[] a :hc ; :polarity :rx ; :v "78" ; :h "71" ; :bit "7" ; :offset "0x4A" ; :name "HC74" .
[] a :hc ; :polarity :rx ; :v "78" ; :h "72" ; :bit "0" ; :offset "0x4B" ; :name "HC75" .
[] a :hc ; :polarity :rx ; :v "78" ; :h "75" ; :bit "1" ; :offset "0x4B" ; :name "HC75" .
[] a :hc ; :polarity :rx ; :v "79" ; :h "21" ; :bit "6" ; :offset "0x4C" ; :name "HC76" .
[] a :hc ; :polarity :rx ; :v "79" ; :h "23" ; :bit "7" ; :offset "0x4C" ; :name "HC76" .
[] a :hc ; :polarity :rx ; :v "79" ; :h "24" ; :bit "0" ; :offset "0x4D" ; :name "HC77" .
[] a :hc ; :polarity :rx ; :v "79" ; :h "28" ; :bit "1" ; :offset "0x4D" ; :name "HC77" .
[] a :hc ; :polarity :rx ; :v "79" ; :h "69" ; :bit "6" ; :offset "0x4E" ; :name "HC78" .
[] a :hc ; :polarity :rx ; :v "79" ; :h "71" ; :bit "7" ; :offset "0x4E" ; :name "HC78" .
[] a :hc ; :polarity :rx ; :v "79" ; :h "72" ; :bit "0" ; :offset "0x4F" ; :name "HC79" .
[] a :hc ; :polarity :rx ; :v "79" ; :h "74" ; :bit "1" ; :offset "0x4F" ; :name "HC79" .
[] a :hc ; :polarity :rx ; :v "80" ; :h "21" ; :bit "6" ; :offset "0x50" ; :name "HC80" .
[] a :hc ; :polarity :rx ; :v "80" ; :h "23" ; :bit "7" ; :offset "0x50" ; :name "HC80" .
[] a :hc ; :polarity :rx ; :v "80" ; :h "45" ; :bit "6" ; :offset "0x51" ; :name "HC81" .
[] a :hc ; :polarity :rx ; :v "80" ; :h "47" ; :bit "7" ; :offset "0x51" ; :name "HC81" .
[] a :hc ; :polarity :rx ; :v "80" ; :h "67" ; :bit "6" ; :offset "0x52" ; :name "HC82" .
[] a :hc ; :polarity :rx ; :v "80" ; :h "71" ; :bit "7" ; :offset "0x52" ; :name "HC82" .
[] a :hc ; :polarity :rx ; :v "80" ; :h "93" ; :bit "6" ; :offset "0x53" ; :name "HC83" .
[] a :hc ; :polarity :rx ; :v "80" ; :h "95" ; :bit "7" ; :offset "0x53" ; :name "HC83" .
[] a :hc ; :polarity :rx ; :v "81" ; :h "20" ; :bit "6" ; :offset "0x54" ; :name "HC84" .
[] a :hc ; :polarity :rx ; :v "81" ; :h "23" ; :bit "7" ; :offset "0x54" ; :name "HC84" .
[] a :hc ; :polarity :rx ; :v "81" ; :h "44" ; :bit "6" ; :offset "0x55" ; :name "HC85" .
[] a :hc ; :polarity :rx ; :v "81" ; :h "47" ; :bit "7" ; :offset "0x55" ; :name "HC85" .
[] a :hc ; :polarity :rx ; :v "81" ; :h "67" ; :bit "6" ; :offset "0x56" ; :name "HC86" .
[] a :hc ; :polarity :rx ; :v "81" ; :h "70" ; :bit "7" ; :offset "0x56" ; :name "HC86" .
[] a :hc ; :polarity :rx ; :v "81" ; :h "92" ; :bit "6" ; :offset "0x57" ; :name "HC87" .
[] a :hc ; :polarity :rx ; :v "81" ; :h "95" ; :bit "7" ; :offset "0x57" ; :name "HC87" .
[] a :hc ; :polarity :rx ; :v "82" ; :h "15" ; :bit "4" ; :offset "0x50" ; :name "HC80" .
[] a :hc ; :polarity :rx ; :v "82" ; :h "17" ; :bit "5" ; :offset "0x50" ; :name "HC80" .
[] a :hc ; :polarity :rx ; :v "82" ; :h "39" ; :bit "4" ; :offset "0x51" ; :name "HC81" .
[] a :hc ; :polarity :rx ; :v "82" ; :h "41" ; :bit "5" ; :offset "0x51" ; :name "HC81" .
[] a :hc ; :polarity :rx ; :v "82" ; :h "61" ; :bit "4" ; :offset "0x52" ; :name "HC82" .
[] a :hc ; :polarity :rx ; :v "82" ; :h "65" ; :bit "5" ; :offset "0x52" ; :name "HC82" .
[] a :hc ; :polarity :rx ; :v "82" ; :h "87" ; :bit "4" ; :offset "0x53" ; :name "HC83" .
[] a :hc ; :polarity :rx ; :v "82" ; :h "89" ; :bit "5" ; :offset "0x53" ; :name "HC83" .
[] a :hc ; :polarity :rx ; :v "83" ; :h "14" ; :bit "4" ; :offset "0x54" ; :name "HC84" .
[] a :hc ; :polarity :rx ; :v "83" ; :h "17" ; :bit "5" ; :offset "0x54" ; :name "HC84" .
[] a :hc ; :polarity :rx ; :v "83" ; :h "38" ; :bit "4" ; :offset "0x55" ; :name "HC85" .
[] a :hc ; :polarity :rx ; :v "83" ; :h "41" ; :bit "5" ; :offset "0x55" ; :name "HC85" .
[] a :hc ; :polarity :rx ; :v "83" ; :h "61" ; :bit "4" ; :offset "0x56" ; :name "HC86" .
[] a :hc ; :polarity :rx ; :v "83" ; :h "64" ; :bit "5" ; :offset "0x56" ; :name "HC86" .
[] a :hc ; :polarity :rx ; :v "83" ; :h "86" ; :bit "4" ; :offset "0x57" ; :name "HC87" .
[] a :hc ; :polarity :rx ; :v "83" ; :h "89" ; :bit "5" ; :offset "0x57" ; :name "HC87" .
[] a :hc ; :polarity :rx ; :v "84" ; :h "9" ; :bit "2" ; :offset "0x50" ; :name "HC80" .
[] a :hc ; :polarity :rx ; :v "84" ; :h "11" ; :bit "3" ; :offset "0x50" ; :name "HC80" .
[] a :hc ; :polarity :rx ; :v "84" ; :h "33" ; :bit "2" ; :offset "0x51" ; :name "HC81" .
[] a :hc ; :polarity :rx ; :v "84" ; :h "35" ; :bit "3" ; :offset "0x51" ; :name "HC81" .
[] a :hc ; :polarity :rx ; :v "84" ; :h "55" ; :bit "2" ; :offset "0x52" ; :name "HC82" .
[] a :hc ; :polarity :rx ; :v "84" ; :h "59" ; :bit "3" ; :offset "0x52" ; :name "HC82" .
[] a :hc ; :polarity :rx ; :v "84" ; :h "81" ; :bit "2" ; :offset "0x53" ; :name "HC83" .
[] a :hc ; :polarity :rx ; :v "84" ; :h "83" ; :bit "3" ; :offset "0x53" ; :name "HC83" .
[] a :hc ; :polarity :rx ; :v "85" ; :h "8" ; :bit "2" ; :offset "0x54" ; :name "HC84" .
[] a :hc ; :polarity :rx ; :v "85" ; :h "11" ; :bit "3" ; :offset "0x54" ; :name "HC84" .
[] a :hc ; :polarity :rx ; :v "85" ; :h "32" ; :bit "2" ; :offset "0x55" ; :name "HC85" .
[] a :hc ; :polarity :rx ; :v "85" ; :h "35" ; :bit "3" ; :offset "0x55" ; :name "HC85" .
[] a :hc ; :polarity :rx ; :v "85" ; :h "55" ; :bit "2" ; :offset "0x56" ; :name "HC86" .
[] a :hc ; :polarity :rx ; :v "85" ; :h "58" ; :bit "3" ; :offset "0x56" ; :name "HC86" .
[] a :hc ; :polarity :rx ; :v "85" ; :h "80" ; :bit "2" ; :offset "0x57" ; :name "HC87" .
[] a :hc ; :polarity :rx ; :v "85" ; :h "83" ; :bit "3" ; :offset "0x57" ; :name "HC87" .
[] a :hc ; :polarity :rx ; :v "86" ; :h "3" ; :bit "0" ; :offset "0x50" ; :name "HC80" .
[] a :hc ; :polarity :rx ; :v "86" ; :h "5" ; :bit "1" ; :offset "0x50" ; :name "HC80" .
[] a :hc ; :polarity :rx ; :v "86" ; :h "27" ; :bit "0" ; :offset "0x51" ; :name "HC81" .
[] a :hc ; :polarity :rx ; :v "86" ; :h "29" ; :bit "1" ; :offset "0x51" ; :name "HC81" .
[] a :hc ; :polarity :rx ; :v "86" ; :h "49" ; :bit "0" ; :offset "0x52" ; :name "HC82" .
[] a :hc ; :polarity :rx ; :v "86" ; :h "53" ; :bit "1" ; :offset "0x52" ; :name "HC82" .
[] a :hc ; :polarity :rx ; :v "86" ; :h "75" ; :bit "0" ; :offset "0x53" ; :name "HC83" .
[] a :hc ; :polarity :rx ; :v "86" ; :h "77" ; :bit "1" ; :offset "0x53" ; :name "HC83" .
[] a :hc ; :polarity :rx ; :v "87" ; :h "2" ; :bit "0" ; :offset "0x54" ; :name "HC84" .
[] a :hc ; :polarity :rx ; :v "87" ; :h "5" ; :bit "1" ; :offset "0x54" ; :name "HC84" .
[] a :hc ; :polarity :rx ; :v "87" ; :h "26" ; :bit "0" ; :offset "0x55" ; :name "HC85" .
[] a :hc ; :polarity :rx ; :v "87" ; :h "29" ; :bit "1" ; :offset "0x55" ; :name "HC85" .
[] a :hc ; :polarity :rx ; :v "87" ; :h "49" ; :bit "0" ; :offset "0x56" ; :name "HC86" .
[] a :hc ; :polarity :rx ; :v "87" ; :h "52" ; :bit "1" ; :offset "0x56" ; :name "HC86" .
[] a :hc ; :polarity :rx ; :v "87" ; :h "74" ; :bit "0" ; :offset "0x57" ; :name "HC87" .
[] a :hc ; :polarity :rx ; :v "87" ; :h "77" ; :bit "1" ; :offset "0x57" ; :name "HC87" .
[] a :hc ; :polarity :tx ; :v "88" ; :h "19" ; :bit "6" ; :offset "0x58" ; :name "HC88" .
[] a :hc ; :polarity :tx ; :v "88" ; :h "22" ; :bit "7" ; :offset "0x58" ; :name "HC88" .
[] a :hc ; :polarity :tx ; :v "88" ; :h "43" ; :bit "6" ; :offset "0x59" ; :name "HC89" .
[] a :hc ; :polarity :tx ; :v "88" ; :h "46" ; :bit "7" ; :offset "0x59" ; :name "HC89" .
[] a :hc ; :polarity :tx ; :v "88" ; :h "66" ; :bit "6" ; :offset "0x5A" ; :name "HC90" .
[] a :hc ; :polarity :tx ; :v "88" ; :h "69" ; :bit "7" ; :offset "0x5A" ; :name "HC90" .
[] a :hc ; :polarity :tx ; :v "88" ; :h "91" ; :bit "6" ; :offset "0x5B" ; :name "HC91" .
[] a :hc ; :polarity :tx ; :v "88" ; :h "94" ; :bit "7" ; :offset "0x5B" ; :name "HC91" .
[] a :hc ; :polarity :tx ; :v "89" ; :h "18" ; :bit "6" ; :offset "0x5C" ; :name "HC92" .
[] a :hc ; :polarity :tx ; :v "89" ; :h "22" ; :bit "7" ; :offset "0x5C" ; :name "HC92" .
[] a :hc ; :polarity :tx ; :v "89" ; :h "42" ; :bit "6" ; :offset "0x5D" ; :name "HC93" .
[] a :hc ; :polarity :tx ; :v "89" ; :h "46" ; :bit "7" ; :offset "0x5D" ; :name "HC93" .
[] a :hc ; :polarity :tx ; :v "89" ; :h "66" ; :bit "6" ; :offset "0x5E" ; :name "HC94" .
[] a :hc ; :polarity :tx ; :v "89" ; :h "68" ; :bit "7" ; :offset "0x5E" ; :name "HC94" .
[] a :hc ; :polarity :tx ; :v "89" ; :h "90" ; :bit "6" ; :offset "0x5F" ; :name "HC95" .
[] a :hc ; :polarity :tx ; :v "89" ; :h "94" ; :bit "7" ; :offset "0x5F" ; :name "HC95" .
[] a :hc ; :polarity :tx ; :v "90" ; :h "13" ; :bit "4" ; :offset "0x58" ; :name "HC88" .
[] a :hc ; :polarity :tx ; :v "90" ; :h "16" ; :bit "5" ; :offset "0x58" ; :name "HC88" .
[] a :hc ; :polarity :tx ; :v "90" ; :h "37" ; :bit "4" ; :offset "0x59" ; :name "HC89" .
[] a :hc ; :polarity :tx ; :v "90" ; :h "40" ; :bit "5" ; :offset "0x59" ; :name "HC89" .
[] a :hc ; :polarity :tx ; :v "90" ; :h "60" ; :bit "4" ; :offset "0x5A" ; :name "HC90" .
[] a :hc ; :polarity :tx ; :v "90" ; :h "63" ; :bit "5" ; :offset "0x5A" ; :name "HC90" .
[] a :hc ; :polarity :tx ; :v "90" ; :h "85" ; :bit "4" ; :offset "0x5B" ; :name "HC91" .
[] a :hc ; :polarity :tx ; :v "90" ; :h "88" ; :bit "5" ; :offset "0x5B" ; :name "HC91" .
[] a :hc ; :polarity :tx ; :v "91" ; :h "12" ; :bit "4" ; :offset "0x5C" ; :name "HC92" .
[] a :hc ; :polarity :tx ; :v "91" ; :h "16" ; :bit "5" ; :offset "0x5C" ; :name "HC92" .
[] a :hc ; :polarity :tx ; :v "91" ; :h "36" ; :bit "4" ; :offset "0x5D" ; :name "HC93" .
[] a :hc ; :polarity :tx ; :v "91" ; :h "40" ; :bit "5" ; :offset "0x5D" ; :name "HC93" .
[] a :hc ; :polarity :tx ; :v "91" ; :h "60" ; :bit "4" ; :offset "0x5E" ; :name "HC94" .
[] a :hc ; :polarity :tx ; :v "91" ; :h "62" ; :bit "5" ; :offset "0x5E" ; :name "HC94" .
[] a :hc ; :polarity :tx ; :v "91" ; :h "84" ; :bit "4" ; :offset "0x5F" ; :name "HC95" .
[] a :hc ; :polarity :tx ; :v "91" ; :h "88" ; :bit "5" ; :offset "0x5F" ; :name "HC95" .
[] a :hc ; :polarity :tx ; :v "92" ; :h "7" ; :bit "2" ; :offset "0x58" ; :name "HC88" .
[] a :hc ; :polarity :tx ; :v "92" ; :h "10" ; :bit "3" ; :offset "0x58" ; :name "HC88" .
[] a :hc ; :polarity :tx ; :v "92" ; :h "31" ; :bit "2" ; :offset "0x59" ; :name "HC89" .
[] a :hc ; :polarity :tx ; :v "92" ; :h "34" ; :bit "3" ; :offset "0x59" ; :name "HC89" .
[] a :hc ; :polarity :tx ; :v "92" ; :h "54" ; :bit "2" ; :offset "0x5A" ; :name "HC90" .
[] a :hc ; :polarity :tx ; :v "92" ; :h "57" ; :bit "3" ; :offset "0x5A" ; :name "HC90" .
[] a :hc ; :polarity :tx ; :v "92" ; :h "79" ; :bit "2" ; :offset "0x5B" ; :name "HC91" .
[] a :hc ; :polarity :tx ; :v "92" ; :h "82" ; :bit "3" ; :offset "0x5B" ; :name "HC91" .
[] a :hc ; :polarity :tx ; :v "93" ; :h "6" ; :bit "2" ; :offset "0x5C" ; :name "HC92" .
[] a :hc ; :polarity :tx ; :v "93" ; :h "10" ; :bit "3" ; :offset "0x5C" ; :name "HC92" .
[] a :hc ; :polarity :tx ; :v "93" ; :h "30" ; :bit "2" ; :offset "0x5D" ; :name "HC93" .
[] a :hc ; :polarity :tx ; :v "93" ; :h "34" ; :bit "3" ; :offset "0x5D" ; :name "HC93" .
[] a :hc ; :polarity :tx ; :v "93" ; :h "54" ; :bit "2" ; :offset "0x5E" ; :name "HC94" .
[] a :hc ; :polarity :tx ; :v "93" ; :h "56" ; :bit "3" ; :offset "0x5E" ; :name "HC94" .
[] a :hc ; :polarity :tx ; :v "93" ; :h "78" ; :bit "2" ; :offset "0x5F" ; :name "HC95" .
[] a :hc ; :polarity :tx ; :v "93" ; :h "82" ; :bit "3" ; :offset "0x5F" ; :name "HC95" .
[] a :hc ; :polarity :tx ; :v "94" ; :h "1" ; :bit "0" ; :offset "0x58" ; :name "HC88" .
[] a :hc ; :polarity :tx ; :v "94" ; :h "4" ; :bit "1" ; :offset "0x58" ; :name "HC88" .
[] a :hc ; :polarity :tx ; :v "94" ; :h "25" ; :bit "0" ; :offset "0x59" ; :name "HC89" .
[] a :hc ; :polarity :tx ; :v "94" ; :h "28" ; :bit "1" ; :offset "0x59" ; :name "HC89" .
[] a :hc ; :polarity :tx ; :v "94" ; :h "48" ; :bit "0" ; :offset "0x5A" ; :name "HC90" .
[] a :hc ; :polarity :tx ; :v "94" ; :h "51" ; :bit "1" ; :offset "0x5A" ; :name "HC90" .
[] a :hc ; :polarity :tx ; :v "94" ; :h "73" ; :bit "0" ; :offset "0x5B" ; :name "HC91" .
[] a :hc ; :polarity :tx ; :v "94" ; :h "76" ; :bit "1" ; :offset "0x5B" ; :name "HC91" .
[] a :hc ; :polarity :tx ; :v "95" ; :h "0" ; :bit "0" ; :offset "0x5C" ; :name "HC92" .
[] a :hc ; :polarity :tx ; :v "95" ; :h "4" ; :bit "1" ; :offset "0x5C" ; :name "HC92" .
[] a :hc ; :polarity :tx ; :v "95" ; :h "24" ; :bit "0" ; :offset "0x5D" ; :name "HC93" .
[] a :hc ; :polarity :tx ; :v "95" ; :h "28" ; :bit "1" ; :offset "0x5D" ; :name "HC93" .
[] a :hc ; :polarity :tx ; :v "95" ; :h "48" ; :bit "0" ; :offset "0x5E" ; :name "HC94" .
[] a :hc ; :polarity :tx ; :v "95" ; :h "50" ; :bit "1" ; :offset "0x5E" ; :name "HC94" .
[] a :hc ; :polarity :tx ; :v "95" ; :h "72" ; :bit "0" ; :offset "0x5F" ; :name "HC95" .
[] a :hc ; :polarity :tx ; :v "95" ; :h "76" ; :bit "1" ; :offset "0x5F" ; :name "HC95" .
[] a :hc ; :polarity :tx ; :v "96" ; :h "0" ; :bit "0" ; :offset "0x60" ; :name "HC96" .
[] a :hc ; :polarity :tx ; :v "96" ; :h "4" ; :bit "1" ; :offset "0x60" ; :name "HC96" .
[] a :hc ; :polarity :tx ; :v "96" ; :h "43" ; :bit "6" ; :offset "0x61" ; :name "HC97" .
[] a :hc ; :polarity :tx ; :v "96" ; :h "47" ; :bit "7" ; :offset "0x61" ; :name "HC97" .
[] a :hc ; :polarity :tx ; :v "96" ; :h "67" ; :bit "6" ; :offset "0x62" ; :name "HC98" .
[] a :hc ; :polarity :tx ; :v "96" ; :h "71" ; :bit "7" ; :offset "0x62" ; :name "HC98" .
[] a :hc ; :polarity :tx ; :v "96" ; :h "72" ; :bit "0" ; :offset "0x63" ; :name "HC99" .
[] a :hc ; :polarity :tx ; :v "96" ; :h "74" ; :bit "1" ; :offset "0x63" ; :name "HC99" .
[] a :hc ; :polarity :tx ; :v "97" ; :h "1" ; :bit "0" ; :offset "0x64" ; :name "HC100" .
[] a :hc ; :polarity :tx ; :v "97" ; :h "4" ; :bit "1" ; :offset "0x64" ; :name "HC100" .
[] a :hc ; :polarity :tx ; :v "97" ; :h "43" ; :bit "6" ; :offset "0x65" ; :name "HC101" .
[] a :hc ; :polarity :tx ; :v "97" ; :h "46" ; :bit "7" ; :offset "0x65" ; :name "HC101" .
[] a :hc ; :polarity :tx ; :v "97" ; :h "67" ; :bit "6" ; :offset "0x66" ; :name "HC102" .
[] a :hc ; :polarity :tx ; :v "97" ; :h "70" ; :bit "7" ; :offset "0x66" ; :name "HC102" .
[] a :hc ; :polarity :tx ; :v "97" ; :h "72" ; :bit "0" ; :offset "0x67" ; :name "HC103" .
[] a :hc ; :polarity :tx ; :v "97" ; :h "75" ; :bit "1" ; :offset "0x67" ; :name "HC103" .
[] a :hc ; :polarity :tx ; :v "98" ; :h "6" ; :bit "2" ; :offset "0x60" ; :name "HC96" .
[] a :hc ; :polarity :tx ; :v "98" ; :h "10" ; :bit "3" ; :offset "0x60" ; :name "HC96" .
[] a :hc ; :polarity :tx ; :v "98" ; :h "37" ; :bit "4" ; :offset "0x61" ; :name "HC97" .
[] a :hc ; :polarity :tx ; :v "98" ; :h "41" ; :bit "5" ; :offset "0x61" ; :name "HC97" .
[] a :hc ; :polarity :tx ; :v "98" ; :h "61" ; :bit "4" ; :offset "0x62" ; :name "HC98" .
[] a :hc ; :polarity :tx ; :v "98" ; :h "65" ; :bit "5" ; :offset "0x62" ; :name "HC98" .
[] a :hc ; :polarity :tx ; :v "98" ; :h "78" ; :bit "2" ; :offset "0x63" ; :name "HC99" .
[] a :hc ; :polarity :tx ; :v "98" ; :h "80" ; :bit "3" ; :offset "0x63" ; :name "HC99" .
[] a :hc ; :polarity :tx ; :v "99" ; :h "7" ; :bit "2" ; :offset "0x64" ; :name "HC100" .
[] a :hc ; :polarity :tx ; :v "99" ; :h "10" ; :bit "3" ; :offset "0x64" ; :name "HC100" .
[] a :hc ; :polarity :tx ; :v "99" ; :h "37" ; :bit "4" ; :offset "0x65" ; :name "HC101" .
[] a :hc ; :polarity :tx ; :v "99" ; :h "40" ; :bit "5" ; :offset "0x65" ; :name "HC101" .
[] a :hc ; :polarity :tx ; :v "99" ; :h "61" ; :bit "4" ; :offset "0x66" ; :name "HC102" .
[] a :hc ; :polarity :tx ; :v "99" ; :h "64" ; :bit "5" ; :offset "0x66" ; :name "HC102" .
[] a :hc ; :polarity :tx ; :v "99" ; :h "78" ; :bit "2" ; :offset "0x67" ; :name "HC103" .
[] a :hc ; :polarity :tx ; :v "99" ; :h "81" ; :bit "3" ; :offset "0x67" ; :name "HC103" .
[] a :hc ; :polarity :tx ; :v "100" ; :h "12" ; :bit "4" ; :offset "0x60" ; :name "HC96" .
[] a :hc ; :polarity :tx ; :v "100" ; :h "16" ; :bit "5" ; :offset "0x60" ; :name "HC96" .
[] a :hc ; :polarity :tx ; :v "100" ; :h "31" ; :bit "2" ; :offset "0x61" ; :name "HC97" .
[] a :hc ; :polarity :tx ; :v "100" ; :h "35" ; :bit "3" ; :offset "0x61" ; :name "HC97" .
[] a :hc ; :polarity :tx ; :v "100" ; :h "55" ; :bit "2" ; :offset "0x62" ; :name "HC98" .
[] a :hc ; :polarity :tx ; :v "100" ; :h "59" ; :bit "3" ; :offset "0x62" ; :name "HC98" .
[] a :hc ; :polarity :tx ; :v "100" ; :h "84" ; :bit "4" ; :offset "0x63" ; :name "HC99" .
[] a :hc ; :polarity :tx ; :v "100" ; :h "86" ; :bit "5" ; :offset "0x63" ; :name "HC99" .
[] a :hc ; :polarity :tx ; :v "101" ; :h "13" ; :bit "4" ; :offset "0x64" ; :name "HC100" .
[] a :hc ; :polarity :tx ; :v "101" ; :h "16" ; :bit "5" ; :offset "0x64" ; :name "HC100" .
[] a :hc ; :polarity :tx ; :v "101" ; :h "31" ; :bit "2" ; :offset "0x65" ; :name "HC101" .
[] a :hc ; :polarity :tx ; :v "101" ; :h "34" ; :bit "3" ; :offset "0x65" ; :name "HC101" .
[] a :hc ; :polarity :tx ; :v "101" ; :h "55" ; :bit "2" ; :offset "0x66" ; :name "HC102" .
[] a :hc ; :polarity :tx ; :v "101" ; :h "58" ; :bit "3" ; :offset "0x66" ; :name "HC102" .
[] a :hc ; :polarity :tx ; :v "101" ; :h "84" ; :bit "4" ; :offset "0x67" ; :name "HC103" .
[] a :hc ; :polarity :tx ; :v "101" ; :h "87" ; :bit "5" ; :offset "0x67" ; :name "HC103" .
[] a :hc ; :polarity :tx ; :v "102" ; :h "18" ; :bit "6" ; :offset "0x60" ; :name "HC96" .
[] a :hc ; :polarity :tx ; :v "102" ; :h "22" ; :bit "7" ; :offset "0x60" ; :name "HC96" .
[] a :hc ; :polarity :tx ; :v "102" ; :h "25" ; :bit "0" ; :offset "0x61" ; :name "HC97" .
[] a :hc ; :polarity :tx ; :v "102" ; :h "29" ; :bit "1" ; :offset "0x61" ; :name "HC97" .
[] a :hc ; :polarity :tx ; :v "102" ; :h "49" ; :bit "0" ; :offset "0x62" ; :name "HC98" .
[] a :hc ; :polarity :tx ; :v "102" ; :h "53" ; :bit "1" ; :offset "0x62" ; :name "HC98" .
[] a :hc ; :polarity :tx ; :v "102" ; :h "90" ; :bit "6" ; :offset "0x63" ; :name "HC99" .
[] a :hc ; :polarity :tx ; :v "102" ; :h "92" ; :bit "7" ; :offset "0x63" ; :name "HC99" .
[] a :hc ; :polarity :tx ; :v "103" ; :h "19" ; :bit "6" ; :offset "0x64" ; :name "HC100" .
[] a :hc ; :polarity :tx ; :v "103" ; :h "22" ; :bit "7" ; :offset "0x64" ; :name "HC100" .
[] a :hc ; :polarity :tx ; :v "103" ; :h "25" ; :bit "0" ; :offset "0x65" ; :name "HC101" .
[] a :hc ; :polarity :tx ; :v "103" ; :h "28" ; :bit "1" ; :offset "0x65" ; :name "HC101" .
[] a :hc ; :polarity :tx ; :v "103" ; :h "49" ; :bit "0" ; :offset "0x66" ; :name "HC102" .
[] a :hc ; :polarity :tx ; :v "103" ; :h "52" ; :bit "1" ; :offset "0x66" ; :name "HC102" .
[] a :hc ; :polarity :tx ; :v "103" ; :h "90" ; :bit "6" ; :offset "0x67" ; :name "HC103" .
[] a :hc ; :polarity :tx ; :v "103" ; :h "93" ; :bit "7" ; :offset "0x67" ; :name "HC103" .
[] a :hc ; :polarity :rx ; :v "104" ; :h "2" ; :bit "0" ; :offset "0x68" ; :name "HC104" .
[] a :hc ; :polarity :rx ; :v "104" ; :h "5" ; :bit "1" ; :offset "0x68" ; :name "HC104" .
[] a :hc ; :polarity :rx ; :v "104" ; :h "42" ; :bit "6" ; :offset "0x69" ; :name "HC105" .
[] a :hc ; :polarity :rx ; :v "104" ; :h "45" ; :bit "7" ; :offset "0x69" ; :name "HC105" .
[] a :hc ; :polarity :rx ; :v "104" ; :h "66" ; :bit "6" ; :offset "0x6A" ; :name "HC106" .
[] a :hc ; :polarity :rx ; :v "104" ; :h "69" ; :bit "7" ; :offset "0x6A" ; :name "HC106" .
[] a :hc ; :polarity :rx ; :v "104" ; :h "73" ; :bit "0" ; :offset "0x6B" ; :name "HC107" .
[] a :hc ; :polarity :rx ; :v "104" ; :h "76" ; :bit "1" ; :offset "0x6B" ; :name "HC107" .
[] a :hc ; :polarity :rx ; :v "105" ; :h "3" ; :bit "0" ; :offset "0x6C" ; :name "HC108" .
[] a :hc ; :polarity :rx ; :v "105" ; :h "5" ; :bit "1" ; :offset "0x6C" ; :name "HC108" .
[] a :hc ; :polarity :rx ; :v "105" ; :h "42" ; :bit "6" ; :offset "0x6D" ; :name "HC109" .
[] a :hc ; :polarity :rx ; :v "105" ; :h "44" ; :bit "7" ; :offset "0x6D" ; :name "HC109" .
[] a :hc ; :polarity :rx ; :v "105" ; :h "66" ; :bit "6" ; :offset "0x6E" ; :name "HC110" .
[] a :hc ; :polarity :rx ; :v "105" ; :h "68" ; :bit "7" ; :offset "0x6E" ; :name "HC110" .
[] a :hc ; :polarity :rx ; :v "105" ; :h "73" ; :bit "0" ; :offset "0x6F" ; :name "HC111" .
[] a :hc ; :polarity :rx ; :v "105" ; :h "77" ; :bit "1" ; :offset "0x6F" ; :name "HC111" .
[] a :hc ; :polarity :rx ; :v "106" ; :h "8" ; :bit "2" ; :offset "0x68" ; :name "HC104" .
[] a :hc ; :polarity :rx ; :v "106" ; :h "11" ; :bit "3" ; :offset "0x68" ; :name "HC104" .
[] a :hc ; :polarity :rx ; :v "106" ; :h "36" ; :bit "4" ; :offset "0x69" ; :name "HC105" .
[] a :hc ; :polarity :rx ; :v "106" ; :h "39" ; :bit "5" ; :offset "0x69" ; :name "HC105" .
[] a :hc ; :polarity :rx ; :v "106" ; :h "60" ; :bit "4" ; :offset "0x6A" ; :name "HC106" .
[] a :hc ; :polarity :rx ; :v "106" ; :h "63" ; :bit "5" ; :offset "0x6A" ; :name "HC106" .
[] a :hc ; :polarity :rx ; :v "106" ; :h "79" ; :bit "2" ; :offset "0x6B" ; :name "HC107" .
[] a :hc ; :polarity :rx ; :v "106" ; :h "82" ; :bit "3" ; :offset "0x6B" ; :name "HC107" .
[] a :hc ; :polarity :rx ; :v "107" ; :h "9" ; :bit "2" ; :offset "0x6C" ; :name "HC108" .
[] a :hc ; :polarity :rx ; :v "107" ; :h "11" ; :bit "3" ; :offset "0x6C" ; :name "HC108" .
[] a :hc ; :polarity :rx ; :v "107" ; :h "36" ; :bit "4" ; :offset "0x6D" ; :name "HC109" .
[] a :hc ; :polarity :rx ; :v "107" ; :h "38" ; :bit "5" ; :offset "0x6D" ; :name "HC109" .
[] a :hc ; :polarity :rx ; :v "107" ; :h "60" ; :bit "4" ; :offset "0x6E" ; :name "HC110" .
[] a :hc ; :polarity :rx ; :v "107" ; :h "62" ; :bit "5" ; :offset "0x6E" ; :name "HC110" .
[] a :hc ; :polarity :rx ; :v "107" ; :h "79" ; :bit "2" ; :offset "0x6F" ; :name "HC111" .
[] a :hc ; :polarity :rx ; :v "107" ; :h "83" ; :bit "3" ; :offset "0x6F" ; :name "HC111" .
[] a :hc ; :polarity :rx ; :v "108" ; :h "14" ; :bit "4" ; :offset "0x68" ; :name "HC104" .
[] a :hc ; :polarity :rx ; :v "108" ; :h "17" ; :bit "5" ; :offset "0x68" ; :name "HC104" .
[] a :hc ; :polarity :rx ; :v "108" ; :h "30" ; :bit "2" ; :offset "0x69" ; :name "HC105" .
[] a :hc ; :polarity :rx ; :v "108" ; :h "33" ; :bit "3" ; :offset "0x69" ; :name "HC105" .
[] a :hc ; :polarity :rx ; :v "108" ; :h "54" ; :bit "2" ; :offset "0x6A" ; :name "HC106" .
[] a :hc ; :polarity :rx ; :v "108" ; :h "57" ; :bit "3" ; :offset "0x6A" ; :name "HC106" .
[] a :hc ; :polarity :rx ; :v "108" ; :h "85" ; :bit "4" ; :offset "0x6B" ; :name "HC107" .
[] a :hc ; :polarity :rx ; :v "108" ; :h "88" ; :bit "5" ; :offset "0x6B" ; :name "HC107" .
[] a :hc ; :polarity :rx ; :v "109" ; :h "15" ; :bit "4" ; :offset "0x6C" ; :name "HC108" .
[] a :hc ; :polarity :rx ; :v "109" ; :h "17" ; :bit "5" ; :offset "0x6C" ; :name "HC108" .
[] a :hc ; :polarity :rx ; :v "109" ; :h "30" ; :bit "2" ; :offset "0x6D" ; :name "HC109" .
[] a :hc ; :polarity :rx ; :v "109" ; :h "32" ; :bit "3" ; :offset "0x6D" ; :name "HC109" .
[] a :hc ; :polarity :rx ; :v "109" ; :h "54" ; :bit "2" ; :offset "0x6E" ; :name "HC110" .
[] a :hc ; :polarity :rx ; :v "109" ; :h "56" ; :bit "3" ; :offset "0x6E" ; :name "HC110" .
[] a :hc ; :polarity :rx ; :v "109" ; :h "85" ; :bit "4" ; :offset "0x6F" ; :name "HC111" .
[] a :hc ; :polarity :rx ; :v "109" ; :h "89" ; :bit "5" ; :offset "0x6F" ; :name "HC111" .
[] a :hc ; :polarity :rx ; :v "110" ; :h "20" ; :bit "6" ; :offset "0x68" ; :name "HC104" .
[] a :hc ; :polarity :rx ; :v "110" ; :h "23" ; :bit "7" ; :offset "0x68" ; :name "HC104" .
[] a :hc ; :polarity :rx ; :v "110" ; :h "24" ; :bit "0" ; :offset "0x69" ; :name "HC105" .
[] a :hc ; :polarity :rx ; :v "110" ; :h "27" ; :bit "1" ; :offset "0x69" ; :name "HC105" .
[] a :hc ; :polarity :rx ; :v "110" ; :h "48" ; :bit "0" ; :offset "0x6A" ; :name "HC106" .
[] a :hc ; :polarity :rx ; :v "110" ; :h "51" ; :bit "1" ; :offset "0x6A" ; :name "HC106" .
[] a :hc ; :polarity :rx ; :v "110" ; :h "91" ; :bit "6" ; :offset "0x6B" ; :name "HC107" .
[] a :hc ; :polarity :rx ; :v "110" ; :h "94" ; :bit "7" ; :offset "0x6B" ; :name "HC107" .
[] a :hc ; :polarity :rx ; :v "111" ; :h "21" ; :bit "6" ; :offset "0x6C" ; :name "HC108" .
[] a :hc ; :polarity :rx ; :v "111" ; :h "23" ; :bit "7" ; :offset "0x6C" ; :name "HC108" .
[] a :hc ; :polarity :rx ; :v "111" ; :h "24" ; :bit "0" ; :offset "0x6D" ; :name "HC109" .
[] a :hc ; :polarity :rx ; :v "111" ; :h "26" ; :bit "1" ; :offset "0x6D" ; :name "HC109" .
[] a :hc ; :polarity :rx ; :v "111" ; :h "48" ; :bit "0" ; :offset "0x6E" ; :name "HC110" .
[] a :hc ; :polarity :rx ; :v "111" ; :h "50" ; :bit "1" ; :offset "0x6E" ; :name "HC110" .
[] a :hc ; :polarity :rx ; :v "111" ; :h "91" ; :bit "6" ; :offset "0x6F" ; :name "HC111" .
[] a :hc ; :polarity :rx ; :v "111" ; :h "95" ; :bit "7" ; :offset "0x6F" ; :name "HC111" .
[] a :hc ; :polarity :rx ; :v "112" ; :h "21" ; :bit "6" ; :offset "0x70" ; :name "HC112" .
[] a :hc ; :polarity :rx ; :v "112" ; :h "23" ; :bit "7" ; :offset "0x70" ; :name "HC112" .
[] a :hc ; :polarity :rx ; :v "112" ; :h "43" ; :bit "6" ; :offset "0x71" ; :name "HC113" .
[] a :hc ; :polarity :rx ; :v "112" ; :h "47" ; :bit "7" ; :offset "0x71" ; :name "HC113" .
[] a :hc ; :polarity :rx ; :v "112" ; :h "48" ; :bit "0" ; :offset "0x72" ; :name "HC114" .
[] a :hc ; :polarity :rx ; :v "112" ; :h "52" ; :bit "1" ; :offset "0x72" ; :name "HC114" .
[] a :hc ; :polarity :rx ; :v "112" ; :h "72" ; :bit "0" ; :offset "0x73" ; :name "HC115" .
[] a :hc ; :polarity :rx ; :v "112" ; :h "76" ; :bit "1" ; :offset "0x73" ; :name "HC115" .
[] a :hc ; :polarity :rx ; :v "113" ; :h "20" ; :bit "6" ; :offset "0x74" ; :name "HC116" .
[] a :hc ; :polarity :rx ; :v "113" ; :h "23" ; :bit "7" ; :offset "0x74" ; :name "HC116" .
[] a :hc ; :polarity :rx ; :v "113" ; :h "43" ; :bit "6" ; :offset "0x75" ; :name "HC117" .
[] a :hc ; :polarity :rx ; :v "113" ; :h "46" ; :bit "7" ; :offset "0x75" ; :name "HC117" .
[] a :hc ; :polarity :rx ; :v "113" ; :h "49" ; :bit "0" ; :offset "0x76" ; :name "HC118" .
[] a :hc ; :polarity :rx ; :v "113" ; :h "52" ; :bit "1" ; :offset "0x76" ; :name "HC118" .
[] a :hc ; :polarity :rx ; :v "113" ; :h "73" ; :bit "0" ; :offset "0x77" ; :name "HC119" .
[] a :hc ; :polarity :rx ; :v "113" ; :h "76" ; :bit "1" ; :offset "0x77" ; :name "HC119" .
[] a :hc ; :polarity :rx ; :v "114" ; :h "15" ; :bit "4" ; :offset "0x70" ; :name "HC112" .
[] a :hc ; :polarity :rx ; :v "114" ; :h "17" ; :bit "5" ; :offset "0x70" ; :name "HC112" .
[] a :hc ; :polarity :rx ; :v "114" ; :h "37" ; :bit "4" ; :offset "0x71" ; :name "HC113" .
[] a :hc ; :polarity :rx ; :v "114" ; :h "41" ; :bit "5" ; :offset "0x71" ; :name "HC113" .
[] a :hc ; :polarity :rx ; :v "114" ; :h "54" ; :bit "2" ; :offset "0x72" ; :name "HC114" .
[] a :hc ; :polarity :rx ; :v "114" ; :h "58" ; :bit "3" ; :offset "0x72" ; :name "HC114" .
[] a :hc ; :polarity :rx ; :v "114" ; :h "78" ; :bit "2" ; :offset "0x73" ; :name "HC115" .
[] a :hc ; :polarity :rx ; :v "114" ; :h "82" ; :bit "3" ; :offset "0x73" ; :name "HC115" .
[] a :hc ; :polarity :rx ; :v "115" ; :h "14" ; :bit "4" ; :offset "0x74" ; :name "HC116" .
[] a :hc ; :polarity :rx ; :v "115" ; :h "17" ; :bit "5" ; :offset "0x74" ; :name "HC116" .
[] a :hc ; :polarity :rx ; :v "115" ; :h "37" ; :bit "4" ; :offset "0x75" ; :name "HC117" .
[] a :hc ; :polarity :rx ; :v "115" ; :h "40" ; :bit "5" ; :offset "0x75" ; :name "HC117" .
[] a :hc ; :polarity :rx ; :v "115" ; :h "55" ; :bit "2" ; :offset "0x76" ; :name "HC118" .
[] a :hc ; :polarity :rx ; :v "115" ; :h "58" ; :bit "3" ; :offset "0x76" ; :name "HC118" .
[] a :hc ; :polarity :rx ; :v "115" ; :h "79" ; :bit "2" ; :offset "0x77" ; :name "HC119" .
[] a :hc ; :polarity :rx ; :v "115" ; :h "82" ; :bit "3" ; :offset "0x77" ; :name "HC119" .
[] a :hc ; :polarity :rx ; :v "116" ; :h "9" ; :bit "2" ; :offset "0x70" ; :name "HC112" .
[] a :hc ; :polarity :rx ; :v "116" ; :h "11" ; :bit "3" ; :offset "0x70" ; :name "HC112" .
[] a :hc ; :polarity :rx ; :v "116" ; :h "31" ; :bit "2" ; :offset "0x71" ; :name "HC113" .
[] a :hc ; :polarity :rx ; :v "116" ; :h "35" ; :bit "3" ; :offset "0x71" ; :name "HC113" .
[] a :hc ; :polarity :rx ; :v "116" ; :h "60" ; :bit "4" ; :offset "0x72" ; :name "HC114" .
[] a :hc ; :polarity :rx ; :v "116" ; :h "64" ; :bit "5" ; :offset "0x72" ; :name "HC114" .
[] a :hc ; :polarity :rx ; :v "116" ; :h "84" ; :bit "4" ; :offset "0x73" ; :name "HC115" .
[] a :hc ; :polarity :rx ; :v "116" ; :h "88" ; :bit "5" ; :offset "0x73" ; :name "HC115" .
[] a :hc ; :polarity :rx ; :v "117" ; :h "8" ; :bit "2" ; :offset "0x74" ; :name "HC116" .
[] a :hc ; :polarity :rx ; :v "117" ; :h "11" ; :bit "3" ; :offset "0x74" ; :name "HC116" .
[] a :hc ; :polarity :rx ; :v "117" ; :h "31" ; :bit "2" ; :offset "0x75" ; :name "HC117" .
[] a :hc ; :polarity :rx ; :v "117" ; :h "34" ; :bit "3" ; :offset "0x75" ; :name "HC117" .
[] a :hc ; :polarity :rx ; :v "117" ; :h "61" ; :bit "4" ; :offset "0x76" ; :name "HC118" .
[] a :hc ; :polarity :rx ; :v "117" ; :h "64" ; :bit "5" ; :offset "0x76" ; :name "HC118" .
[] a :hc ; :polarity :rx ; :v "117" ; :h "85" ; :bit "4" ; :offset "0x77" ; :name "HC119" .
[] a :hc ; :polarity :rx ; :v "117" ; :h "88" ; :bit "5" ; :offset "0x77" ; :name "HC119" .
[] a :hc ; :polarity :rx ; :v "118" ; :h "3" ; :bit "0" ; :offset "0x70" ; :name "HC112" .
[] a :hc ; :polarity :rx ; :v "118" ; :h "5" ; :bit "1" ; :offset "0x70" ; :name "HC112" .
[] a :hc ; :polarity :rx ; :v "118" ; :h "25" ; :bit "0" ; :offset "0x71" ; :name "HC113" .
[] a :hc ; :polarity :rx ; :v "118" ; :h "29" ; :bit "1" ; :offset "0x71" ; :name "HC113" .
[] a :hc ; :polarity :rx ; :v "118" ; :h "66" ; :bit "6" ; :offset "0x72" ; :name "HC114" .
[] a :hc ; :polarity :rx ; :v "118" ; :h "70" ; :bit "7" ; :offset "0x72" ; :name "HC114" .
[] a :hc ; :polarity :rx ; :v "118" ; :h "90" ; :bit "6" ; :offset "0x73" ; :name "HC115" .
[] a :hc ; :polarity :rx ; :v "118" ; :h "94" ; :bit "7" ; :offset "0x73" ; :name "HC115" .
[] a :hc ; :polarity :rx ; :v "119" ; :h "2" ; :bit "0" ; :offset "0x74" ; :name "HC116" .
[] a :hc ; :polarity :rx ; :v "119" ; :h "5" ; :bit "1" ; :offset "0x74" ; :name "HC116" .
[] a :hc ; :polarity :rx ; :v "119" ; :h "25" ; :bit "0" ; :offset "0x75" ; :name "HC117" .
[] a :hc ; :polarity :rx ; :v "119" ; :h "28" ; :bit "1" ; :offset "0x75" ; :name "HC117" .
[] a :hc ; :polarity :rx ; :v "119" ; :h "67" ; :bit "6" ; :offset "0x76" ; :name "HC118" .
[] a :hc ; :polarity :rx ; :v "119" ; :h "70" ; :bit "7" ; :offset "0x76" ; :name "HC118" .
[] a :hc ; :polarity :rx ; :v "119" ; :h "91" ; :bit "6" ; :offset "0x77" ; :name "HC119" .
[] a :hc ; :polarity :rx ; :v "119" ; :h "94" ; :bit "7" ; :offset "0x77" ; :name "HC119" .
[] a :hc ; :polarity :tx ; :v "120" ; :h "19" ; :bit "6" ; :offset "0x78" ; :name "HC120" .
[] a :hc ; :polarity :tx ; :v "120" ; :h "22" ; :bit "7" ; :offset "0x78" ; :name "HC120" .
[] a :hc ; :polarity :tx ; :v "120" ; :h "42" ; :bit "6" ; :offset "0x79" ; :name "HC121" .
[] a :hc ; :polarity :tx ; :v "120" ; :h "45" ; :bit "7" ; :offset "0x79" ; :name "HC121" .
[] a :hc ; :polarity :tx ; :v "120" ; :h "50" ; :bit "0" ; :offset "0x7A" ; :name "HC122" .
[] a :hc ; :polarity :tx ; :v "120" ; :h "53" ; :bit "1" ; :offset "0x7A" ; :name "HC122" .
[] a :hc ; :polarity :tx ; :v "120" ; :h "74" ; :bit "0" ; :offset "0x7B" ; :name "HC123" .
[] a :hc ; :polarity :tx ; :v "120" ; :h "77" ; :bit "1" ; :offset "0x7B" ; :name "HC123" .
[] a :hc ; :polarity :tx ; :v "121" ; :h "18" ; :bit "6" ; :offset "0x7C" ; :name "HC124" .
[] a :hc ; :polarity :tx ; :v "121" ; :h "22" ; :bit "7" ; :offset "0x7C" ; :name "HC124" .
[] a :hc ; :polarity :tx ; :v "121" ; :h "42" ; :bit "6" ; :offset "0x7D" ; :name "HC125" .
[] a :hc ; :polarity :tx ; :v "121" ; :h "44" ; :bit "7" ; :offset "0x7D" ; :name "HC125" .
[] a :hc ; :polarity :tx ; :v "121" ; :h "51" ; :bit "0" ; :offset "0x7E" ; :name "HC126" .
[] a :hc ; :polarity :tx ; :v "121" ; :h "53" ; :bit "1" ; :offset "0x7E" ; :name "HC126" .
[] a :hc ; :polarity :tx ; :v "121" ; :h "75" ; :bit "0" ; :offset "0x7F" ; :name "HC127" .
[] a :hc ; :polarity :tx ; :v "121" ; :h "77" ; :bit "1" ; :offset "0x7F" ; :name "HC127" .
[] a :hc ; :polarity :tx ; :v "122" ; :h "13" ; :bit "4" ; :offset "0x78" ; :name "HC120" .
[] a :hc ; :polarity :tx ; :v "122" ; :h "16" ; :bit "5" ; :offset "0x78" ; :name "HC120" .
[] a :hc ; :polarity :tx ; :v "122" ; :h "36" ; :bit "4" ; :offset "0x79" ; :name "HC121" .
[] a :hc ; :polarity :tx ; :v "122" ; :h "39" ; :bit "5" ; :offset "0x79" ; :name "HC121" .
[] a :hc ; :polarity :tx ; :v "122" ; :h "56" ; :bit "2" ; :offset "0x7A" ; :name "HC122" .
[] a :hc ; :polarity :tx ; :v "122" ; :h "59" ; :bit "3" ; :offset "0x7A" ; :name "HC122" .
[] a :hc ; :polarity :tx ; :v "122" ; :h "80" ; :bit "2" ; :offset "0x7B" ; :name "HC123" .
[] a :hc ; :polarity :tx ; :v "122" ; :h "83" ; :bit "3" ; :offset "0x7B" ; :name "HC123" .
[] a :hc ; :polarity :tx ; :v "123" ; :h "12" ; :bit "4" ; :offset "0x7C" ; :name "HC124" .
[] a :hc ; :polarity :tx ; :v "123" ; :h "16" ; :bit "5" ; :offset "0x7C" ; :name "HC124" .
[] a :hc ; :polarity :tx ; :v "123" ; :h "36" ; :bit "4" ; :offset "0x7D" ; :name "HC125" .
[] a :hc ; :polarity :tx ; :v "123" ; :h "38" ; :bit "5" ; :offset "0x7D" ; :name "HC125" .
[] a :hc ; :polarity :tx ; :v "123" ; :h "57" ; :bit "2" ; :offset "0x7E" ; :name "HC126" .
[] a :hc ; :polarity :tx ; :v "123" ; :h "59" ; :bit "3" ; :offset "0x7E" ; :name "HC126" .
[] a :hc ; :polarity :tx ; :v "123" ; :h "81" ; :bit "2" ; :offset "0x7F" ; :name "HC127" .
[] a :hc ; :polarity :tx ; :v "123" ; :h "83" ; :bit "3" ; :offset "0x7F" ; :name "HC127" .
[] a :hc ; :polarity :tx ; :v "124" ; :h "7" ; :bit "2" ; :offset "0x78" ; :name "HC120" .
[] a :hc ; :polarity :tx ; :v "124" ; :h "10" ; :bit "3" ; :offset "0x78" ; :name "HC120" .
[] a :hc ; :polarity :tx ; :v "124" ; :h "30" ; :bit "2" ; :offset "0x79" ; :name "HC121" .
[] a :hc ; :polarity :tx ; :v "124" ; :h "33" ; :bit "3" ; :offset "0x79" ; :name "HC121" .
[] a :hc ; :polarity :tx ; :v "124" ; :h "62" ; :bit "4" ; :offset "0x7A" ; :name "HC122" .
[] a :hc ; :polarity :tx ; :v "124" ; :h "65" ; :bit "5" ; :offset "0x7A" ; :name "HC122" .
[] a :hc ; :polarity :tx ; :v "124" ; :h "86" ; :bit "4" ; :offset "0x7B" ; :name "HC123" .