-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverage.txt
More file actions
817 lines (770 loc) · 36.5 KB
/
coverage.txt
File metadata and controls
817 lines (770 loc) · 36.5 KB
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
Compiling 33 files with Solc 0.8.27
Solc 0.8.27 finished in 1.34s
Compiler run successful with warnings:
Warning (3420): Source file does not specify required compiler version! Consider adding "pragma solidity ^0.8.27;"
--> test/fuzz/Handler.t.sol
Analysing contracts...
Running tests...
Ran 12 tests for test/unit/OrderContractTest.t.sol:OrderContractTest
[PASS] testConfirmOrderEmitsEvent() (gas: 258972)
[PASS] testConfirmOrderRevertsIfOrderNotProposed() (gas: 143393)
[PASS] testConfirmOrderUpdatesAmountPaidAndTimeStamp() (gas: 259264)
[PASS] testFinalizeOrderCanOnlyBeCalledWhenStateIsConfirmed() (gas: 19110)
[PASS] testFinalizeOrderPaysController() (gas: 268650)
[PASS] testFinalizeOrderUpdatesState() (gas: 265476)
[PASS] testOnlyControllerCanProposeAnswer() (gas: 138500)
[PASS] testOnlyUserWithOfferCanConfirmOrder() (gas: 172792)
[PASS] testProposeOrderAnswerRevertsIfNotInProgress() (gas: 14675)
[PASS] testProposeOrderAnswerUpdatesState() (gas: 168955)
[PASS] testProposeOrderEmitsEvent() (gas: 138926)
[PASS] testProposeOrderUpdatesVariables() (gas: 137558)
Suite result: ok. 12 passed; 0 failed; 0 skipped; finished in 1.19ms (2.23ms CPU time)
Ran 1 test for test/fuzz/InvariantsTest.t.sol:InvariantsTest
[PASS] invariantAlwaysTrue() (runs: 128, calls: 2560, reverts: 2029)
╭---------------+--------------------+-------+---------+----------╮
| Contract | Selector | Calls | Reverts | Discards |
+=================================================================+
| OrderContract | cancelOrder | 517 | 517 | 0 |
|---------------+--------------------+-------+---------+----------|
| OrderContract | confirmOrder | 525 | 525 | 0 |
|---------------+--------------------+-------+---------+----------|
| OrderContract | finalizeOrder | 512 | 512 | 0 |
|---------------+--------------------+-------+---------+----------|
| OrderContract | proposeOrder | 531 | 0 | 0 |
|---------------+--------------------+-------+---------+----------|
| OrderContract | proposeOrderAnswer | 475 | 475 | 0 |
╰---------------+--------------------+-------+---------+----------╯
Suite result: ok. 1 passed; 0 failed; 0 skipped; finished in 35.39ms (34.24ms CPU time)
Ran 2 test suites in 211.11ms (36.58ms CPU time): 13 tests passed, 0 failed, 0 skipped (13 total tests)
Uncovered for script/DeployOrderContract.s.sol:
Uncovered for script/HelperConfig.s.sol:
- Line (location: source ID 28, lines 18..25, bytes 392..696, hits: 0)
- Function "getSepoliaEthConfig" (location: source ID 28, lines 18..25, bytes 392..696, hits: 0)
- Line (location: source ID 28, lines 19..24, bytes 476..689, hits: 0)
- Statement (location: source ID 28, lines 19..24, bytes 476..689, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 28, lines 27..30, bytes 832..883, hits: 0)
- Line (location: source ID 28, lines 28..29, bytes 846..872, hits: 0)
- Statement (location: source ID 28, lines 28..29, bytes 846..872, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 28, lines 43..46, bytes 1230..1298, hits: 0)
- Line (location: source ID 28, lines 44..45, bytes 1244..1287, hits: 0)
- Statement (location: source ID 28, lines 44..45, bytes 1244..1287, hits: 0)
Uncovered for src/OrderContract.sol:
- Branch (branch: 3, path: 0) (location: source ID 29, lines 136..139, bytes 5086..5154, hits: 0)
- Line (location: source ID 29, lines 137..138, bytes 5100..5143, hits: 0)
- Statement (location: source ID 29, lines 137..138, bytes 5100..5143, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 29, lines 165..168, bytes 6460..6528, hits: 0)
- Line (location: source ID 29, lines 166..167, bytes 6474..6517, hits: 0)
- Statement (location: source ID 29, lines 166..167, bytes 6474..6517, hits: 0)
- Line (location: source ID 29, lines 177..178, bytes 6805..6852, hits: 0)
- Statement (location: source ID 29, lines 177..178, bytes 6805..6852, hits: 0)
- Branch (branch: 8, path: 0) (location: source ID 29, lines 177..180, bytes 6854..6938, hits: 0)
- Line (location: source ID 29, lines 178..179, bytes 6868..6927, hits: 0)
- Statement (location: source ID 29, lines 178..179, bytes 6868..6927, hits: 0)
- Line (location: source ID 29, lines 181..182, bytes 7008..7054, hits: 0)
- Statement (location: source ID 29, lines 181..182, bytes 7008..7054, hits: 0)
- Line (location: source ID 29, lines 182..183, bytes 7064..7134, hits: 0)
- Statement (location: source ID 29, lines 182..183, bytes 7064..7134, hits: 0)
- Statement (location: source ID 29, lines 182..183, bytes 7079..7134, hits: 0)
- Line (location: source ID 29, lines 183..184, bytes 7148..7156, hits: 0)
- Statement (location: source ID 29, lines 183..184, bytes 7148..7156, hits: 0)
- Branch (branch: 9, path: 0) (location: source ID 29, lines 183..186, bytes 7158..7226, hits: 0)
- Line (location: source ID 29, lines 184..185, bytes 7172..7215, hits: 0)
- Statement (location: source ID 29, lines 184..185, bytes 7172..7215, hits: 0)
- Line (location: source ID 29, lines 199..202, bytes 7519..7620, hits: 0)
- Function "getAgentController" (location: source ID 29, lines 199..202, bytes 7519..7620, hits: 0)
- Line (location: source ID 29, lines 200..201, bytes 7591..7613, hits: 0)
- Statement (location: source ID 29, lines 200..201, bytes 7591..7613, hits: 0)
- Line (location: source ID 29, lines 213..216, bytes 7856..7973, hits: 0)
- Function "getUserByOfferId" (location: source ID 29, lines 213..216, bytes 7856..7973, hits: 0)
Anchors for Contract "HelperConfig" (solc 0.8.27, source ID 28):
- IC 424 -> Item 17
- Runtime code
- Refers to item: Line (location: source ID 28, lines 18..25, bytes 392..696, hits: 0)
- IC 424 -> Item 18
- Runtime code
- Refers to item: Function "getSepoliaEthConfig" (location: source ID 28, lines 18..25, bytes 392..696, hits: 0)
- IC 433 -> Item 19
- Runtime code
- Refers to item: Line (location: source ID 28, lines 19..24, bytes 476..689, hits: 0)
- IC 433 -> Item 20
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 19..24, bytes 476..689, hits: 0)
- IC 666 -> Item 21
- Runtime code
- Refers to item: Line (location: source ID 28, lines 26..41, bytes 702..1169, hits: 13)
- IC 666 -> Item 22
- Runtime code
- Refers to item: Function "getOrCreateAnvilEthConfig" (location: source ID 28, lines 26..41, bytes 702..1169, hits: 13)
- IC 675 -> Item 23
- Runtime code
- Refers to item: Line (location: source ID 28, lines 27..28, bytes 791..830, hits: 13)
- IC 675 -> Item 24
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 27..28, bytes 791..830, hits: 13)
- IC 761 -> Item 25
- Runtime code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 28, lines 27..30, bytes 832..883, hits: 0)
- IC 761 -> Item 26
- Runtime code
- Refers to item: Line (location: source ID 28, lines 28..29, bytes 846..872, hits: 0)
- IC 761 -> Item 27
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 28..29, bytes 846..872, hits: 0)
- IC 981 -> Item 28
- Runtime code
- Refers to item: Line (location: source ID 28, lines 30..31, bytes 892..911, hits: 13)
- IC 981 -> Item 29
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 30..31, bytes 892..911, hits: 13)
- IC 1071 -> Item 30
- Runtime code
- Refers to item: Line (location: source ID 28, lines 31..32, bytes 921..954, hits: 13)
- IC 1071 -> Item 31
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 31..32, bytes 921..954, hits: 13)
- IC 1072 -> Item 32
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 31..32, bytes 939..954, hits: 13)
- IC 1133 -> Item 33
- Runtime code
- Refers to item: Line (location: source ID 28, lines 33..34, bytes 973..991, hits: 13)
- IC 1133 -> Item 34
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 33..34, bytes 973..991, hits: 13)
- IC 1223 -> Item 35
- Runtime code
- Refers to item: Line (location: source ID 28, lines 34..39, bytes 1001..1161, hits: 13)
- IC 1223 -> Item 36
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 34..39, bytes 1001..1161, hits: 13)
- IC 58 -> Item 37
- Runtime code
- Refers to item: Line (location: source ID 28, lines 42..49, bytes 1175..1384, hits: 13)
- IC 58 -> Item 38
- Runtime code
- Refers to item: Function "constructor" (location: source ID 28, lines 42..49, bytes 1175..1384, hits: 13)
- IC 70 -> Item 39
- Runtime code
- Refers to item: Line (location: source ID 28, lines 43..44, bytes 1203..1228, hits: 13)
- IC 70 -> Item 40
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 43..44, bytes 1203..1228, hits: 13)
- IC 80 -> Item 41
- Runtime code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 28, lines 43..46, bytes 1230..1298, hits: 0)
- IC 251 -> Item 42
- Runtime code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 28, lines 43..47, bytes 1199..1347, hits: 13)
- IC 80 -> Item 43
- Runtime code
- Refers to item: Line (location: source ID 28, lines 44..45, bytes 1244..1287, hits: 0)
- IC 80 -> Item 44
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 44..45, bytes 1244..1287, hits: 0)
- IC 252 -> Item 45
- Runtime code
- Refers to item: Line (location: source ID 28, lines 46..47, bytes 1318..1367, hits: 13)
- IC 252 -> Item 46
- Runtime code
- Refers to item: Statement (location: source ID 28, lines 46..47, bytes 1318..1367, hits: 13)
- IC 140 -> Item 17
- Creation code
- Refers to item: Line (location: source ID 28, lines 18..25, bytes 392..696, hits: 0)
- IC 140 -> Item 18
- Creation code
- Refers to item: Function "getSepoliaEthConfig" (location: source ID 28, lines 18..25, bytes 392..696, hits: 0)
- IC 1066 -> Item 19
- Creation code
- Refers to item: Line (location: source ID 28, lines 19..24, bytes 476..689, hits: 0)
- IC 1066 -> Item 20
- Creation code
- Refers to item: Statement (location: source ID 28, lines 19..24, bytes 476..689, hits: 0)
- IC 78 -> Item 21
- Creation code
- Refers to item: Line (location: source ID 28, lines 26..41, bytes 702..1169, hits: 13)
- IC 78 -> Item 22
- Creation code
- Refers to item: Function "getOrCreateAnvilEthConfig" (location: source ID 28, lines 26..41, bytes 702..1169, hits: 13)
- IC 209 -> Item 23
- Creation code
- Refers to item: Line (location: source ID 28, lines 27..28, bytes 791..830, hits: 13)
- IC 209 -> Item 24
- Creation code
- Refers to item: Statement (location: source ID 28, lines 27..28, bytes 791..830, hits: 13)
- IC 295 -> Item 25
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 28, lines 27..30, bytes 832..883, hits: 0)
- IC 295 -> Item 26
- Creation code
- Refers to item: Line (location: source ID 28, lines 28..29, bytes 846..872, hits: 0)
- IC 295 -> Item 27
- Creation code
- Refers to item: Statement (location: source ID 28, lines 28..29, bytes 846..872, hits: 0)
- IC 515 -> Item 28
- Creation code
- Refers to item: Line (location: source ID 28, lines 30..31, bytes 892..911, hits: 13)
- IC 515 -> Item 29
- Creation code
- Refers to item: Statement (location: source ID 28, lines 30..31, bytes 892..911, hits: 13)
- IC 605 -> Item 30
- Creation code
- Refers to item: Line (location: source ID 28, lines 31..32, bytes 921..954, hits: 13)
- IC 605 -> Item 31
- Creation code
- Refers to item: Statement (location: source ID 28, lines 31..32, bytes 921..954, hits: 13)
- IC 606 -> Item 32
- Creation code
- Refers to item: Statement (location: source ID 28, lines 31..32, bytes 939..954, hits: 13)
- IC 667 -> Item 33
- Creation code
- Refers to item: Line (location: source ID 28, lines 33..34, bytes 973..991, hits: 13)
- IC 667 -> Item 34
- Creation code
- Refers to item: Statement (location: source ID 28, lines 33..34, bytes 973..991, hits: 13)
- IC 757 -> Item 35
- Creation code
- Refers to item: Line (location: source ID 28, lines 34..39, bytes 1001..1161, hits: 13)
- IC 757 -> Item 36
- Creation code
- Refers to item: Statement (location: source ID 28, lines 34..39, bytes 1001..1161, hits: 13)
Anchors for Contract "stdError" (solc 0.8.27, source ID 6):
Anchors for Contract "VmSafe" (solc 0.8.27, source ID 15):
Anchors for Contract "IMulticall3" (solc 0.8.27, source ID 18):
Anchors for Contract "stdJson" (solc 0.8.27, source ID 8):
Anchors for Contract "StdInvariant" (solc 0.8.27, source ID 7):
Anchors for Contract "StdStyle" (solc 0.8.27, source ID 11):
Anchors for Contract "IERC20" (solc 0.8.27, source ID 23):
Anchors for Contract "stdToml" (solc 0.8.27, source ID 12):
Anchors for Contract "ERC20Mock" (solc 0.8.27, source ID 21):
Anchors for Contract "stdMath" (solc 0.8.27, source ID 9):
Anchors for Contract "StdAssertions" (solc 0.8.27, source ID 2):
Anchors for Contract "Context" (solc 0.8.27, source ID 25):
Anchors for Contract "TestBase" (solc 0.8.27, source ID 0):
Anchors for Contract "StdChains" (solc 0.8.27, source ID 3):
Anchors for Contract "StdCheats" (solc 0.8.27, source ID 4):
Anchors for Contract "IERC20Errors" (solc 0.8.27, source ID 20):
Anchors for Contract "ReentrancyGuard" (solc 0.8.27, source ID 26):
Anchors for Contract "OrderContractTest" (solc 0.8.27, source ID 32):
Anchors for Contract "StdConstants" (solc 0.8.27, source ID 5):
Anchors for Contract "IERC1155Errors" (solc 0.8.27, source ID 20):
Anchors for Contract "DeployOrderContract" (solc 0.8.27, source ID 27):
- IC 56 -> Item 0
- Creation code
- Refers to item: Line (location: source ID 27, lines 13..23, bytes 299..787, hits: 13)
- IC 56 -> Item 1
- Creation code
- Refers to item: Function "run" (location: source ID 27, lines 13..23, bytes 299..787, hits: 13)
- IC 120 -> Item 2
- Creation code
- Refers to item: Line (location: source ID 27, lines 14..15, bytes 369..415, hits: 13)
- IC 120 -> Item 3
- Creation code
- Refers to item: Statement (location: source ID 27, lines 14..15, bytes 369..415, hits: 13)
- IC 121 -> Item 4
- Creation code
- Refers to item: Statement (location: source ID 27, lines 14..15, bytes 397..415, hits: 13)
- IC 161 -> Item 5
- Creation code
- Refers to item: Line (location: source ID 27, lines 15..16, bytes 425..523, hits: 13)
- IC 161 -> Item 6
- Creation code
- Refers to item: Statement (location: source ID 27, lines 15..16, bytes 425..523, hits: 13)
- IC 164 -> Item 7
- Creation code
- Refers to item: Statement (location: source ID 27, lines 15..16, bytes 489..523, hits: 13)
- IC 300 -> Item 8
- Creation code
- Refers to item: Line (location: source ID 27, lines 16..17, bytes 533..563, hits: 13)
- IC 300 -> Item 9
- Creation code
- Refers to item: Statement (location: source ID 27, lines 16..17, bytes 533..563, hits: 13)
- IC 401 -> Item 10
- Creation code
- Refers to item: Line (location: source ID 27, lines 17..20, bytes 573..706, hits: 13)
- IC 401 -> Item 11
- Creation code
- Refers to item: Statement (location: source ID 27, lines 17..20, bytes 573..706, hits: 13)
- IC 402 -> Item 12
- Creation code
- Refers to item: Statement (location: source ID 27, lines 17..20, bytes 603..706, hits: 13)
- IC 476 -> Item 13
- Creation code
- Refers to item: Line (location: source ID 27, lines 20..21, bytes 716..734, hits: 13)
- IC 476 -> Item 14
- Creation code
- Refers to item: Statement (location: source ID 27, lines 20..21, bytes 716..734, hits: 13)
- IC 566 -> Item 15
- Creation code
- Refers to item: Line (location: source ID 27, lines 21..22, bytes 744..780, hits: 13)
- IC 566 -> Item 16
- Creation code
- Refers to item: Statement (location: source ID 27, lines 21..22, bytes 744..780, hits: 13)
Anchors for Contract "console" (solc 0.8.27, source ID 16):
Anchors for Contract "ScriptBase" (solc 0.8.27, source ID 0):
Anchors for Contract "stdStorageSafe" (solc 0.8.27, source ID 10):
Anchors for Contract "Test" (solc 0.8.27, source ID 14):
Anchors for Contract "StdUtils" (solc 0.8.27, source ID 13):
Anchors for Contract "StdCheatsSafe" (solc 0.8.27, source ID 4):
Anchors for Contract "Script" (solc 0.8.27, source ID 1):
Anchors for Contract "Vm" (solc 0.8.27, source ID 15):
Anchors for Contract "ERC20" (solc 0.8.27, source ID 22):
Anchors for Contract "InvariantsTest" (solc 0.8.27, source ID 31):
Anchors for Contract "CommonBase" (solc 0.8.27, source ID 0):
Anchors for Contract "safeconsole" (solc 0.8.27, source ID 19):
Anchors for Contract "stdStorage" (solc 0.8.27, source ID 10):
Anchors for Contract "IERC721Errors" (solc 0.8.27, source ID 20):
Anchors for Contract "IERC20Metadata" (solc 0.8.27, source ID 24):
Anchors for Contract "OrderContract" (solc 0.8.27, source ID 29):
- IC 45 -> Item 61
- Runtime code
- Refers to item: Line (location: source ID 29, lines 97..102, bytes 3383..3578, hits: 13)
- IC 45 -> Item 62
- Runtime code
- Refers to item: Function "constructor" (location: source ID 29, lines 97..102, bytes 3383..3578, hits: 13)
- IC 97 -> Item 63
- Runtime code
- Refers to item: Line (location: source ID 29, lines 99..100, bytes 3501..3541, hits: 13)
- IC 97 -> Item 64
- Runtime code
- Refers to item: Statement (location: source ID 29, lines 99..100, bytes 3501..3541, hits: 13)
- IC 149 -> Item 65
- Runtime code
- Refers to item: Line (location: source ID 29, lines 100..101, bytes 3551..3571, hits: 13)
- IC 149 -> Item 66
- Runtime code
- Refers to item: Statement (location: source ID 29, lines 100..101, bytes 3551..3571, hits: 13)
- IC 2798 -> Item 47
- Creation code
- Refers to item: Line (location: source ID 29, lines 82..89, bytes 2927..3135, hits: 483)
- IC 2798 -> Item 48
- Creation code
- Refers to item: Function "onlyAgentController" (location: source ID 29, lines 82..89, bytes 2927..3135, hits: 483)
- IC 2798 -> Item 49
- Creation code
- Refers to item: Line (location: source ID 29, lines 84..85, bytes 3020..3049, hits: 483)
- IC 2798 -> Item 50
- Creation code
- Refers to item: Statement (location: source ID 29, lines 84..85, bytes 3020..3049, hits: 483)
- IC 2881 -> Item 51
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 29, lines 84..87, bytes 3051..3118, hits: 476)
- IC 2881 -> Item 52
- Creation code
- Refers to item: Line (location: source ID 29, lines 85..86, bytes 3065..3107, hits: 476)
- IC 2881 -> Item 53
- Creation code
- Refers to item: Statement (location: source ID 29, lines 85..86, bytes 3065..3107, hits: 476)
- IC 933 -> Item 54
- Creation code
- Refers to item: Line (location: source ID 29, lines 89..97, bytes 3140..3378, hits: 531)
- IC 933 -> Item 55
- Creation code
- Refers to item: Function "onlyUserWithOffer" (location: source ID 29, lines 89..97, bytes 3140..3378, hits: 531)
- IC 933 -> Item 56
- Creation code
- Refers to item: Line (location: source ID 29, lines 91..92, bytes 3244..3279, hits: 531)
- IC 933 -> Item 57
- Creation code
- Refers to item: Statement (location: source ID 29, lines 91..92, bytes 3244..3279, hits: 531)
- IC 1054 -> Item 58
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 29, lines 91..94, bytes 3281..3352, hits: 524)
- IC 1054 -> Item 59
- Creation code
- Refers to item: Line (location: source ID 29, lines 92..93, bytes 3295..3341, hits: 524)
- IC 1054 -> Item 60
- Creation code
- Refers to item: Statement (location: source ID 29, lines 92..93, bytes 3295..3341, hits: 524)
- IC 674 -> Item 67
- Creation code
- Refers to item: Line (location: source ID 29, lines 102..118, bytes 3583..4201, hits: 546)
- IC 674 -> Item 68
- Creation code
- Refers to item: Function "proposeOrder" (location: source ID 29, lines 102..118, bytes 3583..4201, hits: 546)
- IC 4102 -> Item 69
- Creation code
- Refers to item: Line (location: source ID 29, lines 105..106, bytes 3719..3728, hits: 546)
- IC 4102 -> Item 70
- Creation code
- Refers to item: Statement (location: source ID 29, lines 105..106, bytes 3719..3728, hits: 546)
- IC 4178 -> Item 71
- Creation code
- Refers to item: Line (location: source ID 29, lines 108..109, bytes 3801..3848, hits: 546)
- IC 4178 -> Item 72
- Creation code
- Refers to item: Statement (location: source ID 29, lines 108..109, bytes 3801..3848, hits: 546)
- IC 4278 -> Item 73
- Creation code
- Refers to item: Line (location: source ID 29, lines 109..110, bytes 3858..3892, hits: 546)
- IC 4278 -> Item 74
- Creation code
- Refers to item: Statement (location: source ID 29, lines 109..110, bytes 3858..3892, hits: 546)
- IC 4400 -> Item 75
- Creation code
- Refers to item: Line (location: source ID 29, lines 110..111, bytes 3902..3941, hits: 546)
- IC 4400 -> Item 76
- Creation code
- Refers to item: Statement (location: source ID 29, lines 110..111, bytes 3902..3941, hits: 546)
- IC 4466 -> Item 77
- Creation code
- Refers to item: Line (location: source ID 29, lines 113..114, bytes 4074..4152, hits: 546)
- IC 4466 -> Item 78
- Creation code
- Refers to item: Statement (location: source ID 29, lines 113..114, bytes 4074..4152, hits: 546)
- IC 4718 -> Item 79
- Creation code
- Refers to item: Line (location: source ID 29, lines 115..116, bytes 4171..4185, hits: 546)
- IC 4718 -> Item 80
- Creation code
- Refers to item: Statement (location: source ID 29, lines 115..116, bytes 4171..4185, hits: 546)
- IC 290 -> Item 81
- Creation code
- Refers to item: Line (location: source ID 29, lines 121..142, bytes 4209..5232, hits: 531)
- IC 290 -> Item 82
- Creation code
- Refers to item: Function "confirmOrder" (location: source ID 29, lines 121..142, bytes 4209..5232, hits: 531)
- IC 1104 -> Item 83
- Creation code
- Refers to item: Line (location: source ID 29, lines 122..123, bytes 4311..4357, hits: 7)
- IC 1104 -> Item 84
- Creation code
- Refers to item: Statement (location: source ID 29, lines 122..123, bytes 4311..4357, hits: 7)
- IC 1199 -> Item 85
- Creation code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 29, lines 122..125, bytes 4359..4444, hits: 3)
- IC 1199 -> Item 86
- Creation code
- Refers to item: Line (location: source ID 29, lines 123..124, bytes 4373..4433, hits: 3)
- IC 1199 -> Item 87
- Creation code
- Refers to item: Statement (location: source ID 29, lines 123..124, bytes 4373..4433, hits: 3)
- IC 1249 -> Item 88
- Creation code
- Refers to item: Line (location: source ID 29, lines 126..127, bytes 4509..4564, hits: 4)
- IC 1249 -> Item 89
- Creation code
- Refers to item: Statement (location: source ID 29, lines 126..127, bytes 4509..4564, hits: 4)
- IC 1259 -> Item 90
- Creation code
- Refers to item: Statement (location: source ID 29, lines 126..127, bytes 4531..4564, hits: 4)
- IC 1312 -> Item 91
- Creation code
- Refers to item: Line (location: source ID 29, lines 129..130, bytes 4709..4743, hits: 4)
- IC 1312 -> Item 92
- Creation code
- Refers to item: Statement (location: source ID 29, lines 129..130, bytes 4709..4743, hits: 4)
- IC 1357 -> Item 93
- Creation code
- Refers to item: Line (location: source ID 29, lines 130..131, bytes 4753..4799, hits: 4)
- IC 1357 -> Item 94
- Creation code
- Refers to item: Statement (location: source ID 29, lines 130..131, bytes 4753..4799, hits: 4)
- IC 1437 -> Item 95
- Creation code
- Refers to item: Line (location: source ID 29, lines 133..134, bytes 4921..4964, hits: 4)
- IC 1437 -> Item 96
- Creation code
- Refers to item: Statement (location: source ID 29, lines 133..134, bytes 4921..4964, hits: 4)
- IC 1482 -> Item 97
- Creation code
- Refers to item: Line (location: source ID 29, lines 134..135, bytes 4974..5053, hits: 4)
- IC 1482 -> Item 98
- Creation code
- Refers to item: Statement (location: source ID 29, lines 134..135, bytes 4974..5053, hits: 4)
- IC 1483 -> Item 99
- Creation code
- Refers to item: Statement (location: source ID 29, lines 134..135, bytes 4988..5053, hits: 4)
- IC 1642 -> Item 100
- Creation code
- Refers to item: Line (location: source ID 29, lines 136..137, bytes 5076..5084, hits: 4)
- IC 1642 -> Item 101
- Creation code
- Refers to item: Statement (location: source ID 29, lines 136..137, bytes 5076..5084, hits: 4)
- IC 1647 -> Item 102
- Creation code
- Refers to item: Branch (branch: 3, path: 0) (location: source ID 29, lines 136..139, bytes 5086..5154, hits: 0)
- IC 1647 -> Item 103
- Creation code
- Refers to item: Line (location: source ID 29, lines 137..138, bytes 5100..5143, hits: 0)
- IC 1647 -> Item 104
- Creation code
- Refers to item: Statement (location: source ID 29, lines 137..138, bytes 5100..5143, hits: 0)
- IC 1697 -> Item 105
- Creation code
- Refers to item: Line (location: source ID 29, lines 139..140, bytes 5163..5216, hits: 4)
- IC 1697 -> Item 106
- Creation code
- Refers to item: Statement (location: source ID 29, lines 139..140, bytes 5163..5216, hits: 4)
- IC 520 -> Item 107
- Creation code
- Refers to item: Line (location: source ID 29, lines 145..155, bytes 5342..5880, hits: 483)
- IC 520 -> Item 108
- Creation code
- Refers to item: Function "proposeOrderAnswer" (location: source ID 29, lines 145..155, bytes 5342..5880, hits: 483)
- IC 2931 -> Item 109
- Creation code
- Refers to item: Line (location: source ID 29, lines 146..147, bytes 5472..5520, hits: 7)
- IC 2931 -> Item 110
- Creation code
- Refers to item: Statement (location: source ID 29, lines 146..147, bytes 5472..5520, hits: 7)
- IC 3027 -> Item 111
- Creation code
- Refers to item: Branch (branch: 4, path: 0) (location: source ID 29, lines 146..149, bytes 5522..5609, hits: 1)
- IC 3027 -> Item 112
- Creation code
- Refers to item: Line (location: source ID 29, lines 147..148, bytes 5536..5598, hits: 1)
- IC 3027 -> Item 113
- Creation code
- Refers to item: Statement (location: source ID 29, lines 147..148, bytes 5536..5598, hits: 1)
- IC 3077 -> Item 114
- Creation code
- Refers to item: Line (location: source ID 29, lines 151..152, bytes 5732..5771, hits: 6)
- IC 3077 -> Item 115
- Creation code
- Refers to item: Statement (location: source ID 29, lines 151..152, bytes 5732..5771, hits: 6)
- IC 3122 -> Item 116
- Creation code
- Refers to item: Line (location: source ID 29, lines 152..153, bytes 5781..5826, hits: 6)
- IC 3122 -> Item 117
- Creation code
- Refers to item: Statement (location: source ID 29, lines 152..153, bytes 5781..5826, hits: 6)
- IC 3201 -> Item 118
- Creation code
- Refers to item: Line (location: source ID 29, lines 153..154, bytes 5836..5873, hits: 6)
- IC 3201 -> Item 119
- Creation code
- Refers to item: Statement (location: source ID 29, lines 153..154, bytes 5836..5873, hits: 6)
- IC 626 -> Item 120
- Creation code
- Refers to item: Line (location: source ID 29, lines 156..172, bytes 5886..6557, hits: 515)
- IC 626 -> Item 121
- Creation code
- Refers to item: Function "finalizeOrder" (location: source ID 29, lines 156..172, bytes 5886..6557, hits: 515)
- IC 3481 -> Item 122
- Creation code
- Refers to item: Line (location: source ID 29, lines 157..158, bytes 5995..6042, hits: 3)
- IC 3481 -> Item 123
- Creation code
- Refers to item: Statement (location: source ID 29, lines 157..158, bytes 5995..6042, hits: 3)
- IC 3577 -> Item 124
- Creation code
- Refers to item: Branch (branch: 5, path: 0) (location: source ID 29, lines 157..160, bytes 6044..6129, hits: 1)
- IC 3577 -> Item 125
- Creation code
- Refers to item: Line (location: source ID 29, lines 158..159, bytes 6058..6118, hits: 1)
- IC 3577 -> Item 126
- Creation code
- Refers to item: Statement (location: source ID 29, lines 158..159, bytes 6058..6118, hits: 1)
- IC 3627 -> Item 127
- Creation code
- Refers to item: Line (location: source ID 29, lines 161..162, bytes 6199..6245, hits: 2)
- IC 3627 -> Item 128
- Creation code
- Refers to item: Statement (location: source ID 29, lines 161..162, bytes 6199..6245, hits: 2)
- IC 3707 -> Item 129
- Creation code
- Refers to item: Line (location: source ID 29, lines 162..163, bytes 6255..6296, hits: 2)
- IC 3707 -> Item 130
- Creation code
- Refers to item: Statement (location: source ID 29, lines 162..163, bytes 6255..6296, hits: 2)
- IC 3751 -> Item 131
- Creation code
- Refers to item: Line (location: source ID 29, lines 163..164, bytes 6306..6361, hits: 2)
- IC 3751 -> Item 132
- Creation code
- Refers to item: Statement (location: source ID 29, lines 163..164, bytes 6306..6361, hits: 2)
- IC 3837 -> Item 133
- Creation code
- Refers to item: Line (location: source ID 29, lines 164..165, bytes 6371..6436, hits: 2)
- IC 3837 -> Item 134
- Creation code
- Refers to item: Statement (location: source ID 29, lines 164..165, bytes 6371..6436, hits: 2)
- IC 3838 -> Item 135
- Creation code
- Refers to item: Statement (location: source ID 29, lines 164..165, bytes 6386..6436, hits: 2)
- IC 4027 -> Item 136
- Creation code
- Refers to item: Line (location: source ID 29, lines 165..166, bytes 6450..6458, hits: 2)
- IC 4027 -> Item 137
- Creation code
- Refers to item: Statement (location: source ID 29, lines 165..166, bytes 6450..6458, hits: 2)
- IC 4032 -> Item 138
- Creation code
- Refers to item: Branch (branch: 6, path: 0) (location: source ID 29, lines 165..168, bytes 6460..6528, hits: 0)
- IC 4032 -> Item 139
- Creation code
- Refers to item: Line (location: source ID 29, lines 166..167, bytes 6474..6517, hits: 0)
- IC 4032 -> Item 140
- Creation code
- Refers to item: Statement (location: source ID 29, lines 166..167, bytes 6474..6517, hits: 0)
- IC 4082 -> Item 141
- Creation code
- Refers to item: Line (location: source ID 29, lines 169..170, bytes 6538..6549, hits: 2)
- IC 4082 -> Item 142
- Creation code
- Refers to item: Statement (location: source ID 29, lines 169..170, bytes 6538..6549, hits: 2)
- IC 318 -> Item 143
- Creation code
- Refers to item: Line (location: source ID 29, lines 173..187, bytes 6563..7232, hits: 517)
- IC 318 -> Item 144
- Creation code
- Refers to item: Function "cancelOrder" (location: source ID 29, lines 173..187, bytes 6563..7232, hits: 517)
- IC 1994 -> Item 145
- Creation code
- Refers to item: Line (location: source ID 29, lines 174..175, bytes 6663..6719, hits: 4)
- IC 1994 -> Item 146
- Creation code
- Refers to item: Statement (location: source ID 29, lines 174..175, bytes 6663..6719, hits: 4)
- IC 1994 -> Item 147
- Creation code
- Refers to item: Statement (location: source ID 29, lines 174..175, bytes 6663..6706, hits: 4)
- IC 2052 -> Item 148
- Creation code
- Refers to item: Branch (branch: 7, path: 0) (location: source ID 29, lines 174..177, bytes 6721..6792, hits: 4)
- IC 2052 -> Item 149
- Creation code
- Refers to item: Line (location: source ID 29, lines 175..176, bytes 6735..6781, hits: 4)
- IC 2052 -> Item 150
- Creation code
- Refers to item: Statement (location: source ID 29, lines 175..176, bytes 6735..6781, hits: 4)
- IC 2102 -> Item 151
- Creation code
- Refers to item: Line (location: source ID 29, lines 177..178, bytes 6805..6852, hits: 0)
- IC 2102 -> Item 152
- Creation code
- Refers to item: Statement (location: source ID 29, lines 177..178, bytes 6805..6852, hits: 0)
- IC 2198 -> Item 153
- Creation code
- Refers to item: Branch (branch: 8, path: 0) (location: source ID 29, lines 177..180, bytes 6854..6938, hits: 0)
- IC 2198 -> Item 154
- Creation code
- Refers to item: Line (location: source ID 29, lines 178..179, bytes 6868..6927, hits: 0)
- IC 2198 -> Item 155
- Creation code
- Refers to item: Statement (location: source ID 29, lines 178..179, bytes 6868..6927, hits: 0)
- IC 2248 -> Item 156
- Creation code
- Refers to item: Line (location: source ID 29, lines 181..182, bytes 7008..7054, hits: 0)
- IC 2248 -> Item 157
- Creation code
- Refers to item: Statement (location: source ID 29, lines 181..182, bytes 7008..7054, hits: 0)
- IC 2328 -> Item 158
- Creation code
- Refers to item: Line (location: source ID 29, lines 182..183, bytes 7064..7134, hits: 0)
- IC 2328 -> Item 159
- Creation code
- Refers to item: Statement (location: source ID 29, lines 182..183, bytes 7064..7134, hits: 0)
- IC 2329 -> Item 160
- Creation code
- Refers to item: Statement (location: source ID 29, lines 182..183, bytes 7079..7134, hits: 0)
- IC 2526 -> Item 161
- Creation code
- Refers to item: Line (location: source ID 29, lines 183..184, bytes 7148..7156, hits: 0)
- IC 2526 -> Item 162
- Creation code
- Refers to item: Statement (location: source ID 29, lines 183..184, bytes 7148..7156, hits: 0)
- IC 2531 -> Item 163
- Creation code
- Refers to item: Branch (branch: 9, path: 0) (location: source ID 29, lines 183..186, bytes 7158..7226, hits: 0)
- IC 2531 -> Item 164
- Creation code
- Refers to item: Line (location: source ID 29, lines 184..185, bytes 7172..7215, hits: 0)
- IC 2531 -> Item 165
- Creation code
- Refers to item: Statement (location: source ID 29, lines 184..185, bytes 7172..7215, hits: 0)
- IC 578 -> Item 166
- Creation code
- Refers to item: Line (location: source ID 29, lines 191..194, bytes 7267..7388, hits: 1)
- IC 578 -> Item 167
- Creation code
- Refers to item: Function "getPromptHash" (location: source ID 29, lines 191..194, bytes 7267..7388, hits: 1)
- IC 3291 -> Item 168
- Creation code
- Refers to item: Line (location: source ID 29, lines 192..193, bytes 7348..7381, hits: 1)
- IC 3291 -> Item 169
- Creation code
- Refers to item: Statement (location: source ID 29, lines 192..193, bytes 7348..7381, hits: 1)
- IC 394 -> Item 170
- Creation code
- Refers to item: Line (location: source ID 29, lines 195..198, bytes 7398..7513, hits: 1)
- IC 394 -> Item 171
- Creation code
- Refers to item: Function "getAmountPaid" (location: source ID 29, lines 195..198, bytes 7398..7513, hits: 1)
- IC 2674 -> Item 172
- Creation code
- Refers to item: Line (location: source ID 29, lines 196..197, bytes 7479..7506, hits: 1)
- IC 2674 -> Item 173
- Creation code
- Refers to item: Statement (location: source ID 29, lines 196..197, bytes 7479..7506, hits: 1)
- IC 548 -> Item 174
- Creation code
- Refers to item: Line (location: source ID 29, lines 199..202, bytes 7519..7620, hits: 0)
- IC 548 -> Item 175
- Creation code
- Refers to item: Function "getAgentController" (location: source ID 29, lines 199..202, bytes 7519..7620, hits: 0)
- IC 3252 -> Item 176
- Creation code
- Refers to item: Line (location: source ID 29, lines 200..201, bytes 7591..7613, hits: 0)
- IC 3252 -> Item 177
- Creation code
- Refers to item: Statement (location: source ID 29, lines 200..201, bytes 7591..7613, hits: 0)
- IC 442 -> Item 178
- Creation code
- Refers to item: Line (location: source ID 29, lines 203..206, bytes 7626..7714, hits: 5)
- IC 442 -> Item 179
- Creation code
- Refers to item: Function "getAgentFee" (location: source ID 29, lines 203..206, bytes 7626..7714, hits: 5)
- IC 2732 -> Item 180
- Creation code
- Refers to item: Line (location: source ID 29, lines 204..205, bytes 7691..7707, hits: 5)
- IC 2732 -> Item 181
- Creation code
- Refers to item: Statement (location: source ID 29, lines 204..205, bytes 7691..7707, hits: 5)
- IC 770 -> Item 182
- Creation code
- Refers to item: Line (location: source ID 29, lines 207..210, bytes 7720..7848, hits: 1)
- IC 770 -> Item 183
- Creation code
- Refers to item: Function "getOfferIdToTimestamp" (location: source ID 29, lines 207..210, bytes 7720..7848, hits: 1)
- IC 4797 -> Item 184
- Creation code
- Refers to item: Line (location: source ID 29, lines 208..209, bytes 7809..7841, hits: 1)
- IC 4797 -> Item 185
- Creation code
- Refers to item: Statement (location: source ID 29, lines 208..209, bytes 7809..7841, hits: 1)
- IC 346 -> Item 186
- Creation code
- Refers to item: Line (location: source ID 29, lines 213..216, bytes 7856..7973, hits: 0)
- IC 346 -> Item 187
- Creation code
- Refers to item: Function "getUserByOfferId" (location: source ID 29, lines 213..216, bytes 7856..7973, hits: 0)
- IC 2595 -> Item 188
- Creation code
- Refers to item: Line (location: source ID 29, lines 214..215, bytes 7938..7966, hits: 2)
- IC 2595 -> Item 189
- Creation code
- Refers to item: Statement (location: source ID 29, lines 214..215, bytes 7938..7966, hits: 2)
- IC 472 -> Item 190
- Creation code
- Refers to item: Line (location: source ID 29, lines 217..220, bytes 7979..8101, hits: 2)
- IC 472 -> Item 191
- Creation code
- Refers to item: Function "getOfferStatus" (location: source ID 29, lines 217..220, bytes 7979..8101, hits: 2)
- IC 2738 -> Item 192
- Creation code
- Refers to item: Line (location: source ID 29, lines 218..219, bytes 8065..8094, hits: 2)
- IC 2738 -> Item 193
- Creation code
- Refers to item: Statement (location: source ID 29, lines 218..219, bytes 8065..8094, hits: 2)
- IC 722 -> Item 194
- Creation code
- Refers to item: Line (location: source ID 29, lines 221..224, bytes 8111..8232, hits: 1)
- IC 722 -> Item 195
- Creation code
- Refers to item: Function "getAnswerHash" (location: source ID 29, lines 221..224, bytes 8111..8232, hits: 1)
- IC 4748 -> Item 196
- Creation code
- Refers to item: Line (location: source ID 29, lines 222..223, bytes 8192..8225, hits: 1)
- IC 4748 -> Item 197
- Creation code
- Refers to item: Statement (location: source ID 29, lines 222..223, bytes 8192..8225, hits: 1)