-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMC.out
1137 lines (1130 loc) · 51.9 KB
/
MC.out
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
@!@!@STARTMSG 2262:0 @!@!@
TLC2 Version 2.16 of 31 December 2020 (rev: cdddf55)
@!@!@ENDMSG 2262 @!@!@
@!@!@STARTMSG 2401:3 @!@!@
Please run the Java VM which executes TLC with a throughput optimized garbage collector by passing the "-XX:+UseParallelGC" property.
@!@!@ENDMSG 2401 @!@!@
@!@!@STARTMSG 2187:0 @!@!@
Running breadth-first search Model-Checking with fp 29 and seed -2532354569670095895 with 1 worker on 12 cores with 8007MB heap and 64MB offheap memory [pid: 19906] (Linux 4.19.0-13-amd64 amd64, AdoptOpenJDK 14.0.2 x86_64, MSBDiskFPSet, DiskStateQueue).
@!@!@ENDMSG 2187 @!@!@
@!@!@STARTMSG 2220:0 @!@!@
Starting SANY...
@!@!@ENDMSG 2220 @!@!@
Parsing file /home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/MC.tla
Parsing file /home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/ActionTraceChecker.tla
Parsing file /home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/ActionTranslator.tla
Parsing file /home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/Bootstrap.tla
Parsing file /home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/Parser.tla
Parsing file /tmp/FiniteSets.tla
Parsing file /tmp/Naturals.tla
Parsing file /tmp/Sequences.tla
Parsing file /tmp/TLC.tla
Parsing file /home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/Hash.tla
Parsing file /home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/Samples.tla
Parsing file /tmp/Integers.tla
Semantic processing of module Naturals
Semantic processing of module Sequences
Semantic processing of module FiniteSets
Semantic processing of module TLC
Semantic processing of module Integers
Semantic processing of module Hash
Semantic processing of module Samples
Semantic processing of module Bootstrap
Semantic processing of module Parser
Semantic processing of module ActionTranslator
Semantic processing of module ActionTraceChecker
Semantic processing of module MC
@!@!@STARTMSG 2219:0 @!@!@
SANY finished.
@!@!@ENDMSG 2219 @!@!@
@!@!@STARTMSG 2185:0 @!@!@
Starting... (2021-09-29 18:08:17)
@!@!@ENDMSG 2185 @!@!@
@!@!@STARTMSG 2168:0 @!@!@
Loading Hash operator override from file:/home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/Hash.class with signature: <Java Method: public static tlc2.value.impl.Value Hash.Hash(tlc2.value.impl.Value)>.
@!@!@ENDMSG 2168 @!@!@
@!@!@STARTMSG 2168:0 @!@!@
Loading Samples operator override from file:/home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/Samples.class with signature: <Java Method: public static tlc2.value.impl.Value Samples.Samples(tlc2.value.impl.IntValue,tlc2.value.impl.TupleValue)>.
@!@!@ENDMSG 2168 @!@!@
@!@!@STARTMSG 2168:0 @!@!@
Loading parse operator override from file:/home/isaac/Documents/Viable_Systems/tezedge-specification/shell/bootstrapping/Parser.class with signature: <Java Method: public static tlc2.value.impl.Value Parser.parse(tlc2.value.impl.StringValue) throws java.io.IOException>.
@!@!@ENDMSG 2168 @!@!@
@!@!@STARTMSG 2189:0 @!@!@
Computing initial states...
@!@!@ENDMSG 2189 @!@!@
@!@!@STARTMSG 2190:0 @!@!@
Finished computing initial states: 1 distinct state generated at 2021-09-29 18:08:17.
@!@!@ENDMSG 2190 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 40, col 48 to line 40, col 52 of module ActionTraceChecker>. Reporting costs into <line 37, col 18 to line 37, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 12, col 10 to line 12, col 22 of module ActionTraceChecker>. Reporting costs into <line 37, col 18 to line 37, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 12, col 20 to line 12, col 20 of module ActionTraceChecker>. Reporting costs into <line 37, col 18 to line 37, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 12, col 12 to line 12, col 17 of module ActionTraceChecker>. Reporting costs into <line 37, col 18 to line 37, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 40, col 31 to line 40, col 34 of module ActionTraceChecker>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 61, col 9 to line 61, col 69 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 61, col 59 to line 61, col 67 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 61, col 48 to line 61, col 56 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 61, col 34 to line 61, col 45 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 61, col 23 to line 61, col 31 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 61, col 11 to line 61, col 20 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 44, col 17 to line 44, col 80 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 44, col 67 to line 44, col 78 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 44, col 54 to line 44, col 64 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 44, col 47 to line 44, col 51 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 44, col 37 to line 44, col 44 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 44, col 27 to line 44, col 34 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 44, col 19 to line 44, col 24 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 45, col 17 to line 45, col 85 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 45, col 72 to line 45, col 83 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 45, col 59 to line 45, col 69 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 45, col 42 to line 45, col 56 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 45, col 30 to line 45, col 39 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 45, col 19 to line 45, col 27 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 46, col 17 to line 46, col 55 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 46, col 36 to line 46, col 53 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 46, col 19 to line 46, col 33 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 42, col 17 to line 42, col 67 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 42, col 54 to line 42, col 65 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 42, col 36 to line 42, col 51 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 42, col 19 to line 42, col 33 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 43, col 17 to line 43, col 71 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 43, col 56 to line 43, col 69 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 43, col 43 to line 43, col 53 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 43, col 32 to line 43, col 40 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 2776:0 @!@!@
CostModel lookup failed for expression <line 43, col 19 to line 43, col 29 of module Bootstrap>. Reporting costs into <line 38, col 18 to line 38, col 22 of module ActionTraceChecker> instead (Safety and Liveness checking is unaffected. Please report a bug.)
@!@!@ENDMSG 2776 @!@!@
@!@!@STARTMSG 1000:1 @!@!@
TLC threw an unexpected exception.
This was probably caused by an error in the spec or model.
See the User Output or TLC Console for clues to what happened.
The exception was a java.lang.RuntimeException
: Attempted to evaluate a CASE with no conditions true.
line 82, col 5 to line 153, col 73 of module ActionTranslator
@!@!@ENDMSG 1000 @!@!@
@!@!@STARTMSG 2121:1 @!@!@
The behavior up to this point is:
@!@!@ENDMSG 2121 @!@!@
@!@!@STARTMSG 2217:4 @!@!@
1: <Initial predicate>
/\ greylist = {}
/\ current_head = [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085]
/\ sent_get_branch = {}
/\ action = <<"PeersDnsLookupInit", <<"hello", 666>>>>
/\ target_level = NONE
/\ i = 1
/\ chain = <<[header |-> [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085], ops |-> {}]>>
/\ recv_branch = [a |-> {}, b |-> {}]
/\ peer_head = << >>
/\ sent_get_headers = [a |-> {}, b |-> {}]
/\ pending_operations = <<>>
/\ peer_score = << >>
/\ target_hash = NONE
/\ recv_head = [a |-> {}, b |-> {}]
/\ connections = {}
/\ pending_headers = <<>>
/\ recv_header = [a |-> {}, b |-> {}]
/\ sent_get_ops = [a |-> {}, b |-> {}]
/\ banned = {}
/\ earliest_hashes = {}
/\ messages = [a |-> {}, b |-> {}]
/\ recv_operation = [a |-> {}, b |-> {}]
@!@!@ENDMSG 2217 @!@!@
@!@!@STARTMSG 2217:4 @!@!@
2: <Compose line 40, col 17 to line 40, col 53 of module ActionTraceChecker>
/\ greylist = {}
/\ current_head = [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085]
/\ sent_get_branch = {}
/\ action = <<"PeerConnectionOutgoingRandomInit", <<>>>>
/\ target_level = NONE
/\ i = 2
/\ chain = <<[header |-> [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085], ops |-> {}]>>
/\ recv_branch = [a |-> {}, b |-> {}]
/\ peer_head = << >>
/\ sent_get_headers = [a |-> {}, b |-> {}]
/\ pending_operations = <<>>
/\ peer_score = << >>
/\ target_hash = NONE
/\ recv_head = [a |-> {}, b |-> {}]
/\ connections = {}
/\ pending_headers = <<>>
/\ recv_header = [a |-> {}, b |-> {}]
/\ sent_get_ops = [a |-> {}, b |-> {}]
/\ banned = {}
/\ earliest_hashes = {}
/\ messages = [a |-> {}, b |-> {}]
/\ recv_operation = [a |-> {}, b |-> {}]
@!@!@ENDMSG 2217 @!@!@
@!@!@STARTMSG 2217:4 @!@!@
3: <Compose line 40, col 17 to line 40, col 53 of module ActionTraceChecker>
/\ greylist = {}
/\ current_head = [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085]
/\ sent_get_branch = {}
/\ action = <<"PeerTryWrite", <<[ip |-> <<0, 1, 2, 3, 4, 5, 6, 7>>, port |-> 1111]>>>>
/\ target_level = NONE
/\ i = 3
/\ chain = <<[header |-> [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085], ops |-> {}]>>
/\ recv_branch = [a |-> {}, b |-> {}]
/\ peer_head = << >>
/\ sent_get_headers = [a |-> {}, b |-> {}]
/\ pending_operations = <<>>
/\ peer_score = << >>
/\ target_hash = NONE
/\ recv_head = [a |-> {}, b |-> {}]
/\ connections = {}
/\ pending_headers = <<>>
/\ recv_header = [a |-> {}, b |-> {}]
/\ sent_get_ops = [a |-> {}, b |-> {}]
/\ banned = {}
/\ earliest_hashes = {}
/\ messages = [a |-> {}, b |-> {}]
/\ recv_operation = [a |-> {}, b |-> {}]
@!@!@ENDMSG 2217 @!@!@
@!@!@STARTMSG 2217:4 @!@!@
4: <Compose line 40, col 17 to line 40, col 53 of module ActionTraceChecker>
/\ greylist = {}
/\ current_head = [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085]
/\ sent_get_branch = {}
/\ action = << "PeersAddIncomingPeer",
<<"PeerToken: Alice", [ip |-> <<0, 1, 2, 3, 4, 5, 6, 7>>, port |-> 2222]>> >>
/\ target_level = NONE
/\ i = 4
/\ chain = <<[header |-> [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085], ops |-> {}]>>
/\ recv_branch = [a |-> {}, b |-> {}]
/\ peer_head = << >>
/\ sent_get_headers = [a |-> {}, b |-> {}]
/\ pending_operations = <<>>
/\ peer_score = << >>
/\ target_hash = NONE
/\ recv_head = [a |-> {}, b |-> {}]
/\ connections = {}
/\ pending_headers = <<>>
/\ recv_header = [a |-> {}, b |-> {}]
/\ sent_get_ops = [a |-> {}, b |-> {}]
/\ banned = {}
/\ earliest_hashes = {}
/\ messages = [a |-> {}, b |-> {}]
/\ recv_operation = [a |-> {}, b |-> {}]
@!@!@ENDMSG 2217 @!@!@
@!@!@STARTMSG 2217:4 @!@!@
5: <Compose line 40, col 17 to line 40, col 53 of module ActionTraceChecker>
/\ greylist = {}
/\ current_head = [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085]
/\ sent_get_branch = {}
/\ action = << "PeerConnectionMessageReadSuccess",
<< [ip |-> <<0, 1, 2, 3, 4, 5, 6, 7>>, port |-> 3333],
4444,
[chain |-> "Main", ddb |-> 0, p2p |-> 1],
"hello" >> >>
/\ target_level = NONE
/\ i = 5
/\ chain = <<[header |-> [level |-> 0, predecessor |-> 0, context |-> 940487085, fitness |-> 0, ops_hash |-> 940487085], ops |-> {}]>>
/\ recv_branch = [a |-> {}, b |-> {}]
/\ peer_head = << >>
/\ sent_get_headers = [a |-> {}, b |-> {}]
/\ pending_operations = <<>>
/\ peer_score = << >>
/\ target_hash = NONE
/\ recv_head = [a |-> {}, b |-> {}]
/\ connections = {}
/\ pending_headers = <<>>
/\ recv_header = [a |-> {}, b |-> {}]
/\ sent_get_ops = [a |-> {}, b |-> {}]
/\ banned = {}
/\ earliest_hashes = {}
/\ messages = [a |-> {}, b |-> {}]
/\ recv_operation = [a |-> {}, b |-> {}]
@!@!@ENDMSG 2217 @!@!@
@!@!@STARTMSG 2103:1 @!@!@
The error occurred when TLC was evaluating the nested
expressions at the following positions:
0. Line 40, column 17 to line 40, column 53 in ActionTraceChecker
1. Line 36, column 5 to line 38, column 31 in ActionTraceChecker
2. Line 38, column 8 to line 38, column 31 in ActionTraceChecker
3. Line 38, column 8 to line 38, column 22 in ActionTraceChecker
4. Line 38, column 18 to line 38, column 22 in ActionTraceChecker
5. Line 40, column 31 to line 40, column 34 in ActionTraceChecker
6. Line 61, column 9 to line 61, column 69 in Bootstrap
7. Line 61, column 11 to line 61, column 20 in Bootstrap
8. Line 44, column 17 to line 44, column 80 in Bootstrap
9. Line 44, column 19 to line 44, column 24 in Bootstrap
10. Line 44, column 27 to line 44, column 34 in Bootstrap
11. Line 44, column 37 to line 44, column 44 in Bootstrap
12. Line 44, column 47 to line 44, column 51 in Bootstrap
13. Line 44, column 54 to line 44, column 64 in Bootstrap
14. Line 44, column 67 to line 44, column 78 in Bootstrap
15. Line 61, column 23 to line 61, column 31 in Bootstrap
16. Line 45, column 17 to line 45, column 85 in Bootstrap
17. Line 45, column 19 to line 45, column 27 in Bootstrap
18. Line 45, column 30 to line 45, column 39 in Bootstrap
19. Line 45, column 42 to line 45, column 56 in Bootstrap
20. Line 45, column 59 to line 45, column 69 in Bootstrap
21. Line 45, column 72 to line 45, column 83 in Bootstrap
22. Line 61, column 34 to line 61, column 45 in Bootstrap
23. Line 46, column 17 to line 46, column 55 in Bootstrap
24. Line 46, column 19 to line 46, column 33 in Bootstrap
25. Line 46, column 36 to line 46, column 53 in Bootstrap
26. Line 61, column 48 to line 61, column 56 in Bootstrap
27. Line 42, column 17 to line 42, column 67 in Bootstrap
28. Line 42, column 19 to line 42, column 33 in Bootstrap
29. Line 42, column 36 to line 42, column 51 in Bootstrap
30. Line 42, column 54 to line 42, column 65 in Bootstrap
31. Line 61, column 59 to line 61, column 67 in Bootstrap
32. Line 43, column 17 to line 43, column 71 in Bootstrap
33. Line 43, column 19 to line 43, column 29 in Bootstrap
34. Line 43, column 32 to line 43, column 40 in Bootstrap
35. Line 43, column 43 to line 43, column 53 in Bootstrap
36. Line 43, column 56 to line 43, column 69 in Bootstrap
37. Line 38, column 27 to line 38, column 31 in ActionTraceChecker
38. Line 40, column 37 to line 40, column 45 in ActionTraceChecker
39. Line 29, column 5 to line 30, column 31 in ActionTraceChecker
40. Line 29, column 8 to line 29, column 21 in ActionTraceChecker
41. Line 20, column 5 to line 26, column 26 in ActionTraceChecker
42. Line 20, column 8 to line 22, column 35 in ActionTraceChecker
43. Line 20, column 11 to line 20, column 30 in ActionTraceChecker
44. Line 21, column 11 to line 21, column 20 in ActionTraceChecker
45. Line 22, column 11 to line 22, column 35 in ActionTraceChecker
46. Line 30, column 8 to line 30, column 31 in ActionTraceChecker
47. Line 79, column 5 to line 153, column 73 in ActionTranslator
48. Line 82, column 5 to line 153, column 73 in ActionTranslator
@!@!@ENDMSG 2103 @!@!@
@!@!@STARTMSG 2201:0 @!@!@
The coverage statistics at 2021-09-29 18:08:17
@!@!@ENDMSG 2201 @!@!@
@!@!@STARTMSG 2773:0 @!@!@
<Init line 581, col 1 to line 581, col 4 of module Bootstrap>: 0:0
@!@!@ENDMSG 2773 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 582, col 5 to line 601, col 50 of module Bootstrap: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2773:0 @!@!@
<InitTrace line 14, col 1 to line 14, col 9 of module ActionTraceChecker>: 2:2
@!@!@ENDMSG 2773 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 15, col 5 to line 16, col 30 of module ActionTraceChecker: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2772:0 @!@!@
<Compose line 35, col 1 to line 35, col 35 of module ActionTraceChecker (40 17 40 53)>: 4:8
@!@!@ENDMSG 2772 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 37, col 8 to line 37, col 22 of module ActionTraceChecker: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 38, col 8 to line 38, col 22 of module ActionTraceChecker: 160
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 395, col 12 to line 395, col 54 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 396, col 12 to line 396, col 73 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 393, col 14 to line 393, col 24 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 402, col 12 to line 402, col 76 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 403, col 12 to line 403, col 73 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 400, col 14 to line 400, col 24 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 400, col 35 to line 400, col 55 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 84, col 13 to line 84, col 27 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 400, col 41 to line 400, col 54 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 227, col 23 to line 227, col 68 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|||line 227, col 29 to line 227, col 68 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||||line 227, col 31 to line 227, col 52 of module Bootstrap: 40
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||||line 227, col 62 to line 227, col 66 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 414, col 12 to line 414, col 68 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 415, col 12 to line 415, col 72 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 407, col 14 to line 407, col 24 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 407, col 34 to line 407, col 48 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 228, col 23 to line 228, col 69 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 228, col 29 to line 228, col 69 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|||line 228, col 31 to line 228, col 53 of module Bootstrap: 40
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|||line 228, col 63 to line 228, col 67 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 382, col 5 to line 382, col 52 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 442, col 12 to line 447, col 61 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 448, col 12 to line 448, col 93 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 449, col 12 to line 449, col 76 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 450, col 12 to line 450, col 100 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 436, col 33 to line 436, col 43 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 382, col 5 to line 382, col 52 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 461, col 12 to line 461, col 88 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 462, col 12 to line 462, col 66 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 463, col 12 to line 463, col 64 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 453, col 31 to line 453, col 41 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 382, col 5 to line 382, col 52 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 475, col 16 to line 475, col 77 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 476, col 16 to line 476, col 78 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 466, col 29 to line 466, col 39 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 495, col 8 to line 495, col 18 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 486, col 8 to line 486, col 50 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 487, col 8 to line 487, col 53 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 488, col 8 to line 488, col 43 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 489, col 8 to line 489, col 33 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 508, col 21 to line 508, col 49 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 510, col 24 to line 510, col 72 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 512, col 25 to line 512, col 56 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 523, col 8 to line 523, col 30 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 528, col 17 to line 528, col 37 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 508, col 21 to line 508, col 49 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 510, col 24 to line 510, col 72 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 512, col 25 to line 512, col 56 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 523, col 8 to line 523, col 30 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 531, col 17 to line 531, col 38 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 508, col 21 to line 508, col 49 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 510, col 24 to line 510, col 72 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 512, col 25 to line 512, col 56 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 523, col 8 to line 523, col 30 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 534, col 17 to line 534, col 34 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 508, col 21 to line 508, col 49 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 542, col 14 to line 542, col 24 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 571, col 8 to line 571, col 32 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 384, col 30 to line 384, col 46 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 570, col 21 to line 570, col 31 of module Bootstrap: 20
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 44, col 19 to line 44, col 24 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 44, col 27 to line 44, col 34 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 44, col 37 to line 44, col 44 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 44, col 47 to line 44, col 51 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 44, col 54 to line 44, col 64 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 44, col 67 to line 44, col 78 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 45, col 19 to line 45, col 27 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 45, col 30 to line 45, col 39 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 45, col 42 to line 45, col 56 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 45, col 59 to line 45, col 69 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 45, col 72 to line 45, col 83 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 46, col 19 to line 46, col 33 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 46, col 36 to line 46, col 53 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 42, col 19 to line 42, col 33 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 42, col 36 to line 42, col 51 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 42, col 54 to line 42, col 65 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 43, col 19 to line 43, col 29 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 43, col 32 to line 43, col 40 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 43, col 43 to line 43, col 53 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 43, col 56 to line 43, col 69 of module Bootstrap: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 20, col 11 to line 20, col 30 of module ActionTraceChecker: 8
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 20, col 11 to line 20, col 11 of module ActionTraceChecker: 10
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 20, col 15 to line 20, col 30 of module ActionTraceChecker: 10
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 21, col 11 to line 21, col 20 of module ActionTraceChecker: 8
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 21, col 16 to line 21, col 20 of module ActionTraceChecker: 10
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 22, col 11 to line 22, col 35 of module ActionTraceChecker: 8
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 22, col 21 to line 22, col 35 of module ActionTraceChecker: 10
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 24, col 11 to line 24, col 30 of module ActionTraceChecker: 8
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 25, col 11 to line 25, col 20 of module ActionTraceChecker: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 26, col 11 to line 26, col 26 of module ActionTraceChecker: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
line 30, col 8 to line 30, col 31 of module ActionTraceChecker: 10
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 79, col 17 to line 79, col 24 of module ActionTranslator: 10
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|line 82, col 5 to line 153, col 73 of module ActionTranslator: 10
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 82, col 10 to line 82, col 35 of module ActionTranslator: 10
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 82, col 40 to line 82, col 69 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|||line 5, col 35 to line 5, col 48 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 83, col 10 to line 83, col 36 of module ActionTranslator: 8
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 6, col 36 to line 6, col 49 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 84, col 10 to line 84, col 38 of module ActionTranslator: 8
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 7, col 38 to line 7, col 51 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 85, col 10 to line 85, col 38 of module ActionTranslator: 8
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 8, col 38 to line 8, col 51 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 86, col 10 to line 86, col 37 of module ActionTranslator: 8
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 86, col 42 to line 86, col 73 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|||line 9, col 37 to line 9, col 50 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 87, col 10 to line 87, col 30 of module ActionTranslator: 6
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 10, col 30 to line 10, col 43 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 88, col 10 to line 88, col 28 of module ActionTranslator: 6
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 11, col 28 to line 11, col 41 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 89, col 10 to line 89, col 45 of module ActionTranslator: 6
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 12, col 45 to line 12, col 58 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 90, col 10 to line 90, col 50 of module ActionTranslator: 6
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 13, col 50 to line 13, col 63 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 91, col 10 to line 91, col 52 of module ActionTranslator: 6
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 14, col 52 to line 14, col 65 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 92, col 10 to line 92, col 46 of module ActionTranslator: 6
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 15, col 46 to line 15, col 59 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 93, col 10 to line 93, col 49 of module ActionTranslator: 6
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 93, col 54 to line 93, col 97 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|||line 16, col 49 to line 16, col 62 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 94, col 10 to line 94, col 43 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 17, col 43 to line 17, col 56 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 95, col 10 to line 95, col 46 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 18, col 46 to line 18, col 59 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 96, col 10 to line 96, col 44 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 19, col 44 to line 19, col 57 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 97, col 10 to line 97, col 46 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 20, col 46 to line 20, col 59 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 98, col 10 to line 98, col 31 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 21, col 31 to line 21, col 44 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 99, col 10 to line 99, col 33 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 22, col 33 to line 22, col 46 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 100, col 10 to line 100, col 31 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 23, col 31 to line 23, col 44 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 101, col 10 to line 101, col 29 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 24, col 29 to line 24, col 42 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 102, col 10 to line 102, col 28 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 25, col 28 to line 25, col 41 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 103, col 10 to line 103, col 29 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 103, col 34 to line 103, col 57 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
|||line 26, col 29 to line 26, col 42 of module ActionTranslator: 4
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 104, col 10 to line 104, col 28 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 27, col 28 to line 27, col 41 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 105, col 10 to line 105, col 34 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 28, col 34 to line 28, col 47 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 106, col 10 to line 106, col 34 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 29, col 34 to line 29, col 47 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 107, col 10 to line 107, col 37 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 30, col 37 to line 30, col 50 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 108, col 10 to line 108, col 35 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 31, col 35 to line 31, col 48 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 109, col 10 to line 109, col 35 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 32, col 35 to line 32, col 48 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 110, col 10 to line 110, col 41 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 33, col 41 to line 33, col 54 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 111, col 10 to line 111, col 45 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 34, col 45 to line 34, col 58 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 112, col 10 to line 112, col 42 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 35, col 42 to line 35, col 55 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 113, col 10 to line 113, col 35 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 36, col 35 to line 36, col 48 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 114, col 10 to line 114, col 36 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 37, col 36 to line 37, col 49 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 115, col 10 to line 115, col 36 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 38, col 36 to line 38, col 49 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 116, col 10 to line 116, col 42 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 39, col 42 to line 39, col 55 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 117, col 10 to line 117, col 48 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 40, col 48 to line 40, col 61 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 118, col 10 to line 118, col 47 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 41, col 47 to line 41, col 60 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 119, col 10 to line 119, col 43 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 42, col 43 to line 42, col 56 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 120, col 10 to line 120, col 43 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 43, col 43 to line 43, col 56 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 121, col 10 to line 121, col 49 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 44, col 49 to line 44, col 62 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 122, col 10 to line 122, col 48 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 45, col 48 to line 45, col 61 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 123, col 10 to line 123, col 44 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 46, col 44 to line 46, col 57 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 124, col 10 to line 124, col 44 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 47, col 44 to line 47, col 57 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 125, col 10 to line 125, col 36 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 48, col 36 to line 48, col 49 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 126, col 10 to line 126, col 53 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 49, col 53 to line 49, col 66 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 127, col 10 to line 127, col 55 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 50, col 55 to line 50, col 68 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 128, col 10 to line 128, col 54 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 51, col 54 to line 51, col 67 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 129, col 10 to line 129, col 53 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 52, col 53 to line 52, col 66 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 130, col 10 to line 130, col 55 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 53, col 55 to line 53, col 68 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 131, col 10 to line 131, col 46 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 54, col 46 to line 54, col 59 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 132, col 10 to line 132, col 51 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 55, col 51 to line 55, col 64 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 133, col 10 to line 133, col 53 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 56, col 53 to line 56, col 66 of module ActionTranslator: 0
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@
||line 134, col 10 to line 134, col 52 of module ActionTranslator: 2
@!@!@ENDMSG 2221 @!@!@
@!@!@STARTMSG 2221:0 @!@!@