summaryrefslogtreecommitdiff
path: root/web/yacco2/qa/lr1_sp2tbl.cpp
blob: 3cc36e45bffa738191d5f9699908dbb7a660e6d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
/*
 File: lr1_sp2tbl.cpp
 Date and Time: Mon Oct 13 18:18:12 2014 
*/
#include "lr1_sp2.h"
using namespace NS_yacco2_T_enum;// enumerate
using namespace NS_yacco2_err_symbols;// error symbols
using namespace NS_yacco2_k_symbols;// lrk 
using namespace NS_yacco2_terminals;// terminals
using namespace NS_yacco2_characters;// rc 
using namespace yacco2;// yacco2 library
using namespace NS_lr1_sp2;// grammar's ns
// first set terminals
// LR1_eog
yacco2::UCHAR LA1_Clr1_sp2_fsm[] ={
1
,0,2
};
// LR1_eolr
yacco2::UCHAR LA2_Clr1_sp2_fsm[] ={
1
,0,4
};
// raw_a
yacco2::UCHAR LA3_Clr1_sp2_fsm[] ={
1
,13,2
};
// raw_b
yacco2::UCHAR LA4_Clr1_sp2_fsm[] ={
1
,13,4
};
// raw_c
yacco2::UCHAR LA5_Clr1_sp2_fsm[] ={
1
,13,8
};
// raw_d
yacco2::UCHAR LA6_Clr1_sp2_fsm[] ={
1
,13,16
};
extern yacco2::State S1_Clr1_sp2_fsm;
extern yacco2::State S2_Clr1_sp2_fsm;
extern yacco2::State S3_Clr1_sp2_fsm;
extern yacco2::State S4_Clr1_sp2_fsm;
extern yacco2::State S5_Clr1_sp2_fsm;
extern yacco2::State S6_Clr1_sp2_fsm;
extern yacco2::State S7_Clr1_sp2_fsm;
extern yacco2::State S8_Clr1_sp2_fsm;
extern yacco2::State S9_Clr1_sp2_fsm;
extern yacco2::State S10_Clr1_sp2_fsm;
extern yacco2::State S11_Clr1_sp2_fsm;
extern yacco2::State S12_Clr1_sp2_fsm;
extern yacco2::State S13_Clr1_sp2_fsm;
extern yacco2::State S14_Clr1_sp2_fsm;
extern yacco2::State S15_Clr1_sp2_fsm;
extern yacco2::State S16_Clr1_sp2_fsm;
extern yacco2::State S17_Clr1_sp2_fsm;
extern yacco2::State S18_Clr1_sp2_fsm;
extern yacco2::State S19_Clr1_sp2_fsm;
extern yacco2::State S20_Clr1_sp2_fsm;
extern yacco2::State S21_Clr1_sp2_fsm;
extern yacco2::State S22_Clr1_sp2_fsm;
extern yacco2::State S23_Clr1_sp2_fsm;
extern yacco2::State S24_Clr1_sp2_fsm;
extern yacco2::State S25_Clr1_sp2_fsm;
extern yacco2::State S26_Clr1_sp2_fsm;
extern yacco2::State S27_Clr1_sp2_fsm;
extern yacco2::State S28_Clr1_sp2_fsm;
extern yacco2::State S29_Clr1_sp2_fsm;
extern yacco2::State S30_Clr1_sp2_fsm;
extern yacco2::State S31_Clr1_sp2_fsm;
extern yacco2::State S32_Clr1_sp2_fsm;
extern yacco2::State S33_Clr1_sp2_fsm;
extern yacco2::State S34_Clr1_sp2_fsm;
extern yacco2::State S35_Clr1_sp2_fsm;
extern yacco2::State S36_Clr1_sp2_fsm;
extern yacco2::State S37_Clr1_sp2_fsm;
extern yacco2::State S38_Clr1_sp2_fsm;
extern yacco2::State S39_Clr1_sp2_fsm;
extern yacco2::State S40_Clr1_sp2_fsm;
extern yacco2::State S41_Clr1_sp2_fsm;
extern yacco2::State S42_Clr1_sp2_fsm;
extern yacco2::State S43_Clr1_sp2_fsm;
extern yacco2::State S44_Clr1_sp2_fsm;
extern yacco2::State S45_Clr1_sp2_fsm;
extern yacco2::State S46_Clr1_sp2_fsm;
extern yacco2::State S47_Clr1_sp2_fsm;
extern yacco2::State S48_Clr1_sp2_fsm;
extern yacco2::State S49_Clr1_sp2_fsm;
extern yacco2::State S50_Clr1_sp2_fsm;
extern yacco2::State S51_Clr1_sp2_fsm;
extern yacco2::State S52_Clr1_sp2_fsm;
extern yacco2::State S53_Clr1_sp2_fsm;
extern yacco2::State S54_Clr1_sp2_fsm;
extern yacco2::State S55_Clr1_sp2_fsm;
extern yacco2::State S56_Clr1_sp2_fsm;
extern yacco2::State S57_Clr1_sp2_fsm;
extern yacco2::State S58_Clr1_sp2_fsm;
extern yacco2::State S59_Clr1_sp2_fsm;
extern yacco2::State S60_Clr1_sp2_fsm;
extern yacco2::State S61_Clr1_sp2_fsm;
extern yacco2::State S62_Clr1_sp2_fsm;
extern yacco2::State S63_Clr1_sp2_fsm;
extern yacco2::State S64_Clr1_sp2_fsm;
extern yacco2::State S65_Clr1_sp2_fsm;
extern yacco2::State S66_Clr1_sp2_fsm;
extern yacco2::State S67_Clr1_sp2_fsm;
extern yacco2::State S68_Clr1_sp2_fsm;
extern yacco2::State S69_Clr1_sp2_fsm;
extern yacco2::State S70_Clr1_sp2_fsm;
extern yacco2::State S71_Clr1_sp2_fsm;
extern yacco2::State S72_Clr1_sp2_fsm;
extern yacco2::State S73_Clr1_sp2_fsm;
extern yacco2::State S74_Clr1_sp2_fsm;
extern yacco2::State S75_Clr1_sp2_fsm;
extern yacco2::State S76_Clr1_sp2_fsm;
extern yacco2::State S77_Clr1_sp2_fsm;
extern yacco2::State S78_Clr1_sp2_fsm;
extern yacco2::State S79_Clr1_sp2_fsm;
extern yacco2::State S80_Clr1_sp2_fsm;
extern yacco2::State S81_Clr1_sp2_fsm;
extern yacco2::State S82_Clr1_sp2_fsm;
extern yacco2::State S83_Clr1_sp2_fsm;
struct S1std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[6];
};
S1std_Clr1_sp2_fsm S1st_Clr1_sp2_fsm = {
 6
 ,
  {// start of table
   {124,(State*)&S2_Clr1_sp2_fsm} // shift sym: raw_t
   ,{125,(State*)&S11_Clr1_sp2_fsm} // shift sym: raw_u
   ,{126,(State*)&S20_Clr1_sp2_fsm} // shift sym: raw_v
   ,{127,(State*)&S29_Clr1_sp2_fsm} // shift sym: raw_w
   ,{569,(State*)&S1_Clr1_sp2_fsm} // accept sym: Rlr1_sp2
   ,{570,(State*)&S38_Clr1_sp2_fsm} // shift sym: RS
  }// end of shift table
};
yacco2::State S1_Clr1_sp2_fsm = //State's vectored into symbol: " No symbol" 
{1
,0,0,0,0,(Shift_tbl*)&S1st_Clr1_sp2_fsm,0,0,0,0};
struct S2std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[6];
};
S2std_Clr1_sp2_fsm S2st_Clr1_sp2_fsm = {
 6
 ,
  {// start of table
   {128,(State*)&S40_Clr1_sp2_fsm} // shift sym: raw_x
   ,{129,(State*)&S46_Clr1_sp2_fsm} // shift sym: raw_y
   ,{571,(State*)&S3_Clr1_sp2_fsm} // shift sym: RE
   ,{572,(State*)&S5_Clr1_sp2_fsm} // shift sym: RF
   ,{573,(State*)&S7_Clr1_sp2_fsm} // shift sym: RG
   ,{574,(State*)&S9_Clr1_sp2_fsm} // shift sym: RH
  }// end of shift table
};
yacco2::State S2_Clr1_sp2_fsm = //State's vectored into symbol: "t" 
{2
,0,0,0,0,(Shift_tbl*)&S2st_Clr1_sp2_fsm,0,0,0,0};
struct S3std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S3std_Clr1_sp2_fsm S3st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {105,(State*)&S4_Clr1_sp2_fsm} // shift sym: raw_a
  }// end of shift table
};
yacco2::State S3_Clr1_sp2_fsm = //State's vectored into symbol: "RE" 
{3
,0,0,0,0,(Shift_tbl*)&S3st_Clr1_sp2_fsm,0,0,0,0};
struct S4rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S4rtd_Clr1_sp2_fsm S4rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RS_}
 }// end of reduce table
};
yacco2::State S4_Clr1_sp2_fsm = //State's vectored into symbol: "a" 
{4
,0,0,0,0,0,(Reduce_tbl*)&S4rt_Clr1_sp2_fsm,0,0,0};
struct S5std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S5std_Clr1_sp2_fsm S5st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {106,(State*)&S6_Clr1_sp2_fsm} // shift sym: raw_b
  }// end of shift table
};
yacco2::State S5_Clr1_sp2_fsm = //State's vectored into symbol: "RF" 
{5
,0,0,0,0,(Shift_tbl*)&S5st_Clr1_sp2_fsm,0,0,0,0};
struct S6rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S6rtd_Clr1_sp2_fsm S6rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RS_}
 }// end of reduce table
};
yacco2::State S6_Clr1_sp2_fsm = //State's vectored into symbol: "b" 
{6
,0,0,0,0,0,(Reduce_tbl*)&S6rt_Clr1_sp2_fsm,0,0,0};
struct S7std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S7std_Clr1_sp2_fsm S7st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {107,(State*)&S8_Clr1_sp2_fsm} // shift sym: raw_c
  }// end of shift table
};
yacco2::State S7_Clr1_sp2_fsm = //State's vectored into symbol: "RG" 
{7
,0,0,0,0,(Shift_tbl*)&S7st_Clr1_sp2_fsm,0,0,0,0};
struct S8rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S8rtd_Clr1_sp2_fsm S8rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs3_RS_}
 }// end of reduce table
};
yacco2::State S8_Clr1_sp2_fsm = //State's vectored into symbol: "c" 
{8
,0,0,0,0,0,(Reduce_tbl*)&S8rt_Clr1_sp2_fsm,0,0,0};
struct S9std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S9std_Clr1_sp2_fsm S9st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {108,(State*)&S10_Clr1_sp2_fsm} // shift sym: raw_d
  }// end of shift table
};
yacco2::State S9_Clr1_sp2_fsm = //State's vectored into symbol: "RH" 
{9
,0,0,0,0,(Shift_tbl*)&S9st_Clr1_sp2_fsm,0,0,0,0};
struct S10rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S10rtd_Clr1_sp2_fsm S10rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs4_RS_}
 }// end of reduce table
};
yacco2::State S10_Clr1_sp2_fsm = //State's vectored into symbol: "d" 
{10
,0,0,0,0,0,(Reduce_tbl*)&S10rt_Clr1_sp2_fsm,0,0,0};
struct S11std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[6];
};
S11std_Clr1_sp2_fsm S11st_Clr1_sp2_fsm = {
 6
 ,
  {// start of table
   {128,(State*)&S52_Clr1_sp2_fsm} // shift sym: raw_x
   ,{129,(State*)&S57_Clr1_sp2_fsm} // shift sym: raw_y
   ,{571,(State*)&S12_Clr1_sp2_fsm} // shift sym: RE
   ,{572,(State*)&S14_Clr1_sp2_fsm} // shift sym: RF
   ,{573,(State*)&S16_Clr1_sp2_fsm} // shift sym: RG
   ,{574,(State*)&S18_Clr1_sp2_fsm} // shift sym: RH
  }// end of shift table
};
yacco2::State S11_Clr1_sp2_fsm = //State's vectored into symbol: "u" 
{11
,0,0,0,0,(Shift_tbl*)&S11st_Clr1_sp2_fsm,0,0,0,0};
struct S12std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S12std_Clr1_sp2_fsm S12st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {106,(State*)&S13_Clr1_sp2_fsm} // shift sym: raw_b
  }// end of shift table
};
yacco2::State S12_Clr1_sp2_fsm = //State's vectored into symbol: "RE" 
{12
,0,0,0,0,(Shift_tbl*)&S12st_Clr1_sp2_fsm,0,0,0,0};
struct S13rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S13rtd_Clr1_sp2_fsm S13rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs5_RS_}
 }// end of reduce table
};
yacco2::State S13_Clr1_sp2_fsm = //State's vectored into symbol: "b" 
{13
,0,0,0,0,0,(Reduce_tbl*)&S13rt_Clr1_sp2_fsm,0,0,0};
struct S14std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S14std_Clr1_sp2_fsm S14st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {107,(State*)&S15_Clr1_sp2_fsm} // shift sym: raw_c
  }// end of shift table
};
yacco2::State S14_Clr1_sp2_fsm = //State's vectored into symbol: "RF" 
{14
,0,0,0,0,(Shift_tbl*)&S14st_Clr1_sp2_fsm,0,0,0,0};
struct S15rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S15rtd_Clr1_sp2_fsm S15rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs6_RS_}
 }// end of reduce table
};
yacco2::State S15_Clr1_sp2_fsm = //State's vectored into symbol: "c" 
{15
,0,0,0,0,0,(Reduce_tbl*)&S15rt_Clr1_sp2_fsm,0,0,0};
struct S16std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S16std_Clr1_sp2_fsm S16st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {108,(State*)&S17_Clr1_sp2_fsm} // shift sym: raw_d
  }// end of shift table
};
yacco2::State S16_Clr1_sp2_fsm = //State's vectored into symbol: "RG" 
{16
,0,0,0,0,(Shift_tbl*)&S16st_Clr1_sp2_fsm,0,0,0,0};
struct S17rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S17rtd_Clr1_sp2_fsm S17rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs7_RS_}
 }// end of reduce table
};
yacco2::State S17_Clr1_sp2_fsm = //State's vectored into symbol: "d" 
{17
,0,0,0,0,0,(Reduce_tbl*)&S17rt_Clr1_sp2_fsm,0,0,0};
struct S18std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S18std_Clr1_sp2_fsm S18st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {105,(State*)&S19_Clr1_sp2_fsm} // shift sym: raw_a
  }// end of shift table
};
yacco2::State S18_Clr1_sp2_fsm = //State's vectored into symbol: "RH" 
{18
,0,0,0,0,(Shift_tbl*)&S18st_Clr1_sp2_fsm,0,0,0,0};
struct S19rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S19rtd_Clr1_sp2_fsm S19rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs8_RS_}
 }// end of reduce table
};
yacco2::State S19_Clr1_sp2_fsm = //State's vectored into symbol: "a" 
{19
,0,0,0,0,0,(Reduce_tbl*)&S19rt_Clr1_sp2_fsm,0,0,0};
struct S20std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[6];
};
S20std_Clr1_sp2_fsm S20st_Clr1_sp2_fsm = {
 6
 ,
  {// start of table
   {128,(State*)&S63_Clr1_sp2_fsm} // shift sym: raw_x
   ,{129,(State*)&S68_Clr1_sp2_fsm} // shift sym: raw_y
   ,{571,(State*)&S21_Clr1_sp2_fsm} // shift sym: RE
   ,{572,(State*)&S23_Clr1_sp2_fsm} // shift sym: RF
   ,{573,(State*)&S25_Clr1_sp2_fsm} // shift sym: RG
   ,{574,(State*)&S27_Clr1_sp2_fsm} // shift sym: RH
  }// end of shift table
};
yacco2::State S20_Clr1_sp2_fsm = //State's vectored into symbol: "v" 
{20
,0,0,0,0,(Shift_tbl*)&S20st_Clr1_sp2_fsm,0,0,0,0};
struct S21std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S21std_Clr1_sp2_fsm S21st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {107,(State*)&S22_Clr1_sp2_fsm} // shift sym: raw_c
  }// end of shift table
};
yacco2::State S21_Clr1_sp2_fsm = //State's vectored into symbol: "RE" 
{21
,0,0,0,0,(Shift_tbl*)&S21st_Clr1_sp2_fsm,0,0,0,0};
struct S22rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S22rtd_Clr1_sp2_fsm S22rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs9_RS_}
 }// end of reduce table
};
yacco2::State S22_Clr1_sp2_fsm = //State's vectored into symbol: "c" 
{22
,0,0,0,0,0,(Reduce_tbl*)&S22rt_Clr1_sp2_fsm,0,0,0};
struct S23std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S23std_Clr1_sp2_fsm S23st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {108,(State*)&S24_Clr1_sp2_fsm} // shift sym: raw_d
  }// end of shift table
};
yacco2::State S23_Clr1_sp2_fsm = //State's vectored into symbol: "RF" 
{23
,0,0,0,0,(Shift_tbl*)&S23st_Clr1_sp2_fsm,0,0,0,0};
struct S24rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S24rtd_Clr1_sp2_fsm S24rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs10_RS_}
 }// end of reduce table
};
yacco2::State S24_Clr1_sp2_fsm = //State's vectored into symbol: "d" 
{24
,0,0,0,0,0,(Reduce_tbl*)&S24rt_Clr1_sp2_fsm,0,0,0};
struct S25std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S25std_Clr1_sp2_fsm S25st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {105,(State*)&S26_Clr1_sp2_fsm} // shift sym: raw_a
  }// end of shift table
};
yacco2::State S25_Clr1_sp2_fsm = //State's vectored into symbol: "RG" 
{25
,0,0,0,0,(Shift_tbl*)&S25st_Clr1_sp2_fsm,0,0,0,0};
struct S26rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S26rtd_Clr1_sp2_fsm S26rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs11_RS_}
 }// end of reduce table
};
yacco2::State S26_Clr1_sp2_fsm = //State's vectored into symbol: "a" 
{26
,0,0,0,0,0,(Reduce_tbl*)&S26rt_Clr1_sp2_fsm,0,0,0};
struct S27std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S27std_Clr1_sp2_fsm S27st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {106,(State*)&S28_Clr1_sp2_fsm} // shift sym: raw_b
  }// end of shift table
};
yacco2::State S27_Clr1_sp2_fsm = //State's vectored into symbol: "RH" 
{27
,0,0,0,0,(Shift_tbl*)&S27st_Clr1_sp2_fsm,0,0,0,0};
struct S28rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S28rtd_Clr1_sp2_fsm S28rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs12_RS_}
 }// end of reduce table
};
yacco2::State S28_Clr1_sp2_fsm = //State's vectored into symbol: "b" 
{28
,0,0,0,0,0,(Reduce_tbl*)&S28rt_Clr1_sp2_fsm,0,0,0};
struct S29std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[6];
};
S29std_Clr1_sp2_fsm S29st_Clr1_sp2_fsm = {
 6
 ,
  {// start of table
   {128,(State*)&S74_Clr1_sp2_fsm} // shift sym: raw_x
   ,{129,(State*)&S79_Clr1_sp2_fsm} // shift sym: raw_y
   ,{571,(State*)&S30_Clr1_sp2_fsm} // shift sym: RE
   ,{572,(State*)&S32_Clr1_sp2_fsm} // shift sym: RF
   ,{573,(State*)&S34_Clr1_sp2_fsm} // shift sym: RG
   ,{574,(State*)&S36_Clr1_sp2_fsm} // shift sym: RH
  }// end of shift table
};
yacco2::State S29_Clr1_sp2_fsm = //State's vectored into symbol: "w" 
{29
,0,0,0,0,(Shift_tbl*)&S29st_Clr1_sp2_fsm,0,0,0,0};
struct S30std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S30std_Clr1_sp2_fsm S30st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {108,(State*)&S31_Clr1_sp2_fsm} // shift sym: raw_d
  }// end of shift table
};
yacco2::State S30_Clr1_sp2_fsm = //State's vectored into symbol: "RE" 
{30
,0,0,0,0,(Shift_tbl*)&S30st_Clr1_sp2_fsm,0,0,0,0};
struct S31rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S31rtd_Clr1_sp2_fsm S31rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs13_RS_}
 }// end of reduce table
};
yacco2::State S31_Clr1_sp2_fsm = //State's vectored into symbol: "d" 
{31
,0,0,0,0,0,(Reduce_tbl*)&S31rt_Clr1_sp2_fsm,0,0,0};
struct S32std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S32std_Clr1_sp2_fsm S32st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {105,(State*)&S33_Clr1_sp2_fsm} // shift sym: raw_a
  }// end of shift table
};
yacco2::State S32_Clr1_sp2_fsm = //State's vectored into symbol: "RF" 
{32
,0,0,0,0,(Shift_tbl*)&S32st_Clr1_sp2_fsm,0,0,0,0};
struct S33rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S33rtd_Clr1_sp2_fsm S33rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs14_RS_}
 }// end of reduce table
};
yacco2::State S33_Clr1_sp2_fsm = //State's vectored into symbol: "a" 
{33
,0,0,0,0,0,(Reduce_tbl*)&S33rt_Clr1_sp2_fsm,0,0,0};
struct S34std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S34std_Clr1_sp2_fsm S34st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {106,(State*)&S35_Clr1_sp2_fsm} // shift sym: raw_b
  }// end of shift table
};
yacco2::State S34_Clr1_sp2_fsm = //State's vectored into symbol: "RG" 
{34
,0,0,0,0,(Shift_tbl*)&S34st_Clr1_sp2_fsm,0,0,0,0};
struct S35rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S35rtd_Clr1_sp2_fsm S35rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs15_RS_}
 }// end of reduce table
};
yacco2::State S35_Clr1_sp2_fsm = //State's vectored into symbol: "b" 
{35
,0,0,0,0,0,(Reduce_tbl*)&S35rt_Clr1_sp2_fsm,0,0,0};
struct S36std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S36std_Clr1_sp2_fsm S36st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {107,(State*)&S37_Clr1_sp2_fsm} // shift sym: raw_c
  }// end of shift table
};
yacco2::State S36_Clr1_sp2_fsm = //State's vectored into symbol: "RH" 
{36
,0,0,0,0,(Shift_tbl*)&S36st_Clr1_sp2_fsm,0,0,0,0};
struct S37rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S37rtd_Clr1_sp2_fsm S37rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA1_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs16_RS_}
 }// end of reduce table
};
yacco2::State S37_Clr1_sp2_fsm = //State's vectored into symbol: "c" 
{37
,0,0,0,0,0,(Reduce_tbl*)&S37rt_Clr1_sp2_fsm,0,0,0};
struct S38std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[1];
};
S38std_Clr1_sp2_fsm S38st_Clr1_sp2_fsm = {
 1
 ,
  {// start of table
   {1,(State*)&S39_Clr1_sp2_fsm} // shift sym: LR1_eog
  }// end of shift table
};
yacco2::State S38_Clr1_sp2_fsm = //State's vectored into symbol: "RS" 
{38
,0,0,0,0,(Shift_tbl*)&S38st_Clr1_sp2_fsm,0,0,0,0};
struct S39rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S39rtd_Clr1_sp2_fsm S39rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA2_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_Rlr1_sp2_}
 }// end of reduce table
};
yacco2::State S39_Clr1_sp2_fsm = //State's vectored into symbol: "eog" 
{39
,0,0,0,0,0,(Reduce_tbl*)&S39rt_Clr1_sp2_fsm,0,0,0};
struct S40std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[5];
};
S40std_Clr1_sp2_fsm S40st_Clr1_sp2_fsm = {
 5
 ,
  {// start of table
   {130,(State*)&S41_Clr1_sp2_fsm} // shift sym: raw_z
   ,{575,(State*)&S42_Clr1_sp2_fsm} // shift sym: RA
   ,{576,(State*)&S43_Clr1_sp2_fsm} // shift sym: RB
   ,{577,(State*)&S44_Clr1_sp2_fsm} // shift sym: RC
   ,{578,(State*)&S45_Clr1_sp2_fsm} // shift sym: RD
  }// end of shift table
};
yacco2::State S40_Clr1_sp2_fsm = //State's vectored into symbol: "x" 
{40
,0,0,0,0,(Shift_tbl*)&S40st_Clr1_sp2_fsm,0,0,0,0};
struct S41rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[4];
};
S41rtd_Clr1_sp2_fsm S41rt_Clr1_sp2_fsm = {
 4
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RA_}
  ,{(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RB_}
  ,{(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RC_}
  ,{(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RD_}
 }// end of reduce table
};
yacco2::State S41_Clr1_sp2_fsm = //State's vectored into symbol: "z" 
{41
,0,0,0,0,0,(Reduce_tbl*)&S41rt_Clr1_sp2_fsm,0,0,0};
struct S42rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S42rtd_Clr1_sp2_fsm S42rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RE_}
 }// end of reduce table
};
yacco2::State S42_Clr1_sp2_fsm = //State's vectored into symbol: "RA" 
{42
,0,0,0,0,0,(Reduce_tbl*)&S42rt_Clr1_sp2_fsm,0,0,0};
struct S43rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S43rtd_Clr1_sp2_fsm S43rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RF_}
 }// end of reduce table
};
yacco2::State S43_Clr1_sp2_fsm = //State's vectored into symbol: "RB" 
{43
,0,0,0,0,0,(Reduce_tbl*)&S43rt_Clr1_sp2_fsm,0,0,0};
struct S44rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S44rtd_Clr1_sp2_fsm S44rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RG_}
 }// end of reduce table
};
yacco2::State S44_Clr1_sp2_fsm = //State's vectored into symbol: "RC" 
{44
,0,0,0,0,0,(Reduce_tbl*)&S44rt_Clr1_sp2_fsm,0,0,0};
struct S45rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S45rtd_Clr1_sp2_fsm S45rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RH_}
 }// end of reduce table
};
yacco2::State S45_Clr1_sp2_fsm = //State's vectored into symbol: "RD" 
{45
,0,0,0,0,0,(Reduce_tbl*)&S45rt_Clr1_sp2_fsm,0,0,0};
struct S46std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[5];
};
S46std_Clr1_sp2_fsm S46st_Clr1_sp2_fsm = {
 5
 ,
  {// start of table
   {130,(State*)&S47_Clr1_sp2_fsm} // shift sym: raw_z
   ,{575,(State*)&S48_Clr1_sp2_fsm} // shift sym: RA
   ,{576,(State*)&S49_Clr1_sp2_fsm} // shift sym: RB
   ,{577,(State*)&S50_Clr1_sp2_fsm} // shift sym: RC
   ,{578,(State*)&S51_Clr1_sp2_fsm} // shift sym: RD
  }// end of shift table
};
yacco2::State S46_Clr1_sp2_fsm = //State's vectored into symbol: "y" 
{46
,0,0,0,0,(Shift_tbl*)&S46st_Clr1_sp2_fsm,0,0,0,0};
struct S47rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[4];
};
S47rtd_Clr1_sp2_fsm S47rt_Clr1_sp2_fsm = {
 4
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RA_}
  ,{(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RB_}
  ,{(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RC_}
  ,{(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RD_}
 }// end of reduce table
};
yacco2::State S47_Clr1_sp2_fsm = //State's vectored into symbol: "z" 
{47
,0,0,0,0,0,(Reduce_tbl*)&S47rt_Clr1_sp2_fsm,0,0,0};
struct S48rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S48rtd_Clr1_sp2_fsm S48rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RF_}
 }// end of reduce table
};
yacco2::State S48_Clr1_sp2_fsm = //State's vectored into symbol: "RA" 
{48
,0,0,0,0,0,(Reduce_tbl*)&S48rt_Clr1_sp2_fsm,0,0,0};
struct S49rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S49rtd_Clr1_sp2_fsm S49rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RG_}
 }// end of reduce table
};
yacco2::State S49_Clr1_sp2_fsm = //State's vectored into symbol: "RB" 
{49
,0,0,0,0,0,(Reduce_tbl*)&S49rt_Clr1_sp2_fsm,0,0,0};
struct S50rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S50rtd_Clr1_sp2_fsm S50rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RH_}
 }// end of reduce table
};
yacco2::State S50_Clr1_sp2_fsm = //State's vectored into symbol: "RC" 
{50
,0,0,0,0,0,(Reduce_tbl*)&S50rt_Clr1_sp2_fsm,0,0,0};
struct S51rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S51rtd_Clr1_sp2_fsm S51rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RE_}
 }// end of reduce table
};
yacco2::State S51_Clr1_sp2_fsm = //State's vectored into symbol: "RD" 
{51
,0,0,0,0,0,(Reduce_tbl*)&S51rt_Clr1_sp2_fsm,0,0,0};
struct S52std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[5];
};
S52std_Clr1_sp2_fsm S52st_Clr1_sp2_fsm = {
 5
 ,
  {// start of table
   {130,(State*)&S47_Clr1_sp2_fsm} // shift sym: raw_z
   ,{575,(State*)&S53_Clr1_sp2_fsm} // shift sym: RA
   ,{576,(State*)&S54_Clr1_sp2_fsm} // shift sym: RB
   ,{577,(State*)&S55_Clr1_sp2_fsm} // shift sym: RC
   ,{578,(State*)&S56_Clr1_sp2_fsm} // shift sym: RD
  }// end of shift table
};
yacco2::State S52_Clr1_sp2_fsm = //State's vectored into symbol: "x" 
{52
,0,0,0,0,(Shift_tbl*)&S52st_Clr1_sp2_fsm,0,0,0,0};
struct S53rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S53rtd_Clr1_sp2_fsm S53rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RE_}
 }// end of reduce table
};
yacco2::State S53_Clr1_sp2_fsm = //State's vectored into symbol: "RA" 
{53
,0,0,0,0,0,(Reduce_tbl*)&S53rt_Clr1_sp2_fsm,0,0,0};
struct S54rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S54rtd_Clr1_sp2_fsm S54rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RF_}
 }// end of reduce table
};
yacco2::State S54_Clr1_sp2_fsm = //State's vectored into symbol: "RB" 
{54
,0,0,0,0,0,(Reduce_tbl*)&S54rt_Clr1_sp2_fsm,0,0,0};
struct S55rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S55rtd_Clr1_sp2_fsm S55rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RG_}
 }// end of reduce table
};
yacco2::State S55_Clr1_sp2_fsm = //State's vectored into symbol: "RC" 
{55
,0,0,0,0,0,(Reduce_tbl*)&S55rt_Clr1_sp2_fsm,0,0,0};
struct S56rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S56rtd_Clr1_sp2_fsm S56rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RH_}
 }// end of reduce table
};
yacco2::State S56_Clr1_sp2_fsm = //State's vectored into symbol: "RD" 
{56
,0,0,0,0,0,(Reduce_tbl*)&S56rt_Clr1_sp2_fsm,0,0,0};
struct S57std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[5];
};
S57std_Clr1_sp2_fsm S57st_Clr1_sp2_fsm = {
 5
 ,
  {// start of table
   {130,(State*)&S58_Clr1_sp2_fsm} // shift sym: raw_z
   ,{575,(State*)&S59_Clr1_sp2_fsm} // shift sym: RA
   ,{576,(State*)&S60_Clr1_sp2_fsm} // shift sym: RB
   ,{577,(State*)&S61_Clr1_sp2_fsm} // shift sym: RC
   ,{578,(State*)&S62_Clr1_sp2_fsm} // shift sym: RD
  }// end of shift table
};
yacco2::State S57_Clr1_sp2_fsm = //State's vectored into symbol: "y" 
{57
,0,0,0,0,(Shift_tbl*)&S57st_Clr1_sp2_fsm,0,0,0,0};
struct S58rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[4];
};
S58rtd_Clr1_sp2_fsm S58rt_Clr1_sp2_fsm = {
 4
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RA_}
  ,{(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RB_}
  ,{(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RC_}
  ,{(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RD_}
 }// end of reduce table
};
yacco2::State S58_Clr1_sp2_fsm = //State's vectored into symbol: "z" 
{58
,0,0,0,0,0,(Reduce_tbl*)&S58rt_Clr1_sp2_fsm,0,0,0};
struct S59rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S59rtd_Clr1_sp2_fsm S59rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RF_}
 }// end of reduce table
};
yacco2::State S59_Clr1_sp2_fsm = //State's vectored into symbol: "RA" 
{59
,0,0,0,0,0,(Reduce_tbl*)&S59rt_Clr1_sp2_fsm,0,0,0};
struct S60rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S60rtd_Clr1_sp2_fsm S60rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RG_}
 }// end of reduce table
};
yacco2::State S60_Clr1_sp2_fsm = //State's vectored into symbol: "RB" 
{60
,0,0,0,0,0,(Reduce_tbl*)&S60rt_Clr1_sp2_fsm,0,0,0};
struct S61rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S61rtd_Clr1_sp2_fsm S61rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RH_}
 }// end of reduce table
};
yacco2::State S61_Clr1_sp2_fsm = //State's vectored into symbol: "RC" 
{61
,0,0,0,0,0,(Reduce_tbl*)&S61rt_Clr1_sp2_fsm,0,0,0};
struct S62rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S62rtd_Clr1_sp2_fsm S62rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RE_}
 }// end of reduce table
};
yacco2::State S62_Clr1_sp2_fsm = //State's vectored into symbol: "RD" 
{62
,0,0,0,0,0,(Reduce_tbl*)&S62rt_Clr1_sp2_fsm,0,0,0};
struct S63std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[5];
};
S63std_Clr1_sp2_fsm S63st_Clr1_sp2_fsm = {
 5
 ,
  {// start of table
   {130,(State*)&S58_Clr1_sp2_fsm} // shift sym: raw_z
   ,{575,(State*)&S64_Clr1_sp2_fsm} // shift sym: RA
   ,{576,(State*)&S65_Clr1_sp2_fsm} // shift sym: RB
   ,{577,(State*)&S66_Clr1_sp2_fsm} // shift sym: RC
   ,{578,(State*)&S67_Clr1_sp2_fsm} // shift sym: RD
  }// end of shift table
};
yacco2::State S63_Clr1_sp2_fsm = //State's vectored into symbol: "x" 
{63
,0,0,0,0,(Shift_tbl*)&S63st_Clr1_sp2_fsm,0,0,0,0};
struct S64rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S64rtd_Clr1_sp2_fsm S64rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RE_}
 }// end of reduce table
};
yacco2::State S64_Clr1_sp2_fsm = //State's vectored into symbol: "RA" 
{64
,0,0,0,0,0,(Reduce_tbl*)&S64rt_Clr1_sp2_fsm,0,0,0};
struct S65rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S65rtd_Clr1_sp2_fsm S65rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RF_}
 }// end of reduce table
};
yacco2::State S65_Clr1_sp2_fsm = //State's vectored into symbol: "RB" 
{65
,0,0,0,0,0,(Reduce_tbl*)&S65rt_Clr1_sp2_fsm,0,0,0};
struct S66rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S66rtd_Clr1_sp2_fsm S66rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RG_}
 }// end of reduce table
};
yacco2::State S66_Clr1_sp2_fsm = //State's vectored into symbol: "RC" 
{66
,0,0,0,0,0,(Reduce_tbl*)&S66rt_Clr1_sp2_fsm,0,0,0};
struct S67rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S67rtd_Clr1_sp2_fsm S67rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RH_}
 }// end of reduce table
};
yacco2::State S67_Clr1_sp2_fsm = //State's vectored into symbol: "RD" 
{67
,0,0,0,0,0,(Reduce_tbl*)&S67rt_Clr1_sp2_fsm,0,0,0};
struct S68std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[5];
};
S68std_Clr1_sp2_fsm S68st_Clr1_sp2_fsm = {
 5
 ,
  {// start of table
   {130,(State*)&S69_Clr1_sp2_fsm} // shift sym: raw_z
   ,{575,(State*)&S70_Clr1_sp2_fsm} // shift sym: RA
   ,{576,(State*)&S71_Clr1_sp2_fsm} // shift sym: RB
   ,{577,(State*)&S72_Clr1_sp2_fsm} // shift sym: RC
   ,{578,(State*)&S73_Clr1_sp2_fsm} // shift sym: RD
  }// end of shift table
};
yacco2::State S68_Clr1_sp2_fsm = //State's vectored into symbol: "y" 
{68
,0,0,0,0,(Shift_tbl*)&S68st_Clr1_sp2_fsm,0,0,0,0};
struct S69rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[4];
};
S69rtd_Clr1_sp2_fsm S69rt_Clr1_sp2_fsm = {
 4
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RA_}
  ,{(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RB_}
  ,{(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RC_}
  ,{(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RD_}
 }// end of reduce table
};
yacco2::State S69_Clr1_sp2_fsm = //State's vectored into symbol: "z" 
{69
,0,0,0,0,0,(Reduce_tbl*)&S69rt_Clr1_sp2_fsm,0,0,0};
struct S70rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S70rtd_Clr1_sp2_fsm S70rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RF_}
 }// end of reduce table
};
yacco2::State S70_Clr1_sp2_fsm = //State's vectored into symbol: "RA" 
{70
,0,0,0,0,0,(Reduce_tbl*)&S70rt_Clr1_sp2_fsm,0,0,0};
struct S71rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S71rtd_Clr1_sp2_fsm S71rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RG_}
 }// end of reduce table
};
yacco2::State S71_Clr1_sp2_fsm = //State's vectored into symbol: "RB" 
{71
,0,0,0,0,0,(Reduce_tbl*)&S71rt_Clr1_sp2_fsm,0,0,0};
struct S72rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S72rtd_Clr1_sp2_fsm S72rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RH_}
 }// end of reduce table
};
yacco2::State S72_Clr1_sp2_fsm = //State's vectored into symbol: "RC" 
{72
,0,0,0,0,0,(Reduce_tbl*)&S72rt_Clr1_sp2_fsm,0,0,0};
struct S73rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S73rtd_Clr1_sp2_fsm S73rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RE_}
 }// end of reduce table
};
yacco2::State S73_Clr1_sp2_fsm = //State's vectored into symbol: "RD" 
{73
,0,0,0,0,0,(Reduce_tbl*)&S73rt_Clr1_sp2_fsm,0,0,0};
struct S74std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[5];
};
S74std_Clr1_sp2_fsm S74st_Clr1_sp2_fsm = {
 5
 ,
  {// start of table
   {130,(State*)&S69_Clr1_sp2_fsm} // shift sym: raw_z
   ,{575,(State*)&S75_Clr1_sp2_fsm} // shift sym: RA
   ,{576,(State*)&S76_Clr1_sp2_fsm} // shift sym: RB
   ,{577,(State*)&S77_Clr1_sp2_fsm} // shift sym: RC
   ,{578,(State*)&S78_Clr1_sp2_fsm} // shift sym: RD
  }// end of shift table
};
yacco2::State S74_Clr1_sp2_fsm = //State's vectored into symbol: "x" 
{74
,0,0,0,0,(Shift_tbl*)&S74st_Clr1_sp2_fsm,0,0,0,0};
struct S75rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S75rtd_Clr1_sp2_fsm S75rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RE_}
 }// end of reduce table
};
yacco2::State S75_Clr1_sp2_fsm = //State's vectored into symbol: "RA" 
{75
,0,0,0,0,0,(Reduce_tbl*)&S75rt_Clr1_sp2_fsm,0,0,0};
struct S76rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S76rtd_Clr1_sp2_fsm S76rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RF_}
 }// end of reduce table
};
yacco2::State S76_Clr1_sp2_fsm = //State's vectored into symbol: "RB" 
{76
,0,0,0,0,0,(Reduce_tbl*)&S76rt_Clr1_sp2_fsm,0,0,0};
struct S77rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S77rtd_Clr1_sp2_fsm S77rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RG_}
 }// end of reduce table
};
yacco2::State S77_Clr1_sp2_fsm = //State's vectored into symbol: "RC" 
{77
,0,0,0,0,0,(Reduce_tbl*)&S77rt_Clr1_sp2_fsm,0,0,0};
struct S78rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S78rtd_Clr1_sp2_fsm S78rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs1_RH_}
 }// end of reduce table
};
yacco2::State S78_Clr1_sp2_fsm = //State's vectored into symbol: "RD" 
{78
,0,0,0,0,0,(Reduce_tbl*)&S78rt_Clr1_sp2_fsm,0,0,0};
struct S79std_Clr1_sp2_fsm{
  yacco2::USINT no_entries_;
  yacco2::Shift_entry shift_entries_[5];
};
S79std_Clr1_sp2_fsm S79st_Clr1_sp2_fsm = {
 5
 ,
  {// start of table
   {130,(State*)&S41_Clr1_sp2_fsm} // shift sym: raw_z
   ,{575,(State*)&S80_Clr1_sp2_fsm} // shift sym: RA
   ,{576,(State*)&S81_Clr1_sp2_fsm} // shift sym: RB
   ,{577,(State*)&S82_Clr1_sp2_fsm} // shift sym: RC
   ,{578,(State*)&S83_Clr1_sp2_fsm} // shift sym: RD
  }// end of shift table
};
yacco2::State S79_Clr1_sp2_fsm = //State's vectored into symbol: "y" 
{79
,0,0,0,0,(Shift_tbl*)&S79st_Clr1_sp2_fsm,0,0,0,0};
struct S80rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S80rtd_Clr1_sp2_fsm S80rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA3_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RF_}
 }// end of reduce table
};
yacco2::State S80_Clr1_sp2_fsm = //State's vectored into symbol: "RA" 
{80
,0,0,0,0,0,(Reduce_tbl*)&S80rt_Clr1_sp2_fsm,0,0,0};
struct S81rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S81rtd_Clr1_sp2_fsm S81rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA4_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RG_}
 }// end of reduce table
};
yacco2::State S81_Clr1_sp2_fsm = //State's vectored into symbol: "RB" 
{81
,0,0,0,0,0,(Reduce_tbl*)&S81rt_Clr1_sp2_fsm,0,0,0};
struct S82rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S82rtd_Clr1_sp2_fsm S82rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA5_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RH_}
 }// end of reduce table
};
yacco2::State S82_Clr1_sp2_fsm = //State's vectored into symbol: "RC" 
{82
,0,0,0,0,0,(Reduce_tbl*)&S82rt_Clr1_sp2_fsm,0,0,0};
struct S83rtd_Clr1_sp2_fsm{
 yacco2::USINT no_entries_;
 yacco2::Reduce_entry reduce_entries_[1];
};
S83rtd_Clr1_sp2_fsm S83rt_Clr1_sp2_fsm = {
 1
 ,
 {// start of table
  {(Set_tbl*)&LA6_Clr1_sp2_fsm,Clr1_sp2_fsm::rhs2_RE_}
 }// end of reduce table
};
yacco2::State S83_Clr1_sp2_fsm = //State's vectored into symbol: "RD" 
{83
,0,0,0,0,0,(Reduce_tbl*)&S83rt_Clr1_sp2_fsm,0,0,0};