-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforge --report debug.info
3189 lines (3152 loc) · 187 KB
/
forge --report debug.info
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
Compiling 59 files with 0.8.25
Solc 0.8.25 finished in 2.44s
Compiler run [32msuccessful![0m
Analysing contracts...
Running tests...
Uncovered for contracts/BayviewContinuousToken.sol:
- Function "" (location: source ID 0, line 75, chars 2407-2438, hits: 0)
- Function "reserveTokenPriceForAmount" (location: source ID 0, line 90, chars 2785-3049, hits: 0)
- Line (location: source ID 0, line 91, chars 2886-3042, hits: 0)
- Statement (location: source ID 0, line 91, chars 2886-3042, hits: 0)
- Statement (location: source ID 0, line 91, chars 2893-3042, hits: 0)
- Function "quantityToBuyWithDepositAmount" (location: source ID 0, line 99, chars 3055-3327, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 0, line 125, chars 3916-3996, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 0, line 142, chars 4579-4656, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 0, line 149, chars 4803-4840, hits: 0)
- Statement (location: source ID 0, line 149, chars 4814-4840, hits: 0)
- Function "_convertWeightTo18Decimals" (location: source ID 0, line 152, chars 4853-4984, hits: 0)
- Line (location: source ID 0, line 153, chars 4933-4977, hits: 0)
- Statement (location: source ID 0, line 153, chars 4933-4977, hits: 0)
- Statement (location: source ID 0, line 153, chars 4940-4977, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 0, line 192, chars 6493-6539, hits: 0)
- Statement (location: source ID 0, line 192, chars 6513-6539, hits: 0)
Uncovered for contracts/BayviewContinuousTokenController.sol:
- Function "" (location: source ID 1, line 27, chars 981-1012, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 1, line 61, chars 1957-2005, hits: 0)
- Statement (location: source ID 1, line 61, chars 1970-2005, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 1, line 62, chars 2015-2061, hits: 0)
- Statement (location: source ID 1, line 62, chars 2026-2061, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 1, line 80, chars 2720-2806, hits: 0)
- Line (location: source ID 1, line 81, chars 2765-2806, hits: 0)
- Statement (location: source ID 1, line 81, chars 2765-2806, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 1, line 85, chars 2895-2984, hits: 0)
- Line (location: source ID 1, line 86, chars 2940-2984, hits: 0)
- Statement (location: source ID 1, line 86, chars 2940-2984, hits: 0)
Uncovered for contracts/bancor/BancorBondingCurveMath.sol:
- Function "reserveTokenPriceForAmount" (location: source ID 2, line 54, chars 2035-2789, hits: 0)
- Line (location: source ID 2, line 60, chars 2219-2261, hits: 0)
- Statement (location: source ID 2, line 60, chars 2219-2261, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 2, line 60, chars 2219-2261, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 2, line 60, chars 2219-2261, hits: 0)
- Line (location: source ID 2, line 61, chars 2267-2326, hits: 0)
- Statement (location: source ID 2, line 61, chars 2267-2326, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 2, line 61, chars 2267-2326, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 2, line 61, chars 2267-2326, hits: 0)
- Line (location: source ID 2, line 62, chars 2332-2420, hits: 0)
- Statement (location: source ID 2, line 62, chars 2332-2420, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 2, line 62, chars 2332-2420, hits: 0)
- Branch (branch: 2, path: 1) (location: source ID 2, line 62, chars 2332-2420, hits: 0)
- Line (location: source ID 2, line 64, chars 2431-2443, hits: 0)
- Statement (location: source ID 2, line 64, chars 2431-2443, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 2, line 64, chars 2427-2453, hits: 0)
- Branch (branch: 3, path: 1) (location: source ID 2, line 64, chars 2427-2453, hits: 0)
- Statement (location: source ID 2, line 64, chars 2445-2453, hits: 0)
- Line (location: source ID 2, line 65, chars 2463-2491, hits: 0)
- Statement (location: source ID 2, line 65, chars 2463-2491, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 2, line 65, chars 2459-2548, hits: 0)
- Branch (branch: 4, path: 1) (location: source ID 2, line 65, chars 2459-2548, hits: 0)
- Statement (location: source ID 2, line 65, chars 2493-2548, hits: 0)
- Statement (location: source ID 2, line 65, chars 2500-2548, hits: 0)
- Statement (location: source ID 2, line 65, chars 2500-2544, hits: 0)
- Line (location: source ID 2, line 67, chars 2555-2591, hits: 0)
- Statement (location: source ID 2, line 67, chars 2555-2591, hits: 0)
- Statement (location: source ID 2, line 67, chars 2571-2591, hits: 0)
- Line (location: source ID 2, line 68, chars 2597-2682, hits: 0)
- Statement (location: source ID 2, line 68, chars 2597-2682, hits: 0)
- Statement (location: source ID 2, line 68, chars 2633-2682, hits: 0)
- Line (location: source ID 2, line 69, chars 2688-2749, hits: 0)
- Statement (location: source ID 2, line 69, chars 2688-2749, hits: 0)
- Statement (location: source ID 2, line 69, chars 2703-2749, hits: 0)
- Line (location: source ID 2, line 70, chars 2755-2784, hits: 0)
- Statement (location: source ID 2, line 70, chars 2755-2784, hits: 0)
- Statement (location: source ID 2, line 70, chars 2762-2784, hits: 0)
- Branch (branch: 5, path: 0) (location: source ID 2, line 93, chars 3636-3678, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 2, line 94, chars 3684-3743, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 2, line 95, chars 3749-3838, hits: 0)
- Branch (branch: 8, path: 0) (location: source ID 2, line 97, chars 3845-3871, hits: 0)
- Statement (location: source ID 2, line 97, chars 3863-3871, hits: 0)
- Branch (branch: 9, path: 0) (location: source ID 2, line 98, chars 3877-3956, hits: 0)
- Statement (location: source ID 2, line 98, chars 3911-3956, hits: 0)
- Statement (location: source ID 2, line 98, chars 3918-3956, hits: 0)
- Statement (location: source ID 2, line 98, chars 3918-3938, hits: 0)
- Branch (branch: 10, path: 0) (location: source ID 2, line 126, chars 5024-5066, hits: 0)
- Branch (branch: 11, path: 0) (location: source ID 2, line 127, chars 5072-5131, hits: 0)
- Branch (branch: 12, path: 0) (location: source ID 2, line 128, chars 5137-5226, hits: 0)
- Branch (branch: 13, path: 0) (location: source ID 2, line 129, chars 5232-5281, hits: 0)
- Branch (branch: 14, path: 0) (location: source ID 2, line 131, chars 5288-5314, hits: 0)
- Statement (location: source ID 2, line 131, chars 5306-5314, hits: 0)
- Branch (branch: 15, path: 0) (location: source ID 2, line 132, chars 5320-5366, hits: 0)
- Statement (location: source ID 2, line 132, chars 5344-5366, hits: 0)
- Branch (branch: 16, path: 0) (location: source ID 2, line 133, chars 5372-5451, hits: 0)
- Statement (location: source ID 2, line 133, chars 5406-5451, hits: 0)
- Statement (location: source ID 2, line 133, chars 5413-5451, hits: 0)
- Statement (location: source ID 2, line 133, chars 5413-5441, hits: 0)
Uncovered for contracts/bancor/Power.sol:
- Function "initMaxExpArray" (location: source ID 3, line 38, chars 1590-9884, hits: 0)
- Line (location: source ID 3, line 39, chars 1635-1690, hits: 0)
- Statement (location: source ID 3, line 39, chars 1635-1690, hits: 0)
- Line (location: source ID 3, line 40, chars 1700-1755, hits: 0)
- Statement (location: source ID 3, line 40, chars 1700-1755, hits: 0)
- Line (location: source ID 3, line 41, chars 1765-1820, hits: 0)
- Statement (location: source ID 3, line 41, chars 1765-1820, hits: 0)
- Line (location: source ID 3, line 42, chars 1830-1885, hits: 0)
- Statement (location: source ID 3, line 42, chars 1830-1885, hits: 0)
- Line (location: source ID 3, line 43, chars 1895-1950, hits: 0)
- Statement (location: source ID 3, line 43, chars 1895-1950, hits: 0)
- Line (location: source ID 3, line 44, chars 1960-2015, hits: 0)
- Statement (location: source ID 3, line 44, chars 1960-2015, hits: 0)
- Line (location: source ID 3, line 45, chars 2025-2080, hits: 0)
- Statement (location: source ID 3, line 45, chars 2025-2080, hits: 0)
- Line (location: source ID 3, line 46, chars 2090-2145, hits: 0)
- Statement (location: source ID 3, line 46, chars 2090-2145, hits: 0)
- Line (location: source ID 3, line 47, chars 2155-2210, hits: 0)
- Statement (location: source ID 3, line 47, chars 2155-2210, hits: 0)
- Line (location: source ID 3, line 48, chars 2220-2275, hits: 0)
- Statement (location: source ID 3, line 48, chars 2220-2275, hits: 0)
- Line (location: source ID 3, line 49, chars 2285-2340, hits: 0)
- Statement (location: source ID 3, line 49, chars 2285-2340, hits: 0)
- Line (location: source ID 3, line 50, chars 2350-2405, hits: 0)
- Statement (location: source ID 3, line 50, chars 2350-2405, hits: 0)
- Line (location: source ID 3, line 51, chars 2415-2470, hits: 0)
- Statement (location: source ID 3, line 51, chars 2415-2470, hits: 0)
- Line (location: source ID 3, line 52, chars 2480-2535, hits: 0)
- Statement (location: source ID 3, line 52, chars 2480-2535, hits: 0)
- Line (location: source ID 3, line 53, chars 2545-2600, hits: 0)
- Statement (location: source ID 3, line 53, chars 2545-2600, hits: 0)
- Line (location: source ID 3, line 54, chars 2610-2665, hits: 0)
- Statement (location: source ID 3, line 54, chars 2610-2665, hits: 0)
- Line (location: source ID 3, line 55, chars 2675-2730, hits: 0)
- Statement (location: source ID 3, line 55, chars 2675-2730, hits: 0)
- Line (location: source ID 3, line 56, chars 2740-2795, hits: 0)
- Statement (location: source ID 3, line 56, chars 2740-2795, hits: 0)
- Line (location: source ID 3, line 57, chars 2805-2860, hits: 0)
- Statement (location: source ID 3, line 57, chars 2805-2860, hits: 0)
- Line (location: source ID 3, line 58, chars 2870-2925, hits: 0)
- Statement (location: source ID 3, line 58, chars 2870-2925, hits: 0)
- Line (location: source ID 3, line 59, chars 2935-2990, hits: 0)
- Statement (location: source ID 3, line 59, chars 2935-2990, hits: 0)
- Line (location: source ID 3, line 60, chars 3000-3055, hits: 0)
- Statement (location: source ID 3, line 60, chars 3000-3055, hits: 0)
- Line (location: source ID 3, line 61, chars 3065-3120, hits: 0)
- Statement (location: source ID 3, line 61, chars 3065-3120, hits: 0)
- Line (location: source ID 3, line 62, chars 3130-3185, hits: 0)
- Statement (location: source ID 3, line 62, chars 3130-3185, hits: 0)
- Line (location: source ID 3, line 63, chars 3195-3250, hits: 0)
- Statement (location: source ID 3, line 63, chars 3195-3250, hits: 0)
- Line (location: source ID 3, line 64, chars 3260-3315, hits: 0)
- Statement (location: source ID 3, line 64, chars 3260-3315, hits: 0)
- Line (location: source ID 3, line 65, chars 3325-3380, hits: 0)
- Statement (location: source ID 3, line 65, chars 3325-3380, hits: 0)
- Line (location: source ID 3, line 66, chars 3390-3445, hits: 0)
- Statement (location: source ID 3, line 66, chars 3390-3445, hits: 0)
- Line (location: source ID 3, line 67, chars 3455-3510, hits: 0)
- Statement (location: source ID 3, line 67, chars 3455-3510, hits: 0)
- Line (location: source ID 3, line 68, chars 3520-3575, hits: 0)
- Statement (location: source ID 3, line 68, chars 3520-3575, hits: 0)
- Line (location: source ID 3, line 69, chars 3585-3640, hits: 0)
- Statement (location: source ID 3, line 69, chars 3585-3640, hits: 0)
- Line (location: source ID 3, line 70, chars 3650-3705, hits: 0)
- Statement (location: source ID 3, line 70, chars 3650-3705, hits: 0)
- Line (location: source ID 3, line 71, chars 3715-3769, hits: 0)
- Statement (location: source ID 3, line 71, chars 3715-3769, hits: 0)
- Line (location: source ID 3, line 72, chars 3779-3833, hits: 0)
- Statement (location: source ID 3, line 72, chars 3779-3833, hits: 0)
- Line (location: source ID 3, line 73, chars 3843-3897, hits: 0)
- Statement (location: source ID 3, line 73, chars 3843-3897, hits: 0)
- Line (location: source ID 3, line 74, chars 3907-3961, hits: 0)
- Statement (location: source ID 3, line 74, chars 3907-3961, hits: 0)
- Line (location: source ID 3, line 75, chars 3971-4025, hits: 0)
- Statement (location: source ID 3, line 75, chars 3971-4025, hits: 0)
- Line (location: source ID 3, line 76, chars 4035-4089, hits: 0)
- Statement (location: source ID 3, line 76, chars 4035-4089, hits: 0)
- Line (location: source ID 3, line 77, chars 4099-4153, hits: 0)
- Statement (location: source ID 3, line 77, chars 4099-4153, hits: 0)
- Line (location: source ID 3, line 78, chars 4163-4217, hits: 0)
- Statement (location: source ID 3, line 78, chars 4163-4217, hits: 0)
- Line (location: source ID 3, line 79, chars 4227-4281, hits: 0)
- Statement (location: source ID 3, line 79, chars 4227-4281, hits: 0)
- Line (location: source ID 3, line 80, chars 4291-4345, hits: 0)
- Statement (location: source ID 3, line 80, chars 4291-4345, hits: 0)
- Line (location: source ID 3, line 81, chars 4355-4409, hits: 0)
- Statement (location: source ID 3, line 81, chars 4355-4409, hits: 0)
- Line (location: source ID 3, line 82, chars 4419-4473, hits: 0)
- Statement (location: source ID 3, line 82, chars 4419-4473, hits: 0)
- Line (location: source ID 3, line 83, chars 4483-4537, hits: 0)
- Statement (location: source ID 3, line 83, chars 4483-4537, hits: 0)
- Line (location: source ID 3, line 84, chars 4547-4601, hits: 0)
- Statement (location: source ID 3, line 84, chars 4547-4601, hits: 0)
- Line (location: source ID 3, line 85, chars 4611-4665, hits: 0)
- Statement (location: source ID 3, line 85, chars 4611-4665, hits: 0)
- Line (location: source ID 3, line 86, chars 4675-4729, hits: 0)
- Statement (location: source ID 3, line 86, chars 4675-4729, hits: 0)
- Line (location: source ID 3, line 87, chars 4739-4793, hits: 0)
- Statement (location: source ID 3, line 87, chars 4739-4793, hits: 0)
- Line (location: source ID 3, line 88, chars 4803-4857, hits: 0)
- Statement (location: source ID 3, line 88, chars 4803-4857, hits: 0)
- Line (location: source ID 3, line 89, chars 4867-4921, hits: 0)
- Statement (location: source ID 3, line 89, chars 4867-4921, hits: 0)
- Line (location: source ID 3, line 90, chars 4931-4985, hits: 0)
- Statement (location: source ID 3, line 90, chars 4931-4985, hits: 0)
- Line (location: source ID 3, line 91, chars 4995-5049, hits: 0)
- Statement (location: source ID 3, line 91, chars 4995-5049, hits: 0)
- Line (location: source ID 3, line 92, chars 5059-5113, hits: 0)
- Statement (location: source ID 3, line 92, chars 5059-5113, hits: 0)
- Line (location: source ID 3, line 93, chars 5123-5177, hits: 0)
- Statement (location: source ID 3, line 93, chars 5123-5177, hits: 0)
- Line (location: source ID 3, line 94, chars 5187-5241, hits: 0)
- Statement (location: source ID 3, line 94, chars 5187-5241, hits: 0)
- Line (location: source ID 3, line 95, chars 5251-5305, hits: 0)
- Statement (location: source ID 3, line 95, chars 5251-5305, hits: 0)
- Line (location: source ID 3, line 96, chars 5315-5369, hits: 0)
- Statement (location: source ID 3, line 96, chars 5315-5369, hits: 0)
- Line (location: source ID 3, line 97, chars 5379-5433, hits: 0)
- Statement (location: source ID 3, line 97, chars 5379-5433, hits: 0)
- Line (location: source ID 3, line 98, chars 5443-5497, hits: 0)
- Statement (location: source ID 3, line 98, chars 5443-5497, hits: 0)
- Line (location: source ID 3, line 99, chars 5507-5561, hits: 0)
- Statement (location: source ID 3, line 99, chars 5507-5561, hits: 0)
- Line (location: source ID 3, line 100, chars 5571-5625, hits: 0)
- Statement (location: source ID 3, line 100, chars 5571-5625, hits: 0)
- Line (location: source ID 3, line 101, chars 5635-5689, hits: 0)
- Statement (location: source ID 3, line 101, chars 5635-5689, hits: 0)
- Line (location: source ID 3, line 102, chars 5699-5753, hits: 0)
- Statement (location: source ID 3, line 102, chars 5699-5753, hits: 0)
- Line (location: source ID 3, line 103, chars 5763-5817, hits: 0)
- Statement (location: source ID 3, line 103, chars 5763-5817, hits: 0)
- Line (location: source ID 3, line 104, chars 5827-5881, hits: 0)
- Statement (location: source ID 3, line 104, chars 5827-5881, hits: 0)
- Line (location: source ID 3, line 105, chars 5891-5945, hits: 0)
- Statement (location: source ID 3, line 105, chars 5891-5945, hits: 0)
- Line (location: source ID 3, line 106, chars 5955-6009, hits: 0)
- Statement (location: source ID 3, line 106, chars 5955-6009, hits: 0)
- Line (location: source ID 3, line 107, chars 6019-6073, hits: 0)
- Statement (location: source ID 3, line 107, chars 6019-6073, hits: 0)
- Line (location: source ID 3, line 108, chars 6083-6137, hits: 0)
- Statement (location: source ID 3, line 108, chars 6083-6137, hits: 0)
- Line (location: source ID 3, line 109, chars 6147-6201, hits: 0)
- Statement (location: source ID 3, line 109, chars 6147-6201, hits: 0)
- Line (location: source ID 3, line 110, chars 6211-6265, hits: 0)
- Statement (location: source ID 3, line 110, chars 6211-6265, hits: 0)
- Line (location: source ID 3, line 111, chars 6275-6329, hits: 0)
- Statement (location: source ID 3, line 111, chars 6275-6329, hits: 0)
- Line (location: source ID 3, line 112, chars 6339-6393, hits: 0)
- Statement (location: source ID 3, line 112, chars 6339-6393, hits: 0)
- Line (location: source ID 3, line 113, chars 6403-6457, hits: 0)
- Statement (location: source ID 3, line 113, chars 6403-6457, hits: 0)
- Line (location: source ID 3, line 114, chars 6467-6521, hits: 0)
- Statement (location: source ID 3, line 114, chars 6467-6521, hits: 0)
- Line (location: source ID 3, line 115, chars 6531-6585, hits: 0)
- Statement (location: source ID 3, line 115, chars 6531-6585, hits: 0)
- Line (location: source ID 3, line 116, chars 6595-6649, hits: 0)
- Statement (location: source ID 3, line 116, chars 6595-6649, hits: 0)
- Line (location: source ID 3, line 117, chars 6659-6713, hits: 0)
- Statement (location: source ID 3, line 117, chars 6659-6713, hits: 0)
- Line (location: source ID 3, line 118, chars 6723-6777, hits: 0)
- Statement (location: source ID 3, line 118, chars 6723-6777, hits: 0)
- Line (location: source ID 3, line 119, chars 6787-6841, hits: 0)
- Statement (location: source ID 3, line 119, chars 6787-6841, hits: 0)
- Line (location: source ID 3, line 120, chars 6851-6905, hits: 0)
- Statement (location: source ID 3, line 120, chars 6851-6905, hits: 0)
- Line (location: source ID 3, line 121, chars 6915-6969, hits: 0)
- Statement (location: source ID 3, line 121, chars 6915-6969, hits: 0)
- Line (location: source ID 3, line 122, chars 6979-7033, hits: 0)
- Statement (location: source ID 3, line 122, chars 6979-7033, hits: 0)
- Line (location: source ID 3, line 123, chars 7043-7097, hits: 0)
- Statement (location: source ID 3, line 123, chars 7043-7097, hits: 0)
- Line (location: source ID 3, line 124, chars 7107-7161, hits: 0)
- Statement (location: source ID 3, line 124, chars 7107-7161, hits: 0)
- Line (location: source ID 3, line 125, chars 7171-7225, hits: 0)
- Statement (location: source ID 3, line 125, chars 7171-7225, hits: 0)
- Line (location: source ID 3, line 126, chars 7235-7289, hits: 0)
- Statement (location: source ID 3, line 126, chars 7235-7289, hits: 0)
- Line (location: source ID 3, line 127, chars 7299-7353, hits: 0)
- Statement (location: source ID 3, line 127, chars 7299-7353, hits: 0)
- Line (location: source ID 3, line 128, chars 7363-7417, hits: 0)
- Statement (location: source ID 3, line 128, chars 7363-7417, hits: 0)
- Line (location: source ID 3, line 129, chars 7427-7481, hits: 0)
- Statement (location: source ID 3, line 129, chars 7427-7481, hits: 0)
- Line (location: source ID 3, line 130, chars 7491-7545, hits: 0)
- Statement (location: source ID 3, line 130, chars 7491-7545, hits: 0)
- Line (location: source ID 3, line 131, chars 7555-7609, hits: 0)
- Statement (location: source ID 3, line 131, chars 7555-7609, hits: 0)
- Line (location: source ID 3, line 132, chars 7619-7673, hits: 0)
- Statement (location: source ID 3, line 132, chars 7619-7673, hits: 0)
- Line (location: source ID 3, line 133, chars 7683-7737, hits: 0)
- Statement (location: source ID 3, line 133, chars 7683-7737, hits: 0)
- Line (location: source ID 3, line 134, chars 7747-7801, hits: 0)
- Statement (location: source ID 3, line 134, chars 7747-7801, hits: 0)
- Line (location: source ID 3, line 135, chars 7811-7865, hits: 0)
- Statement (location: source ID 3, line 135, chars 7811-7865, hits: 0)
- Line (location: source ID 3, line 136, chars 7875-7929, hits: 0)
- Statement (location: source ID 3, line 136, chars 7875-7929, hits: 0)
- Line (location: source ID 3, line 137, chars 7939-7993, hits: 0)
- Statement (location: source ID 3, line 137, chars 7939-7993, hits: 0)
- Line (location: source ID 3, line 138, chars 8003-8057, hits: 0)
- Statement (location: source ID 3, line 138, chars 8003-8057, hits: 0)
- Line (location: source ID 3, line 139, chars 8067-8122, hits: 0)
- Statement (location: source ID 3, line 139, chars 8067-8122, hits: 0)
- Line (location: source ID 3, line 140, chars 8132-8187, hits: 0)
- Statement (location: source ID 3, line 140, chars 8132-8187, hits: 0)
- Line (location: source ID 3, line 141, chars 8197-8252, hits: 0)
- Statement (location: source ID 3, line 141, chars 8197-8252, hits: 0)
- Line (location: source ID 3, line 142, chars 8262-8317, hits: 0)
- Statement (location: source ID 3, line 142, chars 8262-8317, hits: 0)
- Line (location: source ID 3, line 143, chars 8327-8382, hits: 0)
- Statement (location: source ID 3, line 143, chars 8327-8382, hits: 0)
- Line (location: source ID 3, line 144, chars 8392-8447, hits: 0)
- Statement (location: source ID 3, line 144, chars 8392-8447, hits: 0)
- Line (location: source ID 3, line 145, chars 8457-8512, hits: 0)
- Statement (location: source ID 3, line 145, chars 8457-8512, hits: 0)
- Line (location: source ID 3, line 146, chars 8522-8577, hits: 0)
- Statement (location: source ID 3, line 146, chars 8522-8577, hits: 0)
- Line (location: source ID 3, line 147, chars 8587-8642, hits: 0)
- Statement (location: source ID 3, line 147, chars 8587-8642, hits: 0)
- Line (location: source ID 3, line 148, chars 8652-8707, hits: 0)
- Statement (location: source ID 3, line 148, chars 8652-8707, hits: 0)
- Line (location: source ID 3, line 149, chars 8717-8772, hits: 0)
- Statement (location: source ID 3, line 149, chars 8717-8772, hits: 0)
- Line (location: source ID 3, line 150, chars 8782-8837, hits: 0)
- Statement (location: source ID 3, line 150, chars 8782-8837, hits: 0)
- Line (location: source ID 3, line 151, chars 8847-8902, hits: 0)
- Statement (location: source ID 3, line 151, chars 8847-8902, hits: 0)
- Line (location: source ID 3, line 152, chars 8912-8967, hits: 0)
- Statement (location: source ID 3, line 152, chars 8912-8967, hits: 0)
- Line (location: source ID 3, line 153, chars 8977-9032, hits: 0)
- Statement (location: source ID 3, line 153, chars 8977-9032, hits: 0)
- Line (location: source ID 3, line 154, chars 9042-9097, hits: 0)
- Statement (location: source ID 3, line 154, chars 9042-9097, hits: 0)
- Line (location: source ID 3, line 155, chars 9107-9162, hits: 0)
- Statement (location: source ID 3, line 155, chars 9107-9162, hits: 0)
- Line (location: source ID 3, line 156, chars 9172-9227, hits: 0)
- Statement (location: source ID 3, line 156, chars 9172-9227, hits: 0)
- Line (location: source ID 3, line 157, chars 9237-9292, hits: 0)
- Statement (location: source ID 3, line 157, chars 9237-9292, hits: 0)
- Line (location: source ID 3, line 158, chars 9302-9357, hits: 0)
- Statement (location: source ID 3, line 158, chars 9302-9357, hits: 0)
- Line (location: source ID 3, line 159, chars 9367-9422, hits: 0)
- Statement (location: source ID 3, line 159, chars 9367-9422, hits: 0)
- Line (location: source ID 3, line 160, chars 9432-9487, hits: 0)
- Statement (location: source ID 3, line 160, chars 9432-9487, hits: 0)
- Line (location: source ID 3, line 161, chars 9497-9552, hits: 0)
- Statement (location: source ID 3, line 161, chars 9497-9552, hits: 0)
- Line (location: source ID 3, line 162, chars 9562-9617, hits: 0)
- Statement (location: source ID 3, line 162, chars 9562-9617, hits: 0)
- Line (location: source ID 3, line 163, chars 9627-9682, hits: 0)
- Statement (location: source ID 3, line 163, chars 9627-9682, hits: 0)
- Line (location: source ID 3, line 164, chars 9692-9747, hits: 0)
- Statement (location: source ID 3, line 164, chars 9692-9747, hits: 0)
- Line (location: source ID 3, line 165, chars 9757-9812, hits: 0)
- Statement (location: source ID 3, line 165, chars 9757-9812, hits: 0)
- Line (location: source ID 3, line 166, chars 9822-9877, hits: 0)
- Statement (location: source ID 3, line 166, chars 9822-9877, hits: 0)
- Function "init" (location: source ID 3, line 172, chars 9988-10053, hits: 0)
- Line (location: source ID 3, line 173, chars 10029-10046, hits: 0)
- Statement (location: source ID 3, line 173, chars 10029-10046, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 3, line 200, chars 11770-11795, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 3, line 204, chars 11883-11962, hits: 0)
- Line (location: source ID 3, line 207, chars 11982-12008, hits: 0)
- Statement (location: source ID 3, line 207, chars 11982-12008, hits: 0)
- Branch (branch: 2, path: 1) (location: source ID 3, line 211, chars 12090-12205, hits: 0)
- Line (location: source ID 3, line 214, chars 12225-12285, hits: 0)
- Statement (location: source ID 3, line 214, chars 12225-12285, hits: 0)
- Statement (location: source ID 3, line 214, chars 12243-12285, hits: 0)
- Line (location: source ID 3, line 215, chars 12299-12388, hits: 0)
- Statement (location: source ID 3, line 215, chars 12299-12388, hits: 0)
- Function "generalLog" (location: source ID 3, line 223, chars 12575-13378, hits: 0)
- Line (location: source ID 3, line 224, chars 12648-12663, hits: 0)
- Statement (location: source ID 3, line 224, chars 12648-12663, hits: 0)
- Line (location: source ID 3, line 227, chars 12769-12781, hits: 0)
- Statement (location: source ID 3, line 227, chars 12769-12781, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 3, line 227, chars 12765-12917, hits: 0)
- Branch (branch: 3, path: 1) (location: source ID 3, line 227, chars 12765-12917, hits: 0)
- Line (location: source ID 3, line 228, chars 12797-12833, hits: 0)
- Statement (location: source ID 3, line 228, chars 12797-12833, hits: 0)
- Statement (location: source ID 3, line 228, chars 12811-12833, hits: 0)
- Line (location: source ID 3, line 229, chars 12847-12858, hits: 0)
- Statement (location: source ID 3, line 229, chars 12847-12858, hits: 0)
- Line (location: source ID 3, line 230, chars 12885-12906, hits: 0)
- Statement (location: source ID 3, line 230, chars 12885-12906, hits: 0)
- Line (location: source ID 3, line 234, chars 13022-13033, hits: 0)
- Statement (location: source ID 3, line 234, chars 13022-13033, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 3, line 234, chars 13018-13315, hits: 0)
- Branch (branch: 4, path: 1) (location: source ID 3, line 234, chars 13018-13315, hits: 0)
- Line (location: source ID 3, line 235, chars 13054-13077, hits: 0)
- Statement (location: source ID 3, line 235, chars 13054-13077, hits: 0)
- Statement (location: source ID 3, line 235, chars 13079-13084, hits: 0)
- Statement (location: source ID 3, line 235, chars 13086-13089, hits: 0)
- Line (location: source ID 3, line 236, chars 13109-13130, hits: 0)
- Statement (location: source ID 3, line 236, chars 13109-13130, hits: 0)
- Line (location: source ID 3, line 237, chars 13169-13181, hits: 0)
- Statement (location: source ID 3, line 237, chars 13169-13181, hits: 0)
- Branch (branch: 5, path: 0) (location: source ID 3, line 237, chars 13165-13291, hits: 0)
- Branch (branch: 5, path: 1) (location: source ID 3, line 237, chars 13165-13291, hits: 0)
- Line (location: source ID 3, line 238, chars 13205-13212, hits: 0)
- Statement (location: source ID 3, line 238, chars 13205-13212, hits: 0)
- Line (location: source ID 3, line 239, chars 13251-13272, hits: 0)
- Statement (location: source ID 3, line 239, chars 13251-13272, hits: 0)
- Line (location: source ID 3, line 244, chars 13325-13371, hits: 0)
- Statement (location: source ID 3, line 244, chars 13325-13371, hits: 0)
- Statement (location: source ID 3, line 244, chars 13332-13371, hits: 0)
- Function "floorLog2" (location: source ID 3, line 250, chars 13501-14014, hits: 0)
- Line (location: source ID 3, line 251, chars 13572-13585, hits: 0)
- Statement (location: source ID 3, line 251, chars 13572-13585, hits: 0)
- Line (location: source ID 3, line 253, chars 13600-13608, hits: 0)
- Statement (location: source ID 3, line 253, chars 13600-13608, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 3, line 253, chars 13596-13752, hits: 0)
- Branch (branch: 6, path: 1) (location: source ID 3, line 253, chars 13596-13752, hits: 0)
- Line (location: source ID 3, line 255, chars 13667-13673, hits: 0)
- Statement (location: source ID 3, line 255, chars 13667-13673, hits: 0)
- Line (location: source ID 3, line 256, chars 13693-13701, hits: 0)
- Statement (location: source ID 3, line 256, chars 13693-13701, hits: 0)
- Line (location: source ID 3, line 257, chars 13719-13727, hits: 0)
- Statement (location: source ID 3, line 257, chars 13719-13727, hits: 0)
- Line (location: source ID 3, line 261, chars 13813-13826, hits: 0)
- Statement (location: source ID 3, line 261, chars 13813-13826, hits: 0)
- Statement (location: source ID 3, line 261, chars 13828-13833, hits: 0)
- Statement (location: source ID 3, line 261, chars 13835-13842, hits: 0)
- Line (location: source ID 3, line 262, chars 13866-13882, hits: 0)
- Statement (location: source ID 3, line 262, chars 13866-13882, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 3, line 262, chars 13862-13963, hits: 0)
- Branch (branch: 7, path: 1) (location: source ID 3, line 262, chars 13862-13963, hits: 0)
- Line (location: source ID 3, line 263, chars 13906-13914, hits: 0)
- Statement (location: source ID 3, line 263, chars 13906-13914, hits: 0)
- Line (location: source ID 3, line 264, chars 13936-13944, hits: 0)
- Statement (location: source ID 3, line 264, chars 13936-13944, hits: 0)
- Line (location: source ID 3, line 269, chars 13997-14007, hits: 0)
- Statement (location: source ID 3, line 269, chars 13997-14007, hits: 0)
- Function "findPositionInMaxExpArray" (location: source ID 3, line 277, chars 14378-14895, hits: 0)
- Line (location: source ID 3, line 278, chars 14474-14498, hits: 0)
- Statement (location: source ID 3, line 278, chars 14474-14498, hits: 0)
- Line (location: source ID 3, line 279, chars 14508-14532, hits: 0)
- Statement (location: source ID 3, line 279, chars 14508-14532, hits: 0)
- Line (location: source ID 3, line 281, chars 14550-14561, hits: 0)
- Statement (location: source ID 3, line 281, chars 14550-14561, hits: 0)
- Statement (location: source ID 3, line 281, chars 14550-14556, hits: 0)
- Line (location: source ID 3, line 282, chars 14577-14602, hits: 0)
- Statement (location: source ID 3, line 282, chars 14577-14602, hits: 0)
- Statement (location: source ID 3, line 282, chars 14589-14602, hits: 0)
- Line (location: source ID 3, line 283, chars 14620-14642, hits: 0)
- Statement (location: source ID 3, line 283, chars 14620-14642, hits: 0)
- Branch (branch: 8, path: 0) (location: source ID 3, line 283, chars 14616-14652, hits: 0)
- Branch (branch: 8, path: 1) (location: source ID 3, line 283, chars 14616-14652, hits: 0)
- Statement (location: source ID 3, line 283, chars 14644-14652, hits: 0)
- Line (location: source ID 3, line 284, chars 14671-14679, hits: 0)
- Statement (location: source ID 3, line 284, chars 14671-14679, hits: 0)
- Line (location: source ID 3, line 287, chars 14704-14725, hits: 0)
- Statement (location: source ID 3, line 287, chars 14704-14725, hits: 0)
- Branch (branch: 9, path: 0) (location: source ID 3, line 287, chars 14700-14762, hits: 0)
- Branch (branch: 9, path: 1) (location: source ID 3, line 287, chars 14700-14762, hits: 0)
- Statement (location: source ID 3, line 287, chars 14729-14742, hits: 0)
- Statement (location: source ID 3, line 287, chars 14744-14759, hits: 0)
- Line (location: source ID 3, line 288, chars 14775-14796, hits: 0)
- Statement (location: source ID 3, line 288, chars 14775-14796, hits: 0)
- Branch (branch: 10, path: 0) (location: source ID 3, line 288, chars 14771-14833, hits: 0)
- Branch (branch: 10, path: 1) (location: source ID 3, line 288, chars 14771-14833, hits: 0)
- Statement (location: source ID 3, line 288, chars 14800-14813, hits: 0)
- Statement (location: source ID 3, line 288, chars 14815-14830, hits: 0)
- Line (location: source ID 3, line 291, chars 14874-14888, hits: 0)
- Statement (location: source ID 3, line 291, chars 14874-14888, hits: 0)
- Branch (branch: 11, path: 0) (location: source ID 3, line 291, chars 14874-14888, hits: 0)
- Branch (branch: 11, path: 1) (location: source ID 3, line 291, chars 14874-14888, hits: 0)
- Function "generalExp" (location: source ID 3, line 301, chars 15454-19536, hits: 0)
- Line (location: source ID 3, line 302, chars 15546-15561, hits: 0)
- Statement (location: source ID 3, line 302, chars 15546-15561, hits: 0)
- Line (location: source ID 3, line 303, chars 15571-15586, hits: 0)
- Statement (location: source ID 3, line 303, chars 15571-15586, hits: 0)
- Line (location: source ID 3, line 305, chars 15597-15625, hits: 0)
- Statement (location: source ID 3, line 305, chars 15597-15625, hits: 0)
- Line (location: source ID 3, line 306, chars 15635-15680, hits: 0)
- Statement (location: source ID 3, line 306, chars 15635-15680, hits: 0)
- Line (location: source ID 3, line 307, chars 15716-15744, hits: 0)
- Statement (location: source ID 3, line 307, chars 15716-15744, hits: 0)
- Line (location: source ID 3, line 308, chars 15754-15799, hits: 0)
- Statement (location: source ID 3, line 308, chars 15754-15799, hits: 0)
- Line (location: source ID 3, line 309, chars 15835-15863, hits: 0)
- Statement (location: source ID 3, line 309, chars 15835-15863, hits: 0)
- Line (location: source ID 3, line 310, chars 15873-15918, hits: 0)
- Statement (location: source ID 3, line 310, chars 15873-15918, hits: 0)
- Line (location: source ID 3, line 311, chars 15954-15982, hits: 0)
- Statement (location: source ID 3, line 311, chars 15954-15982, hits: 0)
- Line (location: source ID 3, line 312, chars 15992-16037, hits: 0)
- Statement (location: source ID 3, line 312, chars 15992-16037, hits: 0)
- Line (location: source ID 3, line 313, chars 16073-16101, hits: 0)
- Statement (location: source ID 3, line 313, chars 16073-16101, hits: 0)
- Line (location: source ID 3, line 314, chars 16111-16156, hits: 0)
- Statement (location: source ID 3, line 314, chars 16111-16156, hits: 0)
- Line (location: source ID 3, line 315, chars 16192-16220, hits: 0)
- Statement (location: source ID 3, line 315, chars 16192-16220, hits: 0)
- Line (location: source ID 3, line 316, chars 16230-16275, hits: 0)
- Statement (location: source ID 3, line 316, chars 16230-16275, hits: 0)
- Line (location: source ID 3, line 317, chars 16311-16339, hits: 0)
- Statement (location: source ID 3, line 317, chars 16311-16339, hits: 0)
- Line (location: source ID 3, line 318, chars 16349-16394, hits: 0)
- Statement (location: source ID 3, line 318, chars 16349-16394, hits: 0)
- Line (location: source ID 3, line 319, chars 16430-16458, hits: 0)
- Statement (location: source ID 3, line 319, chars 16430-16458, hits: 0)
- Line (location: source ID 3, line 320, chars 16468-16513, hits: 0)
- Statement (location: source ID 3, line 320, chars 16468-16513, hits: 0)
- Line (location: source ID 3, line 321, chars 16549-16577, hits: 0)
- Statement (location: source ID 3, line 321, chars 16549-16577, hits: 0)
- Line (location: source ID 3, line 322, chars 16587-16632, hits: 0)
- Statement (location: source ID 3, line 322, chars 16587-16632, hits: 0)
- Line (location: source ID 3, line 323, chars 16668-16696, hits: 0)
- Statement (location: source ID 3, line 323, chars 16668-16696, hits: 0)
- Line (location: source ID 3, line 324, chars 16706-16751, hits: 0)
- Statement (location: source ID 3, line 324, chars 16706-16751, hits: 0)
- Line (location: source ID 3, line 325, chars 16787-16815, hits: 0)
- Statement (location: source ID 3, line 325, chars 16787-16815, hits: 0)
- Line (location: source ID 3, line 326, chars 16825-16870, hits: 0)
- Statement (location: source ID 3, line 326, chars 16825-16870, hits: 0)
- Line (location: source ID 3, line 327, chars 16906-16934, hits: 0)
- Statement (location: source ID 3, line 327, chars 16906-16934, hits: 0)
- Line (location: source ID 3, line 328, chars 16944-16989, hits: 0)
- Statement (location: source ID 3, line 328, chars 16944-16989, hits: 0)
- Line (location: source ID 3, line 329, chars 17025-17053, hits: 0)
- Statement (location: source ID 3, line 329, chars 17025-17053, hits: 0)
- Line (location: source ID 3, line 330, chars 17063-17108, hits: 0)
- Statement (location: source ID 3, line 330, chars 17063-17108, hits: 0)
- Line (location: source ID 3, line 331, chars 17144-17172, hits: 0)
- Statement (location: source ID 3, line 331, chars 17144-17172, hits: 0)
- Line (location: source ID 3, line 332, chars 17182-17227, hits: 0)
- Statement (location: source ID 3, line 332, chars 17182-17227, hits: 0)
- Line (location: source ID 3, line 333, chars 17263-17291, hits: 0)
- Statement (location: source ID 3, line 333, chars 17263-17291, hits: 0)
- Line (location: source ID 3, line 334, chars 17301-17346, hits: 0)
- Statement (location: source ID 3, line 334, chars 17301-17346, hits: 0)
- Line (location: source ID 3, line 335, chars 17382-17410, hits: 0)
- Statement (location: source ID 3, line 335, chars 17382-17410, hits: 0)
- Line (location: source ID 3, line 336, chars 17420-17465, hits: 0)
- Statement (location: source ID 3, line 336, chars 17420-17465, hits: 0)
- Line (location: source ID 3, line 337, chars 17501-17529, hits: 0)
- Statement (location: source ID 3, line 337, chars 17501-17529, hits: 0)
- Line (location: source ID 3, line 338, chars 17539-17584, hits: 0)
- Statement (location: source ID 3, line 338, chars 17539-17584, hits: 0)
- Line (location: source ID 3, line 339, chars 17620-17648, hits: 0)
- Statement (location: source ID 3, line 339, chars 17620-17648, hits: 0)
- Line (location: source ID 3, line 340, chars 17658-17703, hits: 0)
- Statement (location: source ID 3, line 340, chars 17658-17703, hits: 0)
- Line (location: source ID 3, line 341, chars 17739-17767, hits: 0)
- Statement (location: source ID 3, line 341, chars 17739-17767, hits: 0)
- Line (location: source ID 3, line 342, chars 17777-17822, hits: 0)
- Statement (location: source ID 3, line 342, chars 17777-17822, hits: 0)
- Line (location: source ID 3, line 343, chars 17858-17886, hits: 0)
- Statement (location: source ID 3, line 343, chars 17858-17886, hits: 0)
- Line (location: source ID 3, line 344, chars 17896-17941, hits: 0)
- Statement (location: source ID 3, line 344, chars 17896-17941, hits: 0)
- Line (location: source ID 3, line 345, chars 17977-18005, hits: 0)
- Statement (location: source ID 3, line 345, chars 17977-18005, hits: 0)
- Line (location: source ID 3, line 346, chars 18015-18060, hits: 0)
- Statement (location: source ID 3, line 346, chars 18015-18060, hits: 0)
- Line (location: source ID 3, line 347, chars 18096-18124, hits: 0)
- Statement (location: source ID 3, line 347, chars 18096-18124, hits: 0)
- Line (location: source ID 3, line 348, chars 18134-18179, hits: 0)
- Statement (location: source ID 3, line 348, chars 18134-18179, hits: 0)
- Line (location: source ID 3, line 349, chars 18215-18243, hits: 0)
- Statement (location: source ID 3, line 349, chars 18215-18243, hits: 0)
- Line (location: source ID 3, line 350, chars 18253-18298, hits: 0)
- Statement (location: source ID 3, line 350, chars 18253-18298, hits: 0)
- Line (location: source ID 3, line 351, chars 18334-18362, hits: 0)
- Statement (location: source ID 3, line 351, chars 18334-18362, hits: 0)
- Line (location: source ID 3, line 352, chars 18372-18417, hits: 0)
- Statement (location: source ID 3, line 352, chars 18372-18417, hits: 0)
- Line (location: source ID 3, line 353, chars 18453-18481, hits: 0)
- Statement (location: source ID 3, line 353, chars 18453-18481, hits: 0)
- Line (location: source ID 3, line 354, chars 18491-18536, hits: 0)
- Statement (location: source ID 3, line 354, chars 18491-18536, hits: 0)
- Line (location: source ID 3, line 355, chars 18572-18600, hits: 0)
- Statement (location: source ID 3, line 355, chars 18572-18600, hits: 0)
- Line (location: source ID 3, line 356, chars 18610-18655, hits: 0)
- Statement (location: source ID 3, line 356, chars 18610-18655, hits: 0)
- Line (location: source ID 3, line 357, chars 18691-18719, hits: 0)
- Statement (location: source ID 3, line 357, chars 18691-18719, hits: 0)
- Line (location: source ID 3, line 358, chars 18729-18774, hits: 0)
- Statement (location: source ID 3, line 358, chars 18729-18774, hits: 0)
- Line (location: source ID 3, line 359, chars 18810-18838, hits: 0)
- Statement (location: source ID 3, line 359, chars 18810-18838, hits: 0)
- Line (location: source ID 3, line 360, chars 18848-18893, hits: 0)
- Statement (location: source ID 3, line 360, chars 18848-18893, hits: 0)
- Line (location: source ID 3, line 361, chars 18929-18957, hits: 0)
- Statement (location: source ID 3, line 361, chars 18929-18957, hits: 0)
- Line (location: source ID 3, line 362, chars 18967-19012, hits: 0)
- Statement (location: source ID 3, line 362, chars 18967-19012, hits: 0)
- Line (location: source ID 3, line 363, chars 19048-19076, hits: 0)
- Statement (location: source ID 3, line 363, chars 19048-19076, hits: 0)
- Line (location: source ID 3, line 364, chars 19086-19131, hits: 0)
- Statement (location: source ID 3, line 364, chars 19086-19131, hits: 0)
- Line (location: source ID 3, line 365, chars 19167-19195, hits: 0)
- Statement (location: source ID 3, line 365, chars 19167-19195, hits: 0)
- Line (location: source ID 3, line 366, chars 19205-19250, hits: 0)
- Statement (location: source ID 3, line 366, chars 19205-19250, hits: 0)
- Line (location: source ID 3, line 367, chars 19286-19314, hits: 0)
- Statement (location: source ID 3, line 367, chars 19286-19314, hits: 0)
- Line (location: source ID 3, line 368, chars 19324-19369, hits: 0)
- Statement (location: source ID 3, line 368, chars 19324-19369, hits: 0)
- Line (location: source ID 3, line 370, chars 19406-19479, hits: 0)
- Statement (location: source ID 3, line 370, chars 19406-19479, hits: 0)
- Statement (location: source ID 3, line 370, chars 19413-19479, hits: 0)
- Statement (location: source ID 3, line 370, chars 19413-19457, hits: 0)
- Statement (location: source ID 3, line 370, chars 19413-19452, hits: 0)
- Branch (branch: 24, path: 0) (location: source ID 3, line 511, chars 26952-27103, hits: 0)
- Line (location: source ID 3, line 512, chars 27016-27103, hits: 0)
- Statement (location: source ID 3, line 512, chars 27016-27103, hits: 0)
- Branch (branch: 25, path: 0) (location: source ID 3, line 513, chars 27137-27288, hits: 0)
- Line (location: source ID 3, line 514, chars 27201-27288, hits: 0)
- Statement (location: source ID 3, line 514, chars 27201-27288, hits: 0)
- Branch (branch: 26, path: 0) (location: source ID 3, line 515, chars 27322-27473, hits: 0)
- Line (location: source ID 3, line 516, chars 27386-27473, hits: 0)
- Statement (location: source ID 3, line 516, chars 27386-27473, hits: 0)
Uncovered for contracts/bancor/libraries/SafeMath.sol:
- Function "tryAdd" (location: source ID 4, line 22, chars 641-857, hits: 0)
- Line (location: source ID 4, line 24, chars 751-768, hits: 0)
- Statement (location: source ID 4, line 24, chars 751-768, hits: 0)
- Statement (location: source ID 4, line 24, chars 763-768, hits: 0)
- Line (location: source ID 4, line 25, chars 786-791, hits: 0)
- Statement (location: source ID 4, line 25, chars 786-791, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 4, line 25, chars 782-810, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 4, line 25, chars 782-810, hits: 0)
- Statement (location: source ID 4, line 25, chars 793-810, hits: 0)
- Line (location: source ID 4, line 26, chars 824-840, hits: 0)
- Statement (location: source ID 4, line 26, chars 824-840, hits: 0)
- Function "trySub" (location: source ID 4, line 35, chars 1002-1191, hits: 0)
- Line (location: source ID 4, line 37, chars 1116-1121, hits: 0)
- Statement (location: source ID 4, line 37, chars 1116-1121, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 4, line 37, chars 1112-1140, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 4, line 37, chars 1112-1140, hits: 0)
- Statement (location: source ID 4, line 37, chars 1123-1140, hits: 0)
- Line (location: source ID 4, line 38, chars 1154-1174, hits: 0)
- Statement (location: source ID 4, line 38, chars 1154-1174, hits: 0)
- Function "tryMul" (location: source ID 4, line 47, chars 1339-1832, hits: 0)
- Line (location: source ID 4, line 52, chars 1683-1689, hits: 0)
- Statement (location: source ID 4, line 52, chars 1683-1689, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 4, line 52, chars 1679-1707, hits: 0)
- Branch (branch: 2, path: 1) (location: source ID 4, line 52, chars 1679-1707, hits: 0)
- Statement (location: source ID 4, line 52, chars 1691-1707, hits: 0)
- Line (location: source ID 4, line 53, chars 1721-1738, hits: 0)
- Statement (location: source ID 4, line 53, chars 1721-1738, hits: 0)
- Statement (location: source ID 4, line 53, chars 1733-1738, hits: 0)
- Line (location: source ID 4, line 54, chars 1756-1766, hits: 0)
- Statement (location: source ID 4, line 54, chars 1756-1766, hits: 0)
- Statement (location: source ID 4, line 54, chars 1756-1761, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 4, line 54, chars 1752-1785, hits: 0)
- Branch (branch: 3, path: 1) (location: source ID 4, line 54, chars 1752-1785, hits: 0)
- Statement (location: source ID 4, line 54, chars 1768-1785, hits: 0)
- Line (location: source ID 4, line 55, chars 1799-1815, hits: 0)
- Statement (location: source ID 4, line 55, chars 1799-1815, hits: 0)
- Function "tryDiv" (location: source ID 4, line 64, chars 1981-2171, hits: 0)
- Line (location: source ID 4, line 66, chars 2095-2101, hits: 0)
- Statement (location: source ID 4, line 66, chars 2095-2101, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 4, line 66, chars 2091-2120, hits: 0)
- Branch (branch: 4, path: 1) (location: source ID 4, line 66, chars 2091-2120, hits: 0)
- Statement (location: source ID 4, line 66, chars 2103-2120, hits: 0)
- Line (location: source ID 4, line 67, chars 2134-2154, hits: 0)
- Statement (location: source ID 4, line 67, chars 2134-2154, hits: 0)
- Function "tryMod" (location: source ID 4, line 76, chars 2330-2520, hits: 0)
- Line (location: source ID 4, line 78, chars 2444-2450, hits: 0)
- Statement (location: source ID 4, line 78, chars 2444-2450, hits: 0)
- Branch (branch: 5, path: 0) (location: source ID 4, line 78, chars 2440-2469, hits: 0)
- Branch (branch: 5, path: 1) (location: source ID 4, line 78, chars 2440-2469, hits: 0)
- Statement (location: source ID 4, line 78, chars 2452-2469, hits: 0)
- Line (location: source ID 4, line 79, chars 2483-2503, hits: 0)
- Statement (location: source ID 4, line 79, chars 2483-2503, hits: 0)
- Function "sub" (location: source ID 4, line 107, chars 3122-3218, hits: 0)
- Line (location: source ID 4, line 108, chars 3199-3211, hits: 0)
- Statement (location: source ID 4, line 108, chars 3199-3211, hits: 0)
- Statement (location: source ID 4, line 108, chars 3206-3211, hits: 0)
- Function "div" (location: source ID 4, line 135, chars 3850-3946, hits: 0)
- Line (location: source ID 4, line 136, chars 3927-3939, hits: 0)
- Statement (location: source ID 4, line 136, chars 3927-3939, hits: 0)
- Statement (location: source ID 4, line 136, chars 3934-3939, hits: 0)
- Function "mod" (location: source ID 4, line 151, chars 4399-4495, hits: 0)
- Line (location: source ID 4, line 152, chars 4476-4488, hits: 0)
- Statement (location: source ID 4, line 152, chars 4476-4488, hits: 0)
- Statement (location: source ID 4, line 152, chars 4483-4488, hits: 0)
- Function "sub" (location: source ID 4, line 168, chars 4959-5160, hits: 0)
- Line (location: source ID 4, line 170, chars 5088-5117, hits: 0)
- Statement (location: source ID 4, line 170, chars 5088-5117, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 4, line 170, chars 5088-5117, hits: 0)
- Branch (branch: 6, path: 1) (location: source ID 4, line 170, chars 5088-5117, hits: 0)
- Line (location: source ID 4, line 171, chars 5131-5143, hits: 0)
- Statement (location: source ID 4, line 171, chars 5131-5143, hits: 0)
- Statement (location: source ID 4, line 171, chars 5138-5143, hits: 0)
- Function "div" (location: source ID 4, line 187, chars 5644-5844, hits: 0)
- Line (location: source ID 4, line 189, chars 5773-5801, hits: 0)
- Statement (location: source ID 4, line 189, chars 5773-5801, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 4, line 189, chars 5773-5801, hits: 0)
- Branch (branch: 7, path: 1) (location: source ID 4, line 189, chars 5773-5801, hits: 0)
- Line (location: source ID 4, line 190, chars 5815-5827, hits: 0)
- Statement (location: source ID 4, line 190, chars 5815-5827, hits: 0)
- Statement (location: source ID 4, line 190, chars 5822-5827, hits: 0)
- Function "mod" (location: source ID 4, line 209, chars 6490-6690, hits: 0)
- Line (location: source ID 4, line 211, chars 6619-6647, hits: 0)
- Statement (location: source ID 4, line 211, chars 6619-6647, hits: 0)
- Branch (branch: 8, path: 0) (location: source ID 4, line 211, chars 6619-6647, hits: 0)
- Branch (branch: 8, path: 1) (location: source ID 4, line 211, chars 6619-6647, hits: 0)
- Line (location: source ID 4, line 212, chars 6661-6673, hits: 0)
- Statement (location: source ID 4, line 212, chars 6661-6673, hits: 0)
- Statement (location: source ID 4, line 212, chars 6668-6673, hits: 0)
Uncovered for contracts/libraries/Math.sol:
- Line (location: source ID 9, line 21, chars 698-704, hits: 0)
- Statement (location: source ID 9, line 21, chars 698-704, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 9, line 21, chars 694-736, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 9, line 21, chars 694-736, hits: 0)
- Line (location: source ID 9, line 22, chars 720-725, hits: 0)
- Statement (location: source ID 9, line 22, chars 720-725, hits: 0)
Uncovered for contracts/liquidity-pool/PoolCreator.sol:
Uncovered for contracts/liquidity-pool/PoolLiquidityProvider.sol:
Uncovered for contracts/oracles/PythOracle.sol:
Anchors for Contract "MockERC721" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 37):
Anchors for Contract "BayviewContinuousTokenControllerDeployTest" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 49):
Anchors for Contract "PythOracleGetETHPriceInUSDTest" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 57):
Anchors for Contract "BayviewContinuousTokenRetireTest" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 55):
Anchors for Contract "console" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 30):
Anchors for Contract "stdError" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 20):
Anchors for Contract "stdJson" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 22):
Anchors for Contract "BayviewContinuousTokenControllerSellTest" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 52):
Anchors for Contract "SafeMath" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 4):
Anchors for Contract "PythStructs" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 46):
Anchors for Contract "BayviewContinuousTokenMintTest" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 54):
Anchors for Contract "BayviewContinuousTokenControllerBuyTest" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 48):
Anchors for Contract "MockERC20" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 36):
Anchors for Contract "BayviewContinuousTokenTest" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 56):
Anchors for Contract "BayviewContinuousToken" (solc 0.8.25+commit.b61c2a91.Darwin.appleclang, source ID 0):
- IC 7087 -> Item 393
- Refers to item: Line (location: source ID 3, line 58, chars 2870-2925, hits: 0)
- IC 6295 -> Item 357
- Refers to item: Line (location: source ID 3, line 40, chars 1700-1755, hits: 0)
- IC 16554 -> Item 1021
- Refers to item: Statement (location: source ID 3, line 474, chars 24794-24823, hits: 19)
- IC 10123 -> Item 531
- Refers to item: Line (location: source ID 3, line 127, chars 7299-7353, hits: 0)
- IC 6172 -> Item 1176
- Refers to item: Function "price" (location: source ID 2, line 31, chars 1164-1392, hits: 17)
- IC 20020 -> Item 868
- Refers to item: Statement (location: source ID 3, line 365, chars 19167-19195, hits: 0)
- IC 13878 -> Item 893
- Refers to item: Line (location: source ID 3, line 392, chars 20473-20514, hits: 13)
- IC 5792 -> Item 1184
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 2, line 60, chars 2219-2261, hits: 0)
- IC 4649 -> Item 1243
- Refers to item: Statement (location: source ID 2, line 100, chars 3963-4007, hits: 14)
- IC 13367 -> Item 162
- Refers to item: Statement (location: source ID 0, line 162, chars 5330-5370, hits: 11)
- IC 6175 -> Item 1177
- Refers to item: Line (location: source ID 2, line 36, chars 1312-1387, hits: 17)
- IC 10959 -> Item 569
- Refers to item: Line (location: source ID 3, line 146, chars 8522-8577, hits: 0)
- IC 18253 -> Item 721
- Refers to item: Branch (branch: 8, path: 0) (location: source ID 3, line 283, chars 14616-14652, hits: 0)
- IC 18702 -> Item 770
- Refers to item: Statement (location: source ID 3, line 316, chars 16230-16275, hits: 0)
- IC 8363 -> Item 452
- Refers to item: Statement (location: source ID 3, line 87, chars 4739-4793, hits: 0)
- IC 14433 -> Item 933
- Refers to item: Line (location: source ID 3, line 412, chars 21488-21529, hits: 1)
- IC 17976 -> Item 1103
- Refers to item: Branch (branch: 24, path: 1) (location: source ID 3, line 511, chars 26952-27103, hits: 19)
- IC 8275 -> Item 447
- Refers to item: Line (location: source ID 3, line 85, chars 4611-4665, hits: 0)
- IC 19849 -> Item 854
- Refers to item: Statement (location: source ID 3, line 358, chars 18729-18774, hits: 0)
- IC 2671 -> Item 114
- Refers to item: Line (location: source ID 0, line 132, chars 4193-4246, hits: 6)
- IC 9859 -> Item 519
- Refers to item: Line (location: source ID 3, line 121, chars 6915-6969, hits: 0)
- IC 6083 -> Item 1208
- Refers to item: Line (location: source ID 2, line 68, chars 2597-2682, hits: 0)
- IC 18400 -> Item 750
- Refers to item: Statement (location: source ID 3, line 306, chars 15635-15680, hits: 0)
- IC 5020 -> Item 1254
- Refers to item: Function "valueToReceiveAfterTokenAmountSale" (location: source ID 2, line 120, chars 4832-5723, hits: 5)
- IC 21530 -> Item 686
- Refers to item: Branch (branch: 6, path: 0) (location: source ID 3, line 253, chars 13596-13752, hits: 0)
- IC 15035 -> Item 963
- Refers to item: Line (location: source ID 3, line 429, chars 22363-22384, hits: 19)
- IC 7131 -> Item 395
- Refers to item: Line (location: source ID 3, line 59, chars 2935-2990, hits: 0)
- IC 8803 -> Item 472
- Refers to item: Statement (location: source ID 3, line 97, chars 5379-5433, hits: 0)
- IC 18312 -> Item 732
- Refers to item: Line (location: source ID 3, line 288, chars 14775-14796, hits: 0)
- IC 7131 -> Item 396
- Refers to item: Statement (location: source ID 3, line 59, chars 2935-2990, hits: 0)
- IC 11394 -> Item 589
- Refers to item: Line (location: source ID 3, line 156, chars 9172-9227, hits: 0)
- IC 2938 -> Item 128
- Refers to item: Statement (location: source ID 0, line 137, chars 4392-4446, hits: 3)
- IC 19221 -> Item 805
- Refers to item: Line (location: source ID 3, line 334, chars 17301-17346, hits: 0)
- IC 18168 -> Item 714
- Refers to item: Statement (location: source ID 3, line 281, chars 14550-14561, hits: 0)
- IC 9551 -> Item 505
- Refers to item: Line (location: source ID 3, line 114, chars 6467-6521, hits: 0)
- IC 10299 -> Item 539
- Refers to item: Line (location: source ID 3, line 131, chars 7555-7609, hits: 0)
- IC 20112 -> Item 877
- Refers to item: Statement (location: source ID 3, line 370, chars 19413-19479, hits: 0)
- IC 4694 -> Item 1248
- Refers to item: Line (location: source ID 2, line 102, chars 4112-4165, hits: 14)
- IC 12957 -> Item 615
- Refers to item: Line (location: source ID 3, line 200, chars 11770-11795, hits: 19)
- IC 11351 -> Item 588
- Refers to item: Statement (location: source ID 3, line 155, chars 9107-9162, hits: 0)
- IC 7175 -> Item 397
- Refers to item: Line (location: source ID 3, line 60, chars 3000-3055, hits: 0)
- IC 12968 -> Item 619
- Refers to item: Line (location: source ID 3, line 202, chars 11806-11821, hits: 19)
- IC 21650 -> Item 60
- Refers to item: Line (location: source ID 9, line 16, chars 557-575, hits: 3)
- IC 18522 -> Item 758
- Refers to item: Statement (location: source ID 3, line 310, chars 15873-15918, hits: 0)
- IC 20066 -> Item 871
- Refers to item: Line (location: source ID 3, line 367, chars 19286-19314, hits: 0)
- IC 4337 -> Item 1217
- Refers to item: Function "quantityToBuyWithDepositAmount" (location: source ID 2, line 87, chars 3448-4197, hits: 14)
- IC 18702 -> Item 769
- Refers to item: Line (location: source ID 3, line 316, chars 16230-16275, hits: 0)
- IC 15781 -> Item 650
- Refers to item: Statement (location: source ID 3, line 227, chars 12769-12781, hits: 0)
- IC 2244 -> Item 108
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 0, line 125, chars 3916-3996, hits: 8)
- IC 11566 -> Item 597
- Refers to item: Line (location: source ID 3, line 160, chars 9432-9487, hits: 0)
- IC 14410 -> Item 930
- Refers to item: Statement (location: source ID 3, line 411, chars 21433-21472, hits: 19)
- IC 4573 -> Item 1230
- Refers to item: Line (location: source ID 2, line 97, chars 3849-3861, hits: 14)
- IC 21562 -> Item 695
- Refers to item: Statement (location: source ID 3, line 261, chars 13813-13826, hits: 0)
- IC 20181 -> Item 155
- Refers to item: Statement (location: source ID 0, line 157, chars 5090-5122, hits: 11)
- IC 5999 -> Item 1202
- Refers to item: Statement (location: source ID 2, line 65, chars 2493-2548, hits: 0)
- IC 19780 -> Item 847
- Refers to item: Line (location: source ID 3, line 355, chars 18572-18600, hits: 0)
- IC 13852 -> Item 886
- Refers to item: Statement (location: source ID 3, line 388, chars 20375-20384, hits: 19)
- IC 13639 -> Item 202
- Refers to item: Statement (location: source ID 0, line 184, chars 6153-6199, hits: 3)
- IC 17749 -> Item 1093
- Refers to item: Statement (location: source ID 3, line 508, chars 26646-26733, hits: 3)
- IC 9771 -> Item 515
- Refers to item: Line (location: source ID 3, line 119, chars 6787-6841, hits: 0)
- IC 2025 -> Item 106
- Refers to item: Statement (location: source ID 0, line 125, chars 3920-3944, hits: 11)
- IC 11265 -> Item 584
- Refers to item: Statement (location: source ID 3, line 153, chars 8977-9032, hits: 0)
- IC 17169 -> Item 1054
- Refers to item: Line (location: source ID 3, line 491, chars 25627-25648, hits: 19)
- IC 2861 -> Item 117
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 0, line 132, chars 4189-4270, hits: 5)
- IC 16111 -> Item 994
- Refers to item: Line (location: source ID 3, line 460, chars 24176-24185, hits: 19)
- IC 14816 -> Item 957
- Refers to item: Line (location: source ID 3, line 426, chars 22099-22191, hits: 19)
- IC 5981 -> Item 1198
- Refers to item: Line (location: source ID 2, line 65, chars 2463-2491, hits: 0)
- IC 21761 -> Item 51
- Refers to item: Statement (location: source ID 10, line 34, chars 1087-1162, hits: 9)
- IC 18995 -> Item 789
- Refers to item: Line (location: source ID 3, line 326, chars 16825-16870, hits: 0)
- IC 19829 -> Item 852
- Refers to item: Statement (location: source ID 3, line 357, chars 18691-18719, hits: 0)
- IC 2007 -> Item 101
- Refers to item: Line (location: source ID 0, line 121, chars 3837-3867, hits: 11)
- IC 16162 -> Item 998
- Refers to item: Line (location: source ID 3, line 463, chars 24283-24304, hits: 19)
- IC 9595 -> Item 508
- Refers to item: Statement (location: source ID 3, line 115, chars 6531-6585, hits: 0)
- IC 16530 -> Item 1019
- Refers to item: Statement (location: source ID 3, line 473, chars 24763-24784, hits: 19)
- IC 5378 -> Item 1287
- Refers to item: Statement (location: source ID 2, line 133, chars 5413-5441, hits: 0)
- IC 2928 -> Item 126
- Refers to item: Statement (location: source ID 0, line 135, chars 4359-4381, hits: 3)
- IC 9947 -> Item 524
- Refers to item: Statement (location: source ID 3, line 123, chars 7043-7097, hits: 0)
- IC 5339 -> Item 1274
- Refers to item: Branch (branch: 14, path: 1) (location: source ID 2, line 131, chars 5288-5314, hits: 5)
- IC 18260 -> Item 722
- Refers to item: Branch (branch: 8, path: 1) (location: source ID 3, line 283, chars 14616-14652, hits: 0)
- IC 21747 -> Item 75
- Refers to item: Statement (location: source ID 9, line 22, chars 720-725, hits: 0)
- IC 3836 -> Item 613
- Refers to item: Statement (location: source ID 3, line 173, chars 10029-10046, hits: 0)
- IC 9507 -> Item 503
- Refers to item: Line (location: source ID 3, line 113, chars 6403-6457, hits: 0)
- IC 18153 -> Item 708
- Refers to item: Function "findPositionInMaxExpArray" (location: source ID 3, line 277, chars 14378-14895, hits: 0)
- IC 13637 -> Item 201
- Refers to item: Statement (location: source ID 0, line 184, chars 6125-6199, hits: 3)
- IC 7967 -> Item 433
- Refers to item: Line (location: source ID 3, line 78, chars 4163-4217, hits: 0)
- IC 13154 -> Item 643
- Refers to item: Statement (location: source ID 3, line 214, chars 12243-12285, hits: 0)
- IC 5018 -> Item 175
- Refers to item: Branch (branch: 5, path: 1) (location: source ID 0, line 168, chars 5527-5588, hits: 11)
- IC 13664 -> Item 207
- Refers to item: Statement (location: source ID 0, line 187, chars 6294-6340, hits: 3)
- IC 18196 -> Item 718
- Refers to item: Statement (location: source ID 3, line 282, chars 14589-14602, hits: 0)
- IC 16818 -> Item 1034
- Refers to item: Line (location: source ID 3, line 481, chars 25147-25168, hits: 19)
- IC 4573 -> Item 1231
- Refers to item: Statement (location: source ID 2, line 97, chars 3849-3861, hits: 14)
- IC 10255 -> Item 537
- Refers to item: Line (location: source ID 3, line 130, chars 7491-7545, hits: 0)
- IC 11437 -> Item 591
- Refers to item: Line (location: source ID 3, line 157, chars 9237-9292, hits: 0)
- IC 19032 -> Item 791
- Refers to item: Line (location: source ID 3, line 327, chars 16906-16934, hits: 0)
- IC 5475 -> Item 1297
- Refers to item: Line (location: source ID 2, line 138, chars 5637-5681, hits: 5)
- IC 3292 -> Item 140
- Refers to item: Line (location: source ID 0, line 145, chars 4675-4714, hits: 3)
- IC 13065 -> Item 633
- Refers to item: Statement (location: source ID 3, line 210, chars 12029-12080, hits: 19)
- IC 13845 -> Item 882
- Refers to item: Statement (location: source ID 3, line 385, chars 20330-20345, hits: 19)
- IC 14792 -> Item 956
- Refers to item: Statement (location: source ID 3, line 425, chars 22068-22089, hits: 19)
- IC 7879 -> Item 430
- Refers to item: Statement (location: source ID 3, line 76, chars 4035-4089, hits: 0)
- IC 10959 -> Item 570
- Refers to item: Statement (location: source ID 3, line 146, chars 8522-8577, hits: 0)
- IC 2928 -> Item 125
- Refers to item: Line (location: source ID 0, line 135, chars 4359-4381, hits: 3)
- IC 8583 -> Item 462
- Refers to item: Statement (location: source ID 3, line 92, chars 5059-5113, hits: 0)
- IC 11781 -> Item 607
- Refers to item: Line (location: source ID 3, line 165, chars 9757-9812, hits: 0)
- IC 9771 -> Item 516
- Refers to item: Statement (location: source ID 3, line 119, chars 6787-6841, hits: 0)
- IC 5023 -> Item 1255
- Refers to item: Line (location: source ID 2, line 126, chars 5024-5066, hits: 5)
- IC 16334 -> Item 1009
- Refers to item: Statement (location: source ID 3, line 468, chars 24506-24535, hits: 19)
- IC 14655 -> Item 949
- Refers to item: Line (location: source ID 3, line 420, chars 21894-21935, hits: 13)
- IC 3688 -> Item 82
- Refers to item: Line (location: source ID 0, line 87, chars 2744-2772, hits: 28)
- IC 6823 -> Item 382
- Refers to item: Statement (location: source ID 3, line 52, chars 2480-2535, hits: 0)
- IC 9067 -> Item 483
- Refers to item: Line (location: source ID 3, line 103, chars 5763-5817, hits: 0)
- IC 19680 -> Item 839
- Refers to item: Line (location: source ID 3, line 351, chars 18334-18362, hits: 0)
- IC 6691 -> Item 376
- Refers to item: Statement (location: source ID 3, line 49, chars 2285-2340, hits: 0)
- IC 4405 -> Item 1221
- Refers to item: Branch (branch: 5, path: 1) (location: source ID 2, line 93, chars 3636-3678, hits: 14)
- IC 21505 -> Item 683
- Refers to item: Statement (location: source ID 3, line 251, chars 13572-13585, hits: 0)
- IC 16020 -> Item 667
- Refers to item: Statement (location: source ID 3, line 235, chars 13086-13089, hits: 0)
- IC 11738 -> Item 606
- Refers to item: Statement (location: source ID 3, line 164, chars 9692-9747, hits: 0)
- IC 13444 -> Item 186
- Refers to item: Function "_rewardOwnerWith1PercentOfReserve" (location: source ID 0, line 176, chars 5736-5985, hits: 3)
- IC 14544 -> Item 941
- Refers to item: Line (location: source ID 3, line 416, chars 21691-21732, hits: 10)
- IC 22066 -> Item 247
- Refers to item: Line (location: source ID 0, line 214, chars 7433-7471, hits: 3)
- IC 4649 -> Item 1242
- Refers to item: Line (location: source ID 2, line 100, chars 3963-4007, hits: 14)
- IC 8495 -> Item 458
- Refers to item: Statement (location: source ID 3, line 90, chars 4931-4985, hits: 0)
- IC 14352 -> Item 927
- Refers to item: Line (location: source ID 3, line 409, chars 21340-21394, hits: 5)
- IC 4581 -> Item 1232
- Refers to item: Branch (branch: 8, path: 0) (location: source ID 2, line 97, chars 3845-3871, hits: 0)
- IC 12894 -> Item 321
- Refers to item: Statement (location: source ID 4, line 122, chars 3549-3554, hits: 19)
- IC 3397 -> Item 87
- Refers to item: Statement (location: source ID 0, line 91, chars 2893-3042, hits: 0)
- IC 20086 -> Item 874
- Refers to item: Statement (location: source ID 3, line 368, chars 19324-19369, hits: 0)
- IC 11695 -> Item 603
- Refers to item: Line (location: source ID 3, line 163, chars 9627-9682, hits: 0)