-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathludoICMC.asm
9227 lines (8715 loc) · 254 KB
/
ludoICMC.asm
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
jmp main
greenPawn1 : var #1
greenPawn2 : var #1
greenPawn3 : var #1
greenPawn4 : var #1
redPawn1 : var #1
redPawn2 : var #1
redPawn3 : var #1
redPawn4 : var #1
yellowPawn1 : var #1
yellowPawn2 : var #1
yellowPawn3 : var #1
yellowPawn4 : var #1
bluePawn1 : var #1
bluePawn2 : var #1
bluePawn3 : var #1
bluePawn4 : var #1
ramdomContDice : var #1
currentPlayer : var #1
currentColor : var #1
turnRound : var #1
pawnChoice : var #1
canMovePawn1: var #1
canMovePawn2: var #1
canMovePawn3: var #1
canMovePawn4: var #1
redVectorPositions : var #37
static redVectorPositions + #0, #717
static redVectorPositions + #1, #714
static redVectorPositions + #2, #711
static redVectorPositions + #3, #708
static redVectorPositions + #4, #828
static redVectorPositions + #5, #948
static redVectorPositions + #6, #1068
static redVectorPositions + #7, #1065
static redVectorPositions + #8, #1062
static redVectorPositions + #9, #942
static redVectorPositions + #10, #822
static redVectorPositions + #11, #702
static redVectorPositions + #12, #699
static redVectorPositions + #13, #696
static redVectorPositions + #14, #693
static redVectorPositions + #15, #573
static redVectorPositions + #16, #453
static redVectorPositions + #17, #456
static redVectorPositions + #18, #459
static redVectorPositions + #19, #462
static redVectorPositions + #20, #342
static redVectorPositions + #21, #222
static redVectorPositions + #22, #102
static redVectorPositions + #23, #105
static redVectorPositions + #24, #108
static redVectorPositions + #25, #228
static redVectorPositions + #26, #348
static redVectorPositions + #27, #468
static redVectorPositions + #28, #471
static redVectorPositions + #29, #474
static redVectorPositions + #30, #477
static redVectorPositions + #31, #597
static redVectorPositions + #32, #594
static redVectorPositions + #33, #591
static redVectorPositions + #34, #588
static redVectorPositions + #35, #585
static redVectorPositions + #36, #0
greenVectorPositions : var #37
static greenVectorPositions + #0, #108
static greenVectorPositions + #1, #228
static greenVectorPositions + #2, #348
static greenVectorPositions + #3, #468
static greenVectorPositions + #4, #471
static greenVectorPositions + #5, #474
static greenVectorPositions + #6, #477
static greenVectorPositions + #7, #597
static greenVectorPositions + #8, #717
static greenVectorPositions + #9, #714
static greenVectorPositions + #10, #711
static greenVectorPositions + #11, #708
static greenVectorPositions + #12, #828
static greenVectorPositions + #13, #948
static greenVectorPositions + #14, #1068
static greenVectorPositions + #15, #1065
static greenVectorPositions + #16, #1062
static greenVectorPositions + #17, #942
static greenVectorPositions + #18, #822
static greenVectorPositions + #19, #702
static greenVectorPositions + #20, #699
static greenVectorPositions + #21, #696
static greenVectorPositions + #22, #693
static greenVectorPositions + #23, #573
static greenVectorPositions + #24, #453
static greenVectorPositions + #25, #456
static greenVectorPositions + #26, #459
static greenVectorPositions + #27, #462
static greenVectorPositions + #28, #342
static greenVectorPositions + #29, #222
static greenVectorPositions + #30, #102
static greenVectorPositions + #31, #105
static greenVectorPositions + #32, #225
static greenVectorPositions + #33, #345
static greenVectorPositions + #34, #465
static greenVectorPositions + #35, #585
static greenVectorPositions + #36, #0
blueVectorPositions : var #37
static blueVectorPositions + #0, #453
static blueVectorPositions + #1, #456
static blueVectorPositions + #2, #459
static blueVectorPositions + #3, #462
static blueVectorPositions + #4, #342
static blueVectorPositions + #5, #222
static blueVectorPositions + #6, #102
static blueVectorPositions + #7, #105
static blueVectorPositions + #8, #108
static blueVectorPositions + #9, #228
static blueVectorPositions + #10, #348
static blueVectorPositions + #11, #468
static blueVectorPositions + #12, #471
static blueVectorPositions + #13, #474
static blueVectorPositions + #14, #477
static blueVectorPositions + #15, #597
static blueVectorPositions + #16, #717
static blueVectorPositions + #17, #714
static blueVectorPositions + #18, #711
static blueVectorPositions + #19, #708
static blueVectorPositions + #20, #828
static blueVectorPositions + #21, #948
static blueVectorPositions + #22, #1068
static blueVectorPositions + #23, #1065
static blueVectorPositions + #24, #1062
static blueVectorPositions + #25, #942
static blueVectorPositions + #26, #822
static blueVectorPositions + #27, #702
static blueVectorPositions + #28, #699
static blueVectorPositions + #29, #696
static blueVectorPositions + #30, #693
static blueVectorPositions + #31, #573
static blueVectorPositions + #32, #576
static blueVectorPositions + #33, #579
static blueVectorPositions + #34, #582
static blueVectorPositions + #35, #585
static blueVectorPositions + #36, #0
geralVectorPositions : var #32
static geralVectorPositions + #0, #453
static geralVectorPositions + #1, #456
static geralVectorPositions + #2, #459
static geralVectorPositions + #3, #462
static geralVectorPositions + #4, #342
static geralVectorPositions + #5, #222
static geralVectorPositions + #6, #102
static geralVectorPositions + #7, #105
static geralVectorPositions + #8, #108
static geralVectorPositions + #9, #228
static geralVectorPositions + #10, #348
static geralVectorPositions + #11, #468
static geralVectorPositions + #12, #471
static geralVectorPositions + #13, #474
static geralVectorPositions + #14, #477
static geralVectorPositions + #15, #597
static geralVectorPositions + #16, #717
static geralVectorPositions + #17, #714
static geralVectorPositions + #18, #711
static geralVectorPositions + #19, #708
static geralVectorPositions + #20, #828
static geralVectorPositions + #21, #948
static geralVectorPositions + #22, #1068
static geralVectorPositions + #23, #1065
static geralVectorPositions + #24, #1062
static geralVectorPositions + #25, #942
static geralVectorPositions + #26, #822
static geralVectorPositions + #27, #702
static geralVectorPositions + #28, #699
static geralVectorPositions + #29, #696
static geralVectorPositions + #30, #693
static geralVectorPositions + #31, #573
geralVectorContent : var #32
static geralVectorContent + #0, #0
static geralVectorContent + #1, #0
static geralVectorContent + #2, #0
static geralVectorContent + #3, #0
static geralVectorContent + #4, #0
static geralVectorContent + #5, #0
static geralVectorContent + #6, #0
static geralVectorContent + #7, #0
static geralVectorContent + #8, #0
static geralVectorContent + #9, #0
static geralVectorContent + #10, #0
static geralVectorContent + #11, #0
static geralVectorContent + #12, #0
static geralVectorContent + #13, #0
static geralVectorContent + #14, #0
static geralVectorContent + #15, #0
static geralVectorContent + #16, #0
static geralVectorContent + #17, #0
static geralVectorContent + #18, #0
static geralVectorContent + #19, #0
static geralVectorContent + #20, #0
static geralVectorContent + #21, #0
static geralVectorContent + #22, #0
static geralVectorContent + #23, #0
static geralVectorContent + #24, #0
static geralVectorContent + #25, #0
static geralVectorContent + #26, #0
static geralVectorContent + #27, #0
static geralVectorContent + #28, #0
static geralVectorContent + #29, #0
static geralVectorContent + #30, #0
static geralVectorContent + #31, #0
yellowVectorPositions : var #37
static yellowVectorPositions + #0, #1062
static yellowVectorPositions + #1, #942
static yellowVectorPositions + #2, #822
static yellowVectorPositions + #3, #702
static yellowVectorPositions + #4, #699
static yellowVectorPositions + #5, #696
static yellowVectorPositions + #6, #693
static yellowVectorPositions + #7, #573
static yellowVectorPositions + #8, #453
static yellowVectorPositions + #9, #456
static yellowVectorPositions + #10, #459
static yellowVectorPositions + #11, #462
static yellowVectorPositions + #12, #342
static yellowVectorPositions + #13, #222
static yellowVectorPositions + #14, #102
static yellowVectorPositions + #15, #105
static yellowVectorPositions + #16, #108
static yellowVectorPositions + #17, #228
static yellowVectorPositions + #18, #348
static yellowVectorPositions + #19, #468
static yellowVectorPositions + #20, #471
static yellowVectorPositions + #21, #474
static yellowVectorPositions + #22, #477
static yellowVectorPositions + #23, #597
static yellowVectorPositions + #24, #717
static yellowVectorPositions + #25, #714
static yellowVectorPositions + #26, #711
static yellowVectorPositions + #27, #708
static yellowVectorPositions + #28, #828
static yellowVectorPositions + #29, #948
static yellowVectorPositions + #30, #1068
static yellowVectorPositions + #31, #1065
static yellowVectorPositions + #32, #945
static yellowVectorPositions + #33, #825
static yellowVectorPositions + #34, #705
static yellowVectorPositions + #35, #585
static yellowVectorPositions + #36, #0
Vezazul : var #8
static Vezazul + #0, #3137 ; A
static Vezazul + #1, #3194 ; z
static Vezazul + #2, #3189 ; u
static Vezazul + #3, #3180 ; l
static Vezazul + #4, #3104 ; SPACE
static Vezazul + #5, #544 ; SPACE
static Vezazul + #6, #544 ; SPACE
static Vezazul + #7, #2848 ; SPACE
Vezverde : var #8
static Vezverde + #0, #598 ; V
static Vezverde + #1, #613 ; e
static Vezverde + #2, #626 ; r
static Vezverde + #3, #612 ; d
static Vezverde + #4, #613 ; e
static Vezverde + #5, #544 ; SPACE
static Vezverde + #6, #544 ; SPACE
static Vezverde + #7, #2848 ; SPACE
Vezamarelo : var #8
static Vezamarelo + #0, #2881 ; A
static Vezamarelo + #1, #2925 ; m
static Vezamarelo + #2, #2913 ; a
static Vezamarelo + #3, #2930 ; r
static Vezamarelo + #4, #2917 ; e
static Vezamarelo + #5, #2924 ; l
static Vezamarelo + #6, #2927 ; o
static Vezamarelo + #7, #2848 ; SPACE
Vezvermelho : var #8
static Vezvermelho + #0, #2390 ; V
static Vezvermelho + #1, #2405 ; e
static Vezvermelho + #2, #2418 ; r
static Vezvermelho + #3, #2413 ; m
static Vezvermelho + #4, #2405 ; e
static Vezvermelho + #5, #2412 ; l
static Vezvermelho + #6, #2408 ; h
static Vezvermelho + #7, #2415 ; o
Selectpawn : var #50
static Selectpawn + #0, #86 ; V
static Selectpawn + #1, #111 ; o
static Selectpawn + #2, #99 ; c
static Selectpawn + #3, #101 ; e
;2 espacos para o proximo caractere
static Selectpawn + #4, #116 ; t
static Selectpawn + #5, #105 ; i
static Selectpawn + #6, #114 ; r
static Selectpawn + #7, #111 ; o
static Selectpawn + #8, #117 ; u
;33 espacos para o proximo caractere
static Selectpawn + #9, #110 ; n
static Selectpawn + #10, #111 ; o
;2 espacos para o proximo caractere
static Selectpawn + #11, #100 ; d
static Selectpawn + #12, #97 ; a
static Selectpawn + #13, #100 ; d
static Selectpawn + #14, #111 ; o
;32 espacos para o proximo caractere
static Selectpawn + #15, #115 ; s
static Selectpawn + #16, #101 ; e
static Selectpawn + #17, #108 ; l
static Selectpawn + #18, #101 ; e
static Selectpawn + #19, #99 ; c
static Selectpawn + #20, #105 ; i
static Selectpawn + #21, #111 ; o
static Selectpawn + #22, #110 ; n
static Selectpawn + #23, #101 ; e
;32 espacos para o proximo caractere
static Selectpawn + #24, #111 ; o
;2 espacos para o proximo caractere
static Selectpawn + #25, #112 ; p
static Selectpawn + #26, #101 ; e
static Selectpawn + #27, #97 ; a
static Selectpawn + #28, #111 ; o
;2 espacos para o proximo caractere
static Selectpawn + #29, #113 ; q
static Selectpawn + #30, #117 ; u
static Selectpawn + #31, #101 ; e
;31 espacos para o proximo caractere
static Selectpawn + #32, #100 ; d
static Selectpawn + #33, #101 ; e
static Selectpawn + #34, #115 ; s
static Selectpawn + #35, #101 ; e
static Selectpawn + #36, #106 ; j
static Selectpawn + #37, #97 ; a
;2 espacos para o proximo caractere
static Selectpawn + #38, #109 ; m
static Selectpawn + #39, #111 ; o
static Selectpawn + #40, #45 ; -
;31 espacos para o proximo caractere
static Selectpawn + #41, #118 ; v
static Selectpawn + #42, #105 ; i
static Selectpawn + #43, #109 ; m
static Selectpawn + #44, #101 ; e
static Selectpawn + #45, #110 ; n
static Selectpawn + #46, #116 ; t
static Selectpawn + #47, #97 ; a
static Selectpawn + #48, #114 ; r
static Selectpawn + #49, #58 ; :
SelectpawnGaps : var #50
static SelectpawnGaps + #0, #0
static SelectpawnGaps + #1, #0
static SelectpawnGaps + #2, #0
static SelectpawnGaps + #3, #0
static SelectpawnGaps + #4, #1
static SelectpawnGaps + #5, #0
static SelectpawnGaps + #6, #0
static SelectpawnGaps + #7, #0
static SelectpawnGaps + #8, #0
static SelectpawnGaps + #9, #32
static SelectpawnGaps + #10, #0
static SelectpawnGaps + #11, #1
static SelectpawnGaps + #12, #0
static SelectpawnGaps + #13, #0
static SelectpawnGaps + #14, #0
static SelectpawnGaps + #15, #31
static SelectpawnGaps + #16, #0
static SelectpawnGaps + #17, #0
static SelectpawnGaps + #18, #0
static SelectpawnGaps + #19, #0
static SelectpawnGaps + #20, #0
static SelectpawnGaps + #21, #0
static SelectpawnGaps + #22, #0
static SelectpawnGaps + #23, #0
static SelectpawnGaps + #24, #31
static SelectpawnGaps + #25, #1
static SelectpawnGaps + #26, #0
static SelectpawnGaps + #27, #0
static SelectpawnGaps + #28, #0
static SelectpawnGaps + #29, #1
static SelectpawnGaps + #30, #0
static SelectpawnGaps + #31, #0
static SelectpawnGaps + #32, #30
static SelectpawnGaps + #33, #0
static SelectpawnGaps + #34, #0
static SelectpawnGaps + #35, #0
static SelectpawnGaps + #36, #0
static SelectpawnGaps + #37, #0
static SelectpawnGaps + #38, #1
static SelectpawnGaps + #39, #0
static SelectpawnGaps + #40, #0
static SelectpawnGaps + #41, #30
static SelectpawnGaps + #42, #0
static SelectpawnGaps + #43, #0
static SelectpawnGaps + #44, #0
static SelectpawnGaps + #45, #0
static SelectpawnGaps + #46, #0
static SelectpawnGaps + #47, #0
static SelectpawnGaps + #48, #0
static SelectpawnGaps + #49, #0
Caixadepeoeslistras : var #26
static Caixadepeoeslistras + #0, #17 ; CASA MEIO ESQUERDA
static Caixadepeoeslistras + #1, #21 ; CASA BAIXO DIREITA
;7 espacos para o proximo caractere
static Caixadepeoeslistras + #2, #19 ; CASA BAIXO ESQUERDA
static Caixadepeoeslistras + #3, #18 ; CASA MEIO DIREITA
;31 espacos para o proximo caractere
static Caixadepeoeslistras + #4, #17 ; CASA MEIO ESQUERDA
;9 espacos para o proximo caractere
static Caixadepeoeslistras + #5, #18 ; CASA MEIO DIREITA
;31 espacos para o proximo caractere
static Caixadepeoeslistras + #6, #17 ; CASA MEIO ESQUERDA
;9 espacos para o proximo caractere
static Caixadepeoeslistras + #7, #18 ; CASA MEIO DIREITA
;31 espacos para o proximo caractere
static Caixadepeoeslistras + #8, #17 ; CASA MEIO ESQUERDA
;9 espacos para o proximo caractere
static Caixadepeoeslistras + #9, #18 ; CASA MEIO DIREITA
;31 espacos para o proximo caractere
static Caixadepeoeslistras + #10, #17 ; CASA MEIO ESQUERDA
;9 espacos para o proximo caractere
static Caixadepeoeslistras + #11, #18 ; CASA MEIO DIREITA
;31 espacos para o proximo caractere
static Caixadepeoeslistras + #12, #17 ; CASA MEIO ESQUERDA
static Caixadepeoeslistras + #13, #47 ; /
;7 espacos para o proximo caractere
static Caixadepeoeslistras + #14, #92 ; \
static Caixadepeoeslistras + #15, #18 ; CASA MEIO DIREITA
;31 espacos para o proximo caractere
static Caixadepeoeslistras + #16, #19 ; CASA BAIXO ESQUERDA
static Caixadepeoeslistras + #17, #20 ; CASA BAIXO MEIO
static Caixadepeoeslistras + #18, #20 ; CASA BAIXO MEIO
static Caixadepeoeslistras + #19, #20 ; CASA BAIXO MEIO
static Caixadepeoeslistras + #20, #20 ; CASA BAIXO MEIO
static Caixadepeoeslistras + #21, #20 ; CASA BAIXO MEIO
static Caixadepeoeslistras + #22, #20 ; CASA BAIXO MEIO
static Caixadepeoeslistras + #23, #20 ; CASA BAIXO MEIO
static Caixadepeoeslistras + #24, #20 ; CASA BAIXO MEIO
static Caixadepeoeslistras + #25, #21 ; CASA BAIXO DIREITA
CaixadepeoeslistrasGaps : var #26
static CaixadepeoeslistrasGaps + #0, #0
static CaixadepeoeslistrasGaps + #1, #0
static CaixadepeoeslistrasGaps + #2, #6
static CaixadepeoeslistrasGaps + #3, #0
static CaixadepeoeslistrasGaps + #4, #30
static CaixadepeoeslistrasGaps + #5, #8
static CaixadepeoeslistrasGaps + #6, #30
static CaixadepeoeslistrasGaps + #7, #8
static CaixadepeoeslistrasGaps + #8, #30
static CaixadepeoeslistrasGaps + #9, #8
static CaixadepeoeslistrasGaps + #10, #30
static CaixadepeoeslistrasGaps + #11, #8
static CaixadepeoeslistrasGaps + #12, #30
static CaixadepeoeslistrasGaps + #13, #0
static CaixadepeoeslistrasGaps + #14, #6
static CaixadepeoeslistrasGaps + #15, #0
static CaixadepeoeslistrasGaps + #16, #30
static CaixadepeoeslistrasGaps + #17, #0
static CaixadepeoeslistrasGaps + #18, #0
static CaixadepeoeslistrasGaps + #19, #0
static CaixadepeoeslistrasGaps + #20, #0
static CaixadepeoeslistrasGaps + #21, #0
static CaixadepeoeslistrasGaps + #22, #0
static CaixadepeoeslistrasGaps + #23, #0
static CaixadepeoeslistrasGaps + #24, #0
static CaixadepeoeslistrasGaps + #25, #0
noValidMoves : var #51
static noValidMoves + #0, #78 ; N
static noValidMoves + #1, #97 ; a
static noValidMoves + #2, #111 ; o
;2 espacos para o proximo caractere
static noValidMoves + #3, #104 ; h
static noValidMoves + #4, #97 ; a
;35 espacos para o proximo caractere
static noValidMoves + #5, #109 ; m
static noValidMoves + #6, #111 ; o
static noValidMoves + #7, #118 ; v
static noValidMoves + #8, #105 ; i
static noValidMoves + #9, #109 ; m
static noValidMoves + #10, #101 ; e
static noValidMoves + #11, #110 ; n
static noValidMoves + #12, #116 ; t
static noValidMoves + #13, #111 ; o
static noValidMoves + #14, #115 ; s
;31 espacos para o proximo caractere
static noValidMoves + #15, #118 ; v
static noValidMoves + #16, #97 ; a
static noValidMoves + #17, #108 ; l
static noValidMoves + #18, #105 ; i
static noValidMoves + #19, #100 ; d
static noValidMoves + #20, #111 ; o
static noValidMoves + #21, #115 ; s
;114 espacos para o proximo caractere
static noValidMoves + #22, #65 ; A
static noValidMoves + #23, #112 ; p
static noValidMoves + #24, #101 ; e
static noValidMoves + #25, #114 ; r
static noValidMoves + #26, #116 ; t
static noValidMoves + #27, #101 ; e
;35 espacos para o proximo caractere
static noValidMoves + #28, #101 ; e
static noValidMoves + #29, #110 ; n
static noValidMoves + #30, #116 ; t
static noValidMoves + #31, #101 ; e
static noValidMoves + #32, #114 ; r
;2 espacos para o proximo caractere
static noValidMoves + #33, #112 ; p
static noValidMoves + #34, #97 ; a
static noValidMoves + #35, #114 ; r
static noValidMoves + #36, #97 ; a
;31 espacos para o proximo caractere
static noValidMoves + #37, #112 ; p
static noValidMoves + #38, #97 ; a
static noValidMoves + #39, #115 ; s
static noValidMoves + #40, #115 ; s
static noValidMoves + #41, #97 ; a
static noValidMoves + #42, #114 ; r
;2 espacos para o proximo caractere
static noValidMoves + #43, #115 ; s
static noValidMoves + #44, #101 ; e
static noValidMoves + #45, #117 ; u
;31 espacos para o proximo caractere
static noValidMoves + #46, #116 ; t
static noValidMoves + #47, #117 ; u
static noValidMoves + #48, #114 ; r
static noValidMoves + #49, #110 ; n
static noValidMoves + #50, #111 ; o
noValidMovesGaps : var #51
static noValidMovesGaps + #0, #0
static noValidMovesGaps + #1, #0
static noValidMovesGaps + #2, #0
static noValidMovesGaps + #3, #1
static noValidMovesGaps + #4, #0
static noValidMovesGaps + #5, #34
static noValidMovesGaps + #6, #0
static noValidMovesGaps + #7, #0
static noValidMovesGaps + #8, #0
static noValidMovesGaps + #9, #0
static noValidMovesGaps + #10, #0
static noValidMovesGaps + #11, #0
static noValidMovesGaps + #12, #0
static noValidMovesGaps + #13, #0
static noValidMovesGaps + #14, #0
static noValidMovesGaps + #15, #30
static noValidMovesGaps + #16, #0
static noValidMovesGaps + #17, #0
static noValidMovesGaps + #18, #0
static noValidMovesGaps + #19, #0
static noValidMovesGaps + #20, #0
static noValidMovesGaps + #21, #0
static noValidMovesGaps + #22, #113
static noValidMovesGaps + #23, #0
static noValidMovesGaps + #24, #0
static noValidMovesGaps + #25, #0
static noValidMovesGaps + #26, #0
static noValidMovesGaps + #27, #0
static noValidMovesGaps + #28, #34
static noValidMovesGaps + #29, #0
static noValidMovesGaps + #30, #0
static noValidMovesGaps + #31, #0
static noValidMovesGaps + #32, #0
static noValidMovesGaps + #33, #1
static noValidMovesGaps + #34, #0
static noValidMovesGaps + #35, #0
static noValidMovesGaps + #36, #0
static noValidMovesGaps + #37, #30
static noValidMovesGaps + #38, #0
static noValidMovesGaps + #39, #0
static noValidMovesGaps + #40, #0
static noValidMovesGaps + #41, #0
static noValidMovesGaps + #42, #0
static noValidMovesGaps + #43, #1
static noValidMovesGaps + #44, #0
static noValidMovesGaps + #45, #0
static noValidMovesGaps + #46, #30
static noValidMovesGaps + #47, #0
static noValidMovesGaps + #48, #0
static noValidMovesGaps + #49, #0
static noValidMovesGaps + #50, #0
menu : var #150
static menu + #0, #32 ; SPACE
static menu + #1, #32 ; SPACE
static menu + #2, #32 ; SPACE
static menu + #3, #32 ; SPACE
static menu + #4, #32 ; SPACE
static menu + #5, #32 ; SPACE
static menu + #6, #32 ; SPACE
static menu + #7, #32 ; SPACE
static menu + #8, #32 ; SPACE
static menu + #9, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #10, #32 ; SPACE
static menu + #11, #32 ; SPACE
static menu + #12, #32 ; SPACE
static menu + #13, #32 ; SPACE
static menu + #14, #32 ; SPACE
static menu + #15, #32 ; SPACE
static menu + #16, #32 ; SPACE
static menu + #17, #32 ; SPACE
static menu + #18, #32 ; SPACE
static menu + #19, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #20, #32 ; SPACE
static menu + #21, #32 ; SPACE
static menu + #22, #32 ; SPACE
static menu + #23, #32 ; SPACE
static menu + #24, #32 ; SPACE
static menu + #25, #32 ; SPACE
static menu + #26, #32 ; SPACE
static menu + #27, #32 ; SPACE
static menu + #28, #32 ; SPACE
static menu + #29, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #30, #32 ; SPACE
static menu + #31, #32 ; SPACE
static menu + #32, #32 ; SPACE
static menu + #33, #32 ; SPACE
static menu + #34, #32 ; SPACE
static menu + #35, #32 ; SPACE
static menu + #36, #32 ; SPACE
static menu + #37, #32 ; SPACE
static menu + #38, #32 ; SPACE
static menu + #39, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #40, #32 ; SPACE
static menu + #41, #32 ; SPACE
static menu + #42, #32 ; SPACE
static menu + #43, #32 ; SPACE
static menu + #44, #32 ; SPACE
static menu + #45, #32 ; SPACE
static menu + #46, #32 ; SPACE
static menu + #47, #32 ; SPACE
static menu + #48, #32 ; SPACE
static menu + #49, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #50, #32 ; SPACE
static menu + #51, #32 ; SPACE
static menu + #52, #32 ; SPACE
static menu + #53, #32 ; SPACE
static menu + #54, #32 ; SPACE
static menu + #55, #32 ; SPACE
static menu + #56, #32 ; SPACE
static menu + #57, #32 ; SPACE
static menu + #58, #32 ; SPACE
static menu + #59, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #60, #32 ; SPACE
static menu + #61, #32 ; SPACE
static menu + #62, #32 ; SPACE
static menu + #63, #32 ; SPACE
static menu + #64, #32 ; SPACE
static menu + #65, #32 ; SPACE
static menu + #66, #32 ; SPACE
static menu + #67, #32 ; SPACE
static menu + #68, #32 ; SPACE
static menu + #69, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #70, #32 ; SPACE
static menu + #71, #32 ; SPACE
static menu + #72, #32 ; SPACE
static menu + #73, #32 ; SPACE
static menu + #74, #32 ; SPACE
static menu + #75, #32 ; SPACE
static menu + #76, #32 ; SPACE
static menu + #77, #32 ; SPACE
static menu + #78, #32 ; SPACE
static menu + #79, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #80, #32 ; SPACE
static menu + #81, #32 ; SPACE
static menu + #82, #32 ; SPACE
static menu + #83, #32 ; SPACE
static menu + #84, #32 ; SPACE
static menu + #85, #32 ; SPACE
static menu + #86, #32 ; SPACE
static menu + #87, #32 ; SPACE
static menu + #88, #32 ; SPACE
static menu + #89, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #90, #32 ; SPACE
static menu + #91, #32 ; SPACE
static menu + #92, #32 ; SPACE
static menu + #93, #32 ; SPACE
static menu + #94, #32 ; SPACE
static menu + #95, #32 ; SPACE
static menu + #96, #32 ; SPACE
static menu + #97, #32 ; SPACE
static menu + #98, #32 ; SPACE
static menu + #99, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #100, #32 ; SPACE
static menu + #101, #32 ; SPACE
static menu + #102, #32 ; SPACE
static menu + #103, #32 ; SPACE
static menu + #104, #32 ; SPACE
static menu + #105, #32 ; SPACE
static menu + #106, #32 ; SPACE
static menu + #107, #32 ; SPACE
static menu + #108, #32 ; SPACE
static menu + #109, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #110, #32 ; SPACE
static menu + #111, #32 ; SPACE
static menu + #112, #32 ; SPACE
static menu + #113, #32 ; SPACE
static menu + #114, #32 ; SPACE
static menu + #115, #32 ; SPACE
static menu + #116, #32 ; SPACE
static menu + #117, #32 ; SPACE
static menu + #118, #32 ; SPACE
static menu + #119, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #120, #32 ; SPACE
static menu + #121, #32 ; SPACE
static menu + #122, #32 ; SPACE
static menu + #123, #32 ; SPACE
static menu + #124, #32 ; SPACE
static menu + #125, #32 ; SPACE
static menu + #126, #32 ; SPACE
static menu + #127, #32 ; SPACE
static menu + #128, #32 ; SPACE
static menu + #129, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #130, #32 ; SPACE
static menu + #131, #32 ; SPACE
static menu + #132, #32 ; SPACE
static menu + #133, #32 ; SPACE
static menu + #134, #32 ; SPACE
static menu + #135, #32 ; SPACE
static menu + #136, #32 ; SPACE
static menu + #137, #32 ; SPACE
static menu + #138, #32 ; SPACE
static menu + #139, #32 ; SPACE
;31 espacos para o proximo caractere
static menu + #140, #32 ; SPACE
static menu + #141, #32 ; SPACE
static menu + #142, #32 ; SPACE
static menu + #143, #32 ; SPACE
static menu + #144, #32 ; SPACE
static menu + #145, #32 ; SPACE
static menu + #146, #32 ; SPACE
static menu + #147, #32 ; SPACE
static menu + #148, #32 ; SPACE
static menu + #149, #32 ; SPACE
menuGaps : var #150
static menuGaps + #0, #0
static menuGaps + #1, #0
static menuGaps + #2, #0
static menuGaps + #3, #0
static menuGaps + #4, #0
static menuGaps + #5, #0
static menuGaps + #6, #0
static menuGaps + #7, #0
static menuGaps + #8, #0
static menuGaps + #9, #0
static menuGaps + #10, #30
static menuGaps + #11, #0
static menuGaps + #12, #0
static menuGaps + #13, #0
static menuGaps + #14, #0
static menuGaps + #15, #0
static menuGaps + #16, #0
static menuGaps + #17, #0
static menuGaps + #18, #0
static menuGaps + #19, #0
static menuGaps + #20, #30
static menuGaps + #21, #0
static menuGaps + #22, #0
static menuGaps + #23, #0
static menuGaps + #24, #0
static menuGaps + #25, #0
static menuGaps + #26, #0
static menuGaps + #27, #0
static menuGaps + #28, #0
static menuGaps + #29, #0
static menuGaps + #30, #30
static menuGaps + #31, #0
static menuGaps + #32, #0
static menuGaps + #33, #0
static menuGaps + #34, #0
static menuGaps + #35, #0
static menuGaps + #36, #0
static menuGaps + #37, #0
static menuGaps + #38, #0
static menuGaps + #39, #0
static menuGaps + #40, #30
static menuGaps + #41, #0
static menuGaps + #42, #0
static menuGaps + #43, #0
static menuGaps + #44, #0
static menuGaps + #45, #0
static menuGaps + #46, #0
static menuGaps + #47, #0
static menuGaps + #48, #0
static menuGaps + #49, #0
static menuGaps + #50, #30
static menuGaps + #51, #0
static menuGaps + #52, #0
static menuGaps + #53, #0
static menuGaps + #54, #0
static menuGaps + #55, #0
static menuGaps + #56, #0
static menuGaps + #57, #0
static menuGaps + #58, #0
static menuGaps + #59, #0
static menuGaps + #60, #30
static menuGaps + #61, #0
static menuGaps + #62, #0
static menuGaps + #63, #0
static menuGaps + #64, #0
static menuGaps + #65, #0
static menuGaps + #66, #0
static menuGaps + #67, #0
static menuGaps + #68, #0
static menuGaps + #69, #0
static menuGaps + #70, #30
static menuGaps + #71, #0
static menuGaps + #72, #0
static menuGaps + #73, #0
static menuGaps + #74, #0
static menuGaps + #75, #0
static menuGaps + #76, #0
static menuGaps + #77, #0
static menuGaps + #78, #0
static menuGaps + #79, #0
static menuGaps + #80, #30
static menuGaps + #81, #0
static menuGaps + #82, #0
static menuGaps + #83, #0
static menuGaps + #84, #0
static menuGaps + #85, #0
static menuGaps + #86, #0
static menuGaps + #87, #0
static menuGaps + #88, #0
static menuGaps + #89, #0
static menuGaps + #90, #30
static menuGaps + #91, #0
static menuGaps + #92, #0
static menuGaps + #93, #0
static menuGaps + #94, #0
static menuGaps + #95, #0
static menuGaps + #96, #0
static menuGaps + #97, #0
static menuGaps + #98, #0
static menuGaps + #99, #0
static menuGaps + #100, #30
static menuGaps + #101, #0
static menuGaps + #102, #0
static menuGaps + #103, #0
static menuGaps + #104, #0
static menuGaps + #105, #0
static menuGaps + #106, #0
static menuGaps + #107, #0
static menuGaps + #108, #0
static menuGaps + #109, #0
static menuGaps + #110, #30
static menuGaps + #111, #0
static menuGaps + #112, #0
static menuGaps + #113, #0
static menuGaps + #114, #0
static menuGaps + #115, #0
static menuGaps + #116, #0
static menuGaps + #117, #0
static menuGaps + #118, #0
static menuGaps + #119, #0
static menuGaps + #120, #30
static menuGaps + #121, #0
static menuGaps + #122, #0
static menuGaps + #123, #0
static menuGaps + #124, #0
static menuGaps + #125, #0
static menuGaps + #126, #0
static menuGaps + #127, #0
static menuGaps + #128, #0
static menuGaps + #129, #0
static menuGaps + #130, #30
static menuGaps + #131, #0
static menuGaps + #132, #0
static menuGaps + #133, #0
static menuGaps + #134, #0
static menuGaps + #135, #0
static menuGaps + #136, #0
static menuGaps + #137, #0
static menuGaps + #138, #0
static menuGaps + #139, #0
static menuGaps + #140, #30
static menuGaps + #141, #0
static menuGaps + #142, #0
static menuGaps + #143, #0
static menuGaps + #144, #0
static menuGaps + #145, #0
static menuGaps + #146, #0
static menuGaps + #147, #0
static menuGaps + #148, #0
static menuGaps + #149, #0
Caaso : var #152
static Caaso + #0, #95 ; _
static Caaso + #1, #95 ; _
static Caaso + #2, #95 ; _
static Caaso + #3, #95 ; _
static Caaso + #4, #95 ; _
static Caaso + #5, #95 ; _
;34 espacos para o proximo caractere
static Caaso + #6, #47 ; /
;7 espacos para o proximo caractere
static Caaso + #7, #124 ; |
;32 espacos para o proximo caractere
static Caaso + #8, #124 ; |
;3 espacos para o proximo caractere
static Caaso + #9, #44 ; ,
static Caaso + #10, #45 ; -
static Caaso + #11, #45 ; -
static Caaso + #12, #45 ; -
static Caaso + #13, #45 ; -
static Caaso + #14, #39 ; '
;32 espacos para o proximo caractere
static Caaso + #15, #124 ; |
;3 espacos para o proximo caractere
static Caaso + #16, #124 ; |
;37 espacos para o proximo caractere
static Caaso + #17, #124 ; |
;3 espacos para o proximo caractere
static Caaso + #18, #96 ; `
static Caaso + #19, #45 ; -
static Caaso + #20, #45 ; -
static Caaso + #21, #45 ; -
static Caaso + #22, #45 ; -
static Caaso + #23, #46 ; .
;33 espacos para o proximo caractere
static Caaso + #24, #92 ; \
static Caaso + #25, #95 ; _
static Caaso + #26, #95 ; _
static Caaso + #27, #95 ; _
static Caaso + #28, #95 ; _
static Caaso + #29, #95 ; _
static Caaso + #30, #95 ; _
static Caaso + #31, #47 ; /
;36 espacos para o proximo caractere
static Caaso + #32, #95 ; _
static Caaso + #33, #95 ; _
static Caaso + #34, #95 ; _
;37 espacos para o proximo caractere
static Caaso + #35, #47 ; /
;4 espacos para o proximo caractere
static Caaso + #36, #92 ; \
;35 espacos para o proximo caractere
static Caaso + #37, #47 ; /
;3 espacos para o proximo caractere
static Caaso + #38, #94 ; ^
;3 espacos para o proximo caractere
static Caaso + #39, #92 ; \
;33 espacos para o proximo caractere
static Caaso + #40, #47 ; /
;3 espacos para o proximo caractere
static Caaso + #41, #47 ; /
static Caaso + #42, #95 ; _
static Caaso + #43, #92 ; \
;3 espacos para o proximo caractere
static Caaso + #44, #92 ; \
;31 espacos para o proximo caractere
static Caaso + #45, #47 ; /
;3 espacos para o proximo caractere
static Caaso + #46, #95 ; _
static Caaso + #47, #95 ; _
static Caaso + #48, #95 ; _
static Caaso + #49, #95 ; _
static Caaso + #50, #95 ; _
;3 espacos para o proximo caractere
static Caaso + #51, #92 ; \
;29 espacos para o proximo caractere
static Caaso + #52, #47 ; /
static Caaso + #53, #95 ; _
static Caaso + #54, #95 ; _
static Caaso + #55, #47 ; /
;6 espacos para o proximo caractere
static Caaso + #56, #92 ; \
static Caaso + #57, #95 ; _
static Caaso + #58, #95 ; _
static Caaso + #59, #92 ; \
;33 espacos para o proximo caractere
static Caaso + #60, #95 ; _