-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathattacker-contract.txt
9730 lines (9718 loc) · 268 KB
/
attacker-contract.txt
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
Attack function selector: 0xcaa5c23f
PC: 0x0, opcode: PUSH1 0x80
PC: 0x2, opcode: PUSH1 0x40
PC: 0x4, opcode: MSTORE
PC: 0x5, opcode: PUSH1 0x04
PC: 0x7, opcode: CALLDATASIZE
PC: 0x8, opcode: LT
PC: 0x9, opcode: PUSH2 0x016a
PC: 0xc, opcode: JUMPI
PC: 0xd, opcode: PUSH1 0x00
PC: 0xf, opcode: CALLDATALOAD
PC: 0x10, opcode: PUSH1 0xe0
PC: 0x12, opcode: SHR
PC: 0x13, opcode: DUP1
PC: 0x14, opcode: PUSH4 0x7e4d98fe
PC: 0x19, opcode: GT
PC: 0x1a, opcode: PUSH2 0x00d1
PC: 0x1d, opcode: JUMPI
PC: 0x1e, opcode: DUP1
PC: 0x1f, opcode: PUSH4 0xbe9e09d6
PC: 0x24, opcode: GT
PC: 0x25, opcode: PUSH2 0x008a
PC: 0x28, opcode: JUMPI
PC: 0x29, opcode: DUP1
PC: 0x2a, opcode: PUSH4 0xca6d56dc
PC: 0x2f, opcode: GT
PC: 0x30, opcode: PUSH2 0x0064
PC: 0x33, opcode: JUMPI
PC: 0x34, opcode: DUP1
PC: 0x35, opcode: PUSH4 0xca6d56dc
PC: 0x3a, opcode: EQ
PC: 0x3b, opcode: PUSH2 0x0444
PC: 0x3e, opcode: JUMPI
PC: 0x3f, opcode: DUP1
PC: 0x40, opcode: PUSH4 0xcaa5c23f <---- Attack function selector
PC: 0x45, opcode: EQ
PC: 0x46, opcode: PUSH2 0x0464 <---- Attack function offset
PC: 0x49, opcode: JUMPI
PC: 0x4a, opcode: DUP1
PC: 0x4b, opcode: PUSH4 0xd9b18495
PC: 0x50, opcode: EQ
PC: 0x51, opcode: PUSH2 0x0484
PC: 0x54, opcode: JUMPI
PC: 0x55, opcode: DUP1
PC: 0x56, opcode: PUSH4 0xf368b946
PC: 0x5b, opcode: EQ
PC: 0x5c, opcode: PUSH2 0x04a4
PC: 0x5f, opcode: JUMPI
PC: 0x60, opcode: PUSH2 0x0171
PC: 0x63, opcode: JUMP
PC: 0x64, opcode: JUMPDEST
PC: 0x65, opcode: DUP1
PC: 0x66, opcode: PUSH4 0xbe9e09d6
PC: 0x6b, opcode: EQ
PC: 0x6c, opcode: PUSH2 0x03ef
PC: 0x6f, opcode: JUMPI
PC: 0x70, opcode: DUP1
PC: 0x71, opcode: PUSH4 0xc230df73
PC: 0x76, opcode: EQ
PC: 0x77, opcode: PUSH2 0x040f
PC: 0x7a, opcode: JUMPI
PC: 0x7b, opcode: DUP1
PC: 0x7c, opcode: PUSH4 0xc4d17761
PC: 0x81, opcode: EQ
PC: 0x82, opcode: PUSH2 0x0424
PC: 0x85, opcode: JUMPI
PC: 0x86, opcode: PUSH2 0x0171
PC: 0x89, opcode: JUMP
PC: 0x8a, opcode: JUMPDEST
PC: 0x8b, opcode: DUP1
PC: 0x8c, opcode: PUSH4 0x7e4d98fe
PC: 0x91, opcode: EQ
PC: 0x92, opcode: PUSH2 0x0310
PC: 0x95, opcode: JUMPI
PC: 0x96, opcode: DUP1
PC: 0x97, opcode: PUSH4 0x8014bad3
PC: 0x9c, opcode: EQ
PC: 0x9d, opcode: PUSH2 0x0330
PC: 0xa0, opcode: JUMPI
PC: 0xa1, opcode: DUP1
PC: 0xa2, opcode: PUSH4 0x9d3b1297
PC: 0xa7, opcode: EQ
PC: 0xa8, opcode: PUSH2 0x0350
PC: 0xab, opcode: JUMPI
PC: 0xac, opcode: DUP1
PC: 0xad, opcode: PUSH4 0xb522d413
PC: 0xb2, opcode: EQ
PC: 0xb3, opcode: PUSH2 0x0365
PC: 0xb6, opcode: JUMPI
PC: 0xb7, opcode: DUP1
PC: 0xb8, opcode: PUSH4 0xb8a1ebb1
PC: 0xbd, opcode: EQ
PC: 0xbe, opcode: PUSH2 0x0385
PC: 0xc1, opcode: JUMPI
PC: 0xc2, opcode: DUP1
PC: 0xc3, opcode: PUSH4 0xba125fe5
PC: 0xc8, opcode: EQ
PC: 0xc9, opcode: PUSH2 0x03da
PC: 0xcc, opcode: JUMPI
PC: 0xcd, opcode: PUSH2 0x0171
PC: 0xd0, opcode: JUMP
PC: 0xd1, opcode: JUMPDEST
PC: 0xd2, opcode: DUP1
PC: 0xd3, opcode: PUSH4 0x34c2c130
PC: 0xd8, opcode: GT
PC: 0xd9, opcode: PUSH2 0x0123
PC: 0xdc, opcode: JUMPI
PC: 0xdd, opcode: DUP1
PC: 0xde, opcode: PUSH4 0x34c2c130
PC: 0xe3, opcode: EQ
PC: 0xe4, opcode: PUSH2 0x025b
PC: 0xe7, opcode: JUMPI
PC: 0xe8, opcode: DUP1
PC: 0xe9, opcode: PUSH4 0x3a681d36
PC: 0xee, opcode: EQ
PC: 0xef, opcode: PUSH2 0x0270
PC: 0xf2, opcode: JUMPI
PC: 0xf3, opcode: DUP1
PC: 0xf4, opcode: PUSH4 0x429febe2
PC: 0xf9, opcode: EQ
PC: 0xfa, opcode: PUSH2 0x0290
PC: 0xfd, opcode: JUMPI
PC: 0xfe, opcode: DUP1
PC: 0xff, opcode: PUSH4 0x52efea6e
PC: 0x104, opcode: EQ
PC: 0x105, opcode: PUSH2 0x02b0
PC: 0x108, opcode: JUMPI
PC: 0x109, opcode: DUP1
PC: 0x10a, opcode: PUSH4 0x6d30de63
PC: 0x10f, opcode: EQ
PC: 0x110, opcode: PUSH2 0x02c3
PC: 0x113, opcode: JUMPI
PC: 0x114, opcode: DUP1
PC: 0x115, opcode: PUSH4 0x6e07c470
PC: 0x11a, opcode: EQ
PC: 0x11b, opcode: PUSH2 0x02f0
PC: 0x11e, opcode: JUMPI
PC: 0x11f, opcode: PUSH2 0x0171
PC: 0x122, opcode: JUMP
PC: 0x123, opcode: JUMPDEST
PC: 0x124, opcode: DUP1
PC: 0x125, opcode: PUSH4 0x0a1ba1af
PC: 0x12a, opcode: EQ
PC: 0x12b, opcode: PUSH2 0x017b
PC: 0x12e, opcode: JUMPI
PC: 0x12f, opcode: DUP1
PC: 0x130, opcode: PUSH4 0x0b803b36
PC: 0x135, opcode: EQ
PC: 0x136, opcode: PUSH2 0x01ae
PC: 0x139, opcode: JUMPI
PC: 0x13a, opcode: DUP1
PC: 0x13b, opcode: PUSH4 0x12065fe0
PC: 0x140, opcode: EQ
PC: 0x141, opcode: PUSH2 0x01db
PC: 0x144, opcode: JUMPI
PC: 0x145, opcode: DUP1
PC: 0x146, opcode: PUSH4 0x146b8253
PC: 0x14b, opcode: EQ
PC: 0x14c, opcode: PUSH2 0x01ee
PC: 0x14f, opcode: JUMPI
PC: 0x150, opcode: DUP1
PC: 0x151, opcode: PUSH4 0x17efea78
PC: 0x156, opcode: EQ
PC: 0x157, opcode: PUSH2 0x020e
PC: 0x15a, opcode: JUMPI
PC: 0x15b, opcode: DUP1
PC: 0x15c, opcode: PUSH4 0x2232d539
PC: 0x161, opcode: EQ
PC: 0x162, opcode: PUSH2 0x023b
PC: 0x165, opcode: JUMPI
PC: 0x166, opcode: PUSH2 0x0171
PC: 0x169, opcode: JUMP
PC: 0x16a, opcode: JUMPDEST
PC: 0x16b, opcode: CALLDATASIZE
PC: 0x16c, opcode: PUSH2 0x0171
PC: 0x16f, opcode: JUMPI
PC: 0x170, opcode: STOP
PC: 0x171, opcode: JUMPDEST
PC: 0x172, opcode: PUSH2 0x0179
PC: 0x175, opcode: PUSH2 0x04c4
PC: 0x178, opcode: JUMP
PC: 0x179, opcode: JUMPDEST
PC: 0x17a, opcode: STOP
PC: 0x17b, opcode: JUMPDEST
PC: 0x17c, opcode: CALLVALUE
PC: 0x17d, opcode: DUP1
PC: 0x17e, opcode: ISZERO
PC: 0x17f, opcode: PUSH2 0x0187
PC: 0x182, opcode: JUMPI
PC: 0x183, opcode: PUSH1 0x00
PC: 0x185, opcode: DUP1
PC: 0x186, opcode: REVERT
PC: 0x187, opcode: JUMPDEST
PC: 0x188, opcode: POP
PC: 0x189, opcode: PUSH2 0x019b
PC: 0x18c, opcode: PUSH2 0x0196
PC: 0x18f, opcode: CALLDATASIZE
PC: 0x190, opcode: PUSH1 0x04
PC: 0x192, opcode: PUSH2 0x30ce
PC: 0x195, opcode: JUMP
PC: 0x196, opcode: JUMPDEST
PC: 0x197, opcode: PUSH2 0x0668
PC: 0x19a, opcode: JUMP
PC: 0x19b, opcode: JUMPDEST
PC: 0x19c, opcode: PUSH1 0x40
PC: 0x19e, opcode: MLOAD
PC: 0x19f, opcode: SWAP1
PC: 0x1a0, opcode: DUP2
PC: 0x1a1, opcode: MSTORE
PC: 0x1a2, opcode: PUSH1 0x20
PC: 0x1a4, opcode: ADD
PC: 0x1a5, opcode: JUMPDEST
PC: 0x1a6, opcode: PUSH1 0x40
PC: 0x1a8, opcode: MLOAD
PC: 0x1a9, opcode: DUP1
PC: 0x1aa, opcode: SWAP2
PC: 0x1ab, opcode: SUB
PC: 0x1ac, opcode: SWAP1
PC: 0x1ad, opcode: RETURN
PC: 0x1ae, opcode: JUMPDEST
PC: 0x1af, opcode: CALLVALUE
PC: 0x1b0, opcode: DUP1
PC: 0x1b1, opcode: ISZERO
PC: 0x1b2, opcode: PUSH2 0x01ba
PC: 0x1b5, opcode: JUMPI
PC: 0x1b6, opcode: PUSH1 0x00
PC: 0x1b8, opcode: DUP1
PC: 0x1b9, opcode: REVERT
PC: 0x1ba, opcode: JUMPDEST
PC: 0x1bb, opcode: POP
PC: 0x1bc, opcode: PUSH2 0x01ce
PC: 0x1bf, opcode: PUSH2 0x01c9
PC: 0x1c2, opcode: CALLDATASIZE
PC: 0x1c3, opcode: PUSH1 0x04
PC: 0x1c5, opcode: PUSH2 0x2d3e
PC: 0x1c8, opcode: JUMP
PC: 0x1c9, opcode: JUMPDEST
PC: 0x1ca, opcode: PUSH2 0x08c4
PC: 0x1cd, opcode: JUMP
PC: 0x1ce, opcode: JUMPDEST
PC: 0x1cf, opcode: PUSH1 0x40
PC: 0x1d1, opcode: MLOAD
PC: 0x1d2, opcode: PUSH2 0x01a5
PC: 0x1d5, opcode: SWAP2
PC: 0x1d6, opcode: SWAP1
PC: 0x1d7, opcode: PUSH2 0x31dd
PC: 0x1da, opcode: JUMP
PC: 0x1db, opcode: JUMPDEST
PC: 0x1dc, opcode: CALLVALUE
PC: 0x1dd, opcode: DUP1
PC: 0x1de, opcode: ISZERO
PC: 0x1df, opcode: PUSH2 0x01e7
PC: 0x1e2, opcode: JUMPI
PC: 0x1e3, opcode: PUSH1 0x00
PC: 0x1e5, opcode: DUP1
PC: 0x1e6, opcode: REVERT
PC: 0x1e7, opcode: JUMPDEST
PC: 0x1e8, opcode: POP
PC: 0x1e9, opcode: SELFBALANCE
PC: 0x1ea, opcode: PUSH2 0x019b
PC: 0x1ed, opcode: JUMP
PC: 0x1ee, opcode: JUMPDEST
PC: 0x1ef, opcode: CALLVALUE
PC: 0x1f0, opcode: DUP1
PC: 0x1f1, opcode: ISZERO
PC: 0x1f2, opcode: PUSH2 0x01fa
PC: 0x1f5, opcode: JUMPI
PC: 0x1f6, opcode: PUSH1 0x00
PC: 0x1f8, opcode: DUP1
PC: 0x1f9, opcode: REVERT
PC: 0x1fa, opcode: JUMPDEST
PC: 0x1fb, opcode: POP
PC: 0x1fc, opcode: PUSH2 0x01ce
PC: 0x1ff, opcode: PUSH2 0x0209
PC: 0x202, opcode: CALLDATASIZE
PC: 0x203, opcode: PUSH1 0x04
PC: 0x205, opcode: PUSH2 0x2e68
PC: 0x208, opcode: JUMP
PC: 0x209, opcode: JUMPDEST
PC: 0x20a, opcode: PUSH2 0x0a0d
PC: 0x20d, opcode: JUMP
PC: 0x20e, opcode: JUMPDEST
PC: 0x20f, opcode: CALLVALUE
PC: 0x210, opcode: DUP1
PC: 0x211, opcode: ISZERO
PC: 0x212, opcode: PUSH2 0x021a
PC: 0x215, opcode: JUMPI
PC: 0x216, opcode: PUSH1 0x00
PC: 0x218, opcode: DUP1
PC: 0x219, opcode: REVERT
PC: 0x21a, opcode: JUMPDEST
PC: 0x21b, opcode: POP
PC: 0x21c, opcode: PUSH2 0x022e
PC: 0x21f, opcode: PUSH2 0x0229
PC: 0x222, opcode: CALLDATASIZE
PC: 0x223, opcode: PUSH1 0x04
PC: 0x225, opcode: PUSH2 0x2f7f
PC: 0x228, opcode: JUMP
PC: 0x229, opcode: JUMPDEST
PC: 0x22a, opcode: PUSH2 0x0ae6
PC: 0x22d, opcode: JUMP
PC: 0x22e, opcode: JUMPDEST
PC: 0x22f, opcode: PUSH1 0x40
PC: 0x231, opcode: MLOAD
PC: 0x232, opcode: PUSH2 0x01a5
PC: 0x235, opcode: SWAP2
PC: 0x236, opcode: SWAP1
PC: 0x237, opcode: PUSH2 0x323f
PC: 0x23a, opcode: JUMP
PC: 0x23b, opcode: JUMPDEST
PC: 0x23c, opcode: CALLVALUE
PC: 0x23d, opcode: DUP1
PC: 0x23e, opcode: ISZERO
PC: 0x23f, opcode: PUSH2 0x0247
PC: 0x242, opcode: JUMPI
PC: 0x243, opcode: PUSH1 0x00
PC: 0x245, opcode: DUP1
PC: 0x246, opcode: REVERT
PC: 0x247, opcode: JUMPDEST
PC: 0x248, opcode: POP
PC: 0x249, opcode: PUSH2 0x019b
PC: 0x24c, opcode: PUSH2 0x0256
PC: 0x24f, opcode: CALLDATASIZE
PC: 0x250, opcode: PUSH1 0x04
PC: 0x252, opcode: PUSH2 0x3039
PC: 0x255, opcode: JUMP
PC: 0x256, opcode: JUMPDEST
PC: 0x257, opcode: PUSH2 0x0aff
PC: 0x25a, opcode: JUMP
PC: 0x25b, opcode: JUMPDEST
PC: 0x25c, opcode: CALLVALUE
PC: 0x25d, opcode: DUP1
PC: 0x25e, opcode: ISZERO
PC: 0x25f, opcode: PUSH2 0x0267
PC: 0x262, opcode: JUMPI
PC: 0x263, opcode: PUSH1 0x00
PC: 0x265, opcode: DUP1
PC: 0x266, opcode: REVERT
PC: 0x267, opcode: JUMPDEST
PC: 0x268, opcode: POP
PC: 0x269, opcode: PUSH2 0x0179
PC: 0x26c, opcode: PUSH2 0x0ba0
PC: 0x26f, opcode: JUMP
PC: 0x270, opcode: JUMPDEST
PC: 0x271, opcode: CALLVALUE
PC: 0x272, opcode: DUP1
PC: 0x273, opcode: ISZERO
PC: 0x274, opcode: PUSH2 0x027c
PC: 0x277, opcode: JUMPI
PC: 0x278, opcode: PUSH1 0x00
PC: 0x27a, opcode: DUP1
PC: 0x27b, opcode: REVERT
PC: 0x27c, opcode: JUMPDEST
PC: 0x27d, opcode: POP
PC: 0x27e, opcode: PUSH2 0x019b
PC: 0x281, opcode: PUSH2 0x028b
PC: 0x284, opcode: CALLDATASIZE
PC: 0x285, opcode: PUSH1 0x04
PC: 0x287, opcode: PUSH2 0x307b
PC: 0x28a, opcode: JUMP
PC: 0x28b, opcode: JUMPDEST
PC: 0x28c, opcode: PUSH2 0x0c2d
PC: 0x28f, opcode: JUMP
PC: 0x290, opcode: JUMPDEST
PC: 0x291, opcode: CALLVALUE
PC: 0x292, opcode: DUP1
PC: 0x293, opcode: ISZERO
PC: 0x294, opcode: PUSH2 0x029c
PC: 0x297, opcode: JUMPI
PC: 0x298, opcode: PUSH1 0x00
PC: 0x29a, opcode: DUP1
PC: 0x29b, opcode: REVERT
PC: 0x29c, opcode: JUMPDEST
PC: 0x29d, opcode: POP
PC: 0x29e, opcode: PUSH2 0x0179
PC: 0x2a1, opcode: PUSH2 0x02ab
PC: 0x2a4, opcode: CALLDATASIZE
PC: 0x2a5, opcode: PUSH1 0x04
PC: 0x2a7, opcode: PUSH2 0x2d7f
PC: 0x2aa, opcode: JUMP
PC: 0x2ab, opcode: JUMPDEST
PC: 0x2ac, opcode: PUSH2 0x0f58
PC: 0x2af, opcode: JUMP
PC: 0x2b0, opcode: JUMPDEST
PC: 0x2b1, opcode: CALLVALUE
PC: 0x2b2, opcode: DUP1
PC: 0x2b3, opcode: ISZERO
PC: 0x2b4, opcode: PUSH2 0x02bc
PC: 0x2b7, opcode: JUMPI
PC: 0x2b8, opcode: PUSH1 0x00
PC: 0x2ba, opcode: DUP1
PC: 0x2bb, opcode: REVERT
PC: 0x2bc, opcode: JUMPDEST
PC: 0x2bd, opcode: POP
PC: 0x2be, opcode: PUSH2 0x0179
PC: 0x2c1, opcode: CALLER
PC: 0x2c2, opcode: SELFDESTRUCT
PC: 0x2c3, opcode: JUMPDEST
PC: 0x2c4, opcode: CALLVALUE
PC: 0x2c5, opcode: DUP1
PC: 0x2c6, opcode: ISZERO
PC: 0x2c7, opcode: PUSH2 0x02cf
PC: 0x2ca, opcode: JUMPI
PC: 0x2cb, opcode: PUSH1 0x00
PC: 0x2cd, opcode: DUP1
PC: 0x2ce, opcode: REVERT
PC: 0x2cf, opcode: JUMPDEST
PC: 0x2d0, opcode: POP
PC: 0x2d1, opcode: PUSH2 0x02e3
PC: 0x2d4, opcode: PUSH2 0x02de
PC: 0x2d7, opcode: CALLDATASIZE
PC: 0x2d8, opcode: PUSH1 0x04
PC: 0x2da, opcode: PUSH2 0x2cb7
PC: 0x2dd, opcode: JUMP
PC: 0x2de, opcode: JUMPDEST
PC: 0x2df, opcode: PUSH2 0x1099
PC: 0x2e2, opcode: JUMP
PC: 0x2e3, opcode: JUMPDEST
PC: 0x2e4, opcode: PUSH1 0x40
PC: 0x2e6, opcode: MLOAD
PC: 0x2e7, opcode: PUSH2 0x01a5
PC: 0x2ea, opcode: SWAP2
PC: 0x2eb, opcode: SWAP1
PC: 0x2ec, opcode: PUSH2 0x31ca
PC: 0x2ef, opcode: JUMP
PC: 0x2f0, opcode: JUMPDEST
PC: 0x2f1, opcode: CALLVALUE
PC: 0x2f2, opcode: DUP1
PC: 0x2f3, opcode: ISZERO
PC: 0x2f4, opcode: PUSH2 0x02fc
PC: 0x2f7, opcode: JUMPI
PC: 0x2f8, opcode: PUSH1 0x00
PC: 0x2fa, opcode: DUP1
PC: 0x2fb, opcode: REVERT
PC: 0x2fc, opcode: JUMPDEST
PC: 0x2fd, opcode: POP
PC: 0x2fe, opcode: PUSH2 0x0179
PC: 0x301, opcode: PUSH2 0x030b
PC: 0x304, opcode: CALLDATASIZE
PC: 0x305, opcode: PUSH1 0x04
PC: 0x307, opcode: PUSH2 0x3014
PC: 0x30a, opcode: JUMP
PC: 0x30b, opcode: JUMPDEST
PC: 0x30c, opcode: PUSH2 0x16fc
PC: 0x30f, opcode: JUMP
PC: 0x310, opcode: JUMPDEST
PC: 0x311, opcode: CALLVALUE
PC: 0x312, opcode: DUP1
PC: 0x313, opcode: ISZERO
PC: 0x314, opcode: PUSH2 0x031c
PC: 0x317, opcode: JUMPI
PC: 0x318, opcode: PUSH1 0x00
PC: 0x31a, opcode: DUP1
PC: 0x31b, opcode: REVERT
PC: 0x31c, opcode: JUMPDEST
PC: 0x31d, opcode: POP
PC: 0x31e, opcode: PUSH2 0x0179
PC: 0x321, opcode: PUSH2 0x032b
PC: 0x324, opcode: CALLDATASIZE
PC: 0x325, opcode: PUSH1 0x04
PC: 0x327, opcode: PUSH2 0x2de7
PC: 0x32a, opcode: JUMP
PC: 0x32b, opcode: JUMPDEST
PC: 0x32c, opcode: PUSH2 0x1726
PC: 0x32f, opcode: JUMP
PC: 0x330, opcode: JUMPDEST
PC: 0x331, opcode: CALLVALUE
PC: 0x332, opcode: DUP1
PC: 0x333, opcode: ISZERO
PC: 0x334, opcode: PUSH2 0x033c
PC: 0x337, opcode: JUMPI
PC: 0x338, opcode: PUSH1 0x00
PC: 0x33a, opcode: DUP1
PC: 0x33b, opcode: REVERT
PC: 0x33c, opcode: JUMPDEST
PC: 0x33d, opcode: POP
PC: 0x33e, opcode: PUSH2 0x0179
PC: 0x341, opcode: PUSH2 0x034b
PC: 0x344, opcode: CALLDATASIZE
PC: 0x345, opcode: PUSH1 0x04
PC: 0x347, opcode: PUSH2 0x2cf8
PC: 0x34a, opcode: JUMP
PC: 0x34b, opcode: JUMPDEST
PC: 0x34c, opcode: PUSH2 0x1857
PC: 0x34f, opcode: JUMP
PC: 0x350, opcode: JUMPDEST
PC: 0x351, opcode: CALLVALUE
PC: 0x352, opcode: DUP1
PC: 0x353, opcode: ISZERO
PC: 0x354, opcode: PUSH2 0x035c
PC: 0x357, opcode: JUMPI
PC: 0x358, opcode: PUSH1 0x00
PC: 0x35a, opcode: DUP1
PC: 0x35b, opcode: REVERT
PC: 0x35c, opcode: JUMPDEST
PC: 0x35d, opcode: POP
PC: 0x35e, opcode: PUSH1 0x02
PC: 0x360, opcode: SLOAD
PC: 0x361, opcode: PUSH2 0x019b
PC: 0x364, opcode: JUMP
PC: 0x365, opcode: JUMPDEST
PC: 0x366, opcode: CALLVALUE
PC: 0x367, opcode: DUP1
PC: 0x368, opcode: ISZERO
PC: 0x369, opcode: PUSH2 0x0371
PC: 0x36c, opcode: JUMPI
PC: 0x36d, opcode: PUSH1 0x00
PC: 0x36f, opcode: DUP1
PC: 0x370, opcode: REVERT
PC: 0x371, opcode: JUMPDEST
PC: 0x372, opcode: POP
PC: 0x373, opcode: PUSH2 0x019b
PC: 0x376, opcode: PUSH2 0x0380
PC: 0x379, opcode: CALLDATASIZE
PC: 0x37a, opcode: PUSH1 0x04
PC: 0x37c, opcode: PUSH2 0x2c7e
PC: 0x37f, opcode: JUMP
PC: 0x380, opcode: JUMPDEST
PC: 0x381, opcode: PUSH2 0x195d
PC: 0x384, opcode: JUMP
PC: 0x385, opcode: JUMPDEST
PC: 0x386, opcode: CALLVALUE
PC: 0x387, opcode: DUP1
PC: 0x388, opcode: ISZERO
PC: 0x389, opcode: PUSH2 0x0391
PC: 0x38c, opcode: JUMPI
PC: 0x38d, opcode: PUSH1 0x00
PC: 0x38f, opcode: DUP1
PC: 0x390, opcode: REVERT
PC: 0x391, opcode: JUMPDEST
PC: 0x392, opcode: POP
PC: 0x393, opcode: PUSH2 0x03a5
PC: 0x396, opcode: PUSH2 0x03a0
PC: 0x399, opcode: CALLDATASIZE
PC: 0x39a, opcode: PUSH1 0x04
PC: 0x39c, opcode: PUSH2 0x3039
PC: 0x39f, opcode: JUMP
PC: 0x3a0, opcode: JUMPDEST
PC: 0x3a1, opcode: PUSH2 0x19e6
PC: 0x3a4, opcode: JUMP
PC: 0x3a5, opcode: JUMPDEST
PC: 0x3a6, opcode: PUSH1 0x40
PC: 0x3a8, opcode: MLOAD
PC: 0x3a9, opcode: PUSH2 0x01a5
PC: 0x3ac, opcode: SWAP5
PC: 0x3ad, opcode: SWAP4
PC: 0x3ae, opcode: SWAP3
PC: 0x3af, opcode: SWAP2
PC: 0x3b0, opcode: SWAP1
PC: 0x3b1, opcode: PUSH1 0x01
PC: 0x3b3, opcode: PUSH1 0x01
PC: 0x3b5, opcode: PUSH1 0xa0
PC: 0x3b7, opcode: SHL
PC: 0x3b8, opcode: SUB
PC: 0x3b9, opcode: SWAP5
PC: 0x3ba, opcode: DUP6
PC: 0x3bb, opcode: AND
PC: 0x3bc, opcode: DUP2
PC: 0x3bd, opcode: MSTORE
PC: 0x3be, opcode: PUSH1 0x20
PC: 0x3c0, opcode: DUP2
PC: 0x3c1, opcode: ADD
PC: 0x3c2, opcode: SWAP4
PC: 0x3c3, opcode: SWAP1
PC: 0x3c4, opcode: SWAP4
PC: 0x3c5, opcode: MSTORE
PC: 0x3c6, opcode: SWAP3
PC: 0x3c7, opcode: AND
PC: 0x3c8, opcode: PUSH1 0x40
PC: 0x3ca, opcode: DUP3
PC: 0x3cb, opcode: ADD
PC: 0x3cc, opcode: MSTORE
PC: 0x3cd, opcode: PUSH1 0x60
PC: 0x3cf, opcode: DUP2
PC: 0x3d0, opcode: ADD
PC: 0x3d1, opcode: SWAP2
PC: 0x3d2, opcode: SWAP1
PC: 0x3d3, opcode: SWAP2
PC: 0x3d4, opcode: MSTORE
PC: 0x3d5, opcode: PUSH1 0x80
PC: 0x3d7, opcode: ADD
PC: 0x3d8, opcode: SWAP1
PC: 0x3d9, opcode: JUMP
PC: 0x3da, opcode: JUMPDEST
PC: 0x3db, opcode: CALLVALUE
PC: 0x3dc, opcode: DUP1
PC: 0x3dd, opcode: ISZERO
PC: 0x3de, opcode: PUSH2 0x03e6
PC: 0x3e1, opcode: JUMPI
PC: 0x3e2, opcode: PUSH1 0x00
PC: 0x3e4, opcode: DUP1
PC: 0x3e5, opcode: REVERT
PC: 0x3e6, opcode: JUMPDEST
PC: 0x3e7, opcode: POP
PC: 0x3e8, opcode: PUSH2 0x0179
PC: 0x3eb, opcode: PUSH2 0x1a35
PC: 0x3ee, opcode: JUMP
PC: 0x3ef, opcode: JUMPDEST
PC: 0x3f0, opcode: CALLVALUE
PC: 0x3f1, opcode: DUP1
PC: 0x3f2, opcode: ISZERO
PC: 0x3f3, opcode: PUSH2 0x03fb
PC: 0x3f6, opcode: JUMPI
PC: 0x3f7, opcode: PUSH1 0x00
PC: 0x3f9, opcode: DUP1
PC: 0x3fa, opcode: REVERT
PC: 0x3fb, opcode: JUMPDEST
PC: 0x3fc, opcode: POP
PC: 0x3fd, opcode: PUSH2 0x02e3
PC: 0x400, opcode: PUSH2 0x040a
PC: 0x403, opcode: CALLDATASIZE
PC: 0x404, opcode: PUSH1 0x04
PC: 0x406, opcode: PUSH2 0x2c7e
PC: 0x409, opcode: JUMP
PC: 0x40a, opcode: JUMPDEST
PC: 0x40b, opcode: PUSH2 0x1a48
PC: 0x40e, opcode: JUMP
PC: 0x40f, opcode: JUMPDEST
PC: 0x410, opcode: CALLVALUE
PC: 0x411, opcode: DUP1
PC: 0x412, opcode: ISZERO
PC: 0x413, opcode: PUSH2 0x041b
PC: 0x416, opcode: JUMPI
PC: 0x417, opcode: PUSH1 0x00
PC: 0x419, opcode: DUP1
PC: 0x41a, opcode: REVERT
PC: 0x41b, opcode: JUMPDEST
PC: 0x41c, opcode: POP
PC: 0x41d, opcode: PUSH2 0x0179
PC: 0x420, opcode: PUSH2 0x1b57
PC: 0x423, opcode: JUMP
PC: 0x424, opcode: JUMPDEST
PC: 0x425, opcode: CALLVALUE
PC: 0x426, opcode: DUP1
PC: 0x427, opcode: ISZERO
PC: 0x428, opcode: PUSH2 0x0430
PC: 0x42b, opcode: JUMPI
PC: 0x42c, opcode: PUSH1 0x00
PC: 0x42e, opcode: DUP1
PC: 0x42f, opcode: REVERT
PC: 0x430, opcode: JUMPDEST
PC: 0x431, opcode: POP
PC: 0x432, opcode: PUSH2 0x0179
PC: 0x435, opcode: PUSH2 0x043f
PC: 0x438, opcode: CALLDATASIZE
PC: 0x439, opcode: PUSH1 0x04
PC: 0x43b, opcode: PUSH2 0x2fe2
PC: 0x43e, opcode: JUMP
PC: 0x43f, opcode: JUMPDEST
PC: 0x440, opcode: PUSH2 0x1b7d
PC: 0x443, opcode: JUMP
PC: 0x444, opcode: JUMPDEST
PC: 0x445, opcode: CALLVALUE
PC: 0x446, opcode: DUP1
PC: 0x447, opcode: ISZERO
PC: 0x448, opcode: PUSH2 0x0450
PC: 0x44b, opcode: JUMPI
PC: 0x44c, opcode: PUSH1 0x00
PC: 0x44e, opcode: DUP1
PC: 0x44f, opcode: REVERT
PC: 0x450, opcode: JUMPDEST
PC: 0x451, opcode: POP
PC: 0x452, opcode: PUSH2 0x0179
PC: 0x455, opcode: PUSH2 0x045f
PC: 0x458, opcode: CALLDATASIZE
PC: 0x459, opcode: PUSH1 0x04
PC: 0x45b, opcode: PUSH2 0x2c44
PC: 0x45e, opcode: JUMP
PC: 0x45f, opcode: JUMPDEST
PC: 0x460, opcode: PUSH2 0x1bb5
PC: 0x463, opcode: JUMP
Attack function
PC: 0x464, opcode: JUMPDEST
PC: 0x465, opcode: CALLVALUE
PC: 0x466, opcode: DUP1
PC: 0x467, opcode: ISZERO
PC: 0x468, opcode: PUSH2 0x0470
PC: 0x46b, opcode: JUMPI
if call value not zero, revert
PC: 0x46c, opcode: PUSH1 0x00
PC: 0x46e, opcode: DUP1
PC: 0x46f, opcode: REVERT
PC: 0x470, opcode: JUMPDEST
PC: 0x471, opcode: POP
PC: 0x472, opcode: PUSH2 0x01ce
PC: 0x475, opcode: PUSH2 0x047f. <- push return offset after jumping to 2d3e
PC: 0x478, opcode: CALLDATASIZE
PC: 0x479, opcode: PUSH1 0x04
PC: 0x47b, opcode: PUSH2 0x2d3e. <-appears to be function related to loading something from call data
PC: 0x47e, opcode: JUMP
PC: 0x47f, opcode: JUMPDEST
PC: 0x480, opcode: PUSH2 0x1c21
PC: 0x483, opcode: JUMP
PC: 0x484, opcode: JUMPDEST
PC: 0x485, opcode: CALLVALUE
PC: 0x486, opcode: DUP1
PC: 0x487, opcode: ISZERO
PC: 0x488, opcode: PUSH2 0x0490
PC: 0x48b, opcode: JUMPI
PC: 0x48c, opcode: PUSH1 0x00
PC: 0x48e, opcode: DUP1
PC: 0x48f, opcode: REVERT
PC: 0x490, opcode: JUMPDEST
PC: 0x491, opcode: POP
PC: 0x492, opcode: PUSH2 0x01ce
PC: 0x495, opcode: PUSH2 0x049f
PC: 0x498, opcode: CALLDATASIZE
PC: 0x499, opcode: PUSH1 0x04
PC: 0x49b, opcode: PUSH2 0x2d3e
PC: 0x49e, opcode: JUMP
PC: 0x49f, opcode: JUMPDEST
PC: 0x4a0, opcode: PUSH2 0x1d4d
PC: 0x4a3, opcode: JUMP
PC: 0x4a4, opcode: JUMPDEST
PC: 0x4a5, opcode: CALLVALUE
PC: 0x4a6, opcode: DUP1
PC: 0x4a7, opcode: ISZERO
PC: 0x4a8, opcode: PUSH2 0x04b0
PC: 0x4ab, opcode: JUMPI
PC: 0x4ac, opcode: PUSH1 0x00
PC: 0x4ae, opcode: DUP1
PC: 0x4af, opcode: REVERT
PC: 0x4b0, opcode: JUMPDEST
PC: 0x4b1, opcode: POP
PC: 0x4b2, opcode: PUSH2 0x0179
PC: 0x4b5, opcode: PUSH2 0x04bf
PC: 0x4b8, opcode: CALLDATASIZE
PC: 0x4b9, opcode: PUSH1 0x04
PC: 0x4bb, opcode: PUSH2 0x2c7e
PC: 0x4be, opcode: JUMP
PC: 0x4bf, opcode: JUMPDEST
PC: 0x4c0, opcode: PUSH2 0x1eb7
PC: 0x4c3, opcode: JUMP
PC: 0x4c4, opcode: JUMPDEST
PC: 0x4c5, opcode: PUSH1 0x04
PC: 0x4c7, opcode: DUP1
PC: 0x4c8, opcode: SLOAD
PC: 0x4c9, opcode: SWAP1
PC: 0x4ca, opcode: PUSH1 0x00
PC: 0x4cc, opcode: SWAP1
PC: 0x4cd, opcode: DUP2
PC: 0x4ce, opcode: PUSH2 0x04d6
PC: 0x4d1, opcode: DUP5
PC: 0x4d2, opcode: PUSH2 0x345c
PC: 0x4d5, opcode: JUMP
PC: 0x4d6, opcode: JUMPDEST
PC: 0x4d7, opcode: SWAP1
PC: 0x4d8, opcode: SWAP2
PC: 0x4d9, opcode: SSTORE
PC: 0x4da, opcode: POP
PC: 0x4db, opcode: PUSH1 0x00
PC: 0x4dd, opcode: JUMPDEST
PC: 0x4de, opcode: PUSH1 0x03
PC: 0x4e0, opcode: DUP4
PC: 0x4e1, opcode: DUP2
PC: 0x4e2, opcode: SLOAD
PC: 0x4e3, opcode: DUP2
PC: 0x4e4, opcode: LT
PC: 0x4e5, opcode: PUSH2 0x04f0
PC: 0x4e8, opcode: JUMPI
PC: 0x4e9, opcode: PUSH2 0x04f0
PC: 0x4ec, opcode: PUSH2 0x34ad
PC: 0x4ef, opcode: JUMP
PC: 0x4f0, opcode: JUMPDEST
PC: 0x4f1, opcode: SWAP1
PC: 0x4f2, opcode: PUSH1 0x00
PC: 0x4f4, opcode: MSTORE
PC: 0x4f5, opcode: PUSH1 0x20
PC: 0x4f7, opcode: PUSH1 0x00
PC: 0x4f9, opcode: SHA3
PC: 0x4fa, opcode: ADD
PC: 0x4fb, opcode: SLOAD
PC: 0x4fc, opcode: DUP2
PC: 0x4fd, opcode: LT
PC: 0x4fe, opcode: ISZERO
PC: 0x4ff, opcode: PUSH2 0x0663
PC: 0x502, opcode: JUMPI
PC: 0x503, opcode: PUSH1 0x02
PC: 0x505, opcode: DUP1
PC: 0x506, opcode: SLOAD
PC: 0x507, opcode: SWAP3
PC: 0x508, opcode: POP
PC: 0x509, opcode: PUSH1 0x00
PC: 0x50b, opcode: PUSH2 0x0513
PC: 0x50e, opcode: DUP5
PC: 0x50f, opcode: PUSH2 0x345c
PC: 0x512, opcode: JUMP
PC: 0x513, opcode: JUMPDEST
PC: 0x514, opcode: SWAP2
PC: 0x515, opcode: SWAP1
PC: 0x516, opcode: POP
PC: 0x517, opcode: DUP2
PC: 0x518, opcode: SWAP1
PC: 0x519, opcode: SSTORE
PC: 0x51a, opcode: POP
PC: 0x51b, opcode: PUSH1 0x00
PC: 0x51d, opcode: PUSH1 0x01
PC: 0x51f, opcode: DUP4
PC: 0x520, opcode: DUP2
PC: 0x521, opcode: SLOAD
PC: 0x522, opcode: DUP2
PC: 0x523, opcode: LT
PC: 0x524, opcode: PUSH2 0x052f
PC: 0x527, opcode: JUMPI
PC: 0x528, opcode: PUSH2 0x052f
PC: 0x52b, opcode: PUSH2 0x34ad
PC: 0x52e, opcode: JUMP
PC: 0x52f, opcode: JUMPDEST
PC: 0x530, opcode: PUSH1 0x00
PC: 0x532, opcode: SWAP2
PC: 0x533, opcode: DUP3
PC: 0x534, opcode: MSTORE
PC: 0x535, opcode: PUSH1 0x20
PC: 0x537, opcode: SWAP2
PC: 0x538, opcode: DUP3
PC: 0x539, opcode: SWAP1
PC: 0x53a, opcode: SHA3
PC: 0x53b, opcode: PUSH1 0x40
PC: 0x53d, opcode: DUP1
PC: 0x53e, opcode: MLOAD
PC: 0x53f, opcode: DUP1
PC: 0x540, opcode: DUP3
PC: 0x541, opcode: ADD
PC: 0x542, opcode: SWAP1
PC: 0x543, opcode: SWAP2
PC: 0x544, opcode: MSTORE
PC: 0x545, opcode: PUSH1 0x02
PC: 0x547, opcode: SWAP1
PC: 0x548, opcode: SWAP3
PC: 0x549, opcode: MUL
PC: 0x54a, opcode: ADD
PC: 0x54b, opcode: DUP1
PC: 0x54c, opcode: SLOAD
PC: 0x54d, opcode: PUSH1 0x01
PC: 0x54f, opcode: PUSH1 0x01
PC: 0x551, opcode: PUSH1 0xa0
PC: 0x553, opcode: SHL
PC: 0x554, opcode: SUB
PC: 0x555, opcode: AND
PC: 0x556, opcode: DUP3
PC: 0x557, opcode: MSTORE
PC: 0x558, opcode: PUSH1 0x01
PC: 0x55a, opcode: DUP2
PC: 0x55b, opcode: ADD
PC: 0x55c, opcode: DUP1
PC: 0x55d, opcode: SLOAD
PC: 0x55e, opcode: SWAP3
PC: 0x55f, opcode: SWAP4
PC: 0x560, opcode: SWAP2
PC: 0x561, opcode: SWAP3
PC: 0x562, opcode: SWAP2
PC: 0x563, opcode: DUP5
PC: 0x564, opcode: ADD
PC: 0x565, opcode: SWAP2
PC: 0x566, opcode: PUSH2 0x056e
PC: 0x569, opcode: SWAP1
PC: 0x56a, opcode: PUSH2 0x3421
PC: 0x56d, opcode: JUMP
PC: 0x56e, opcode: JUMPDEST
PC: 0x56f, opcode: DUP1
PC: 0x570, opcode: PUSH1 0x1f
PC: 0x572, opcode: ADD
PC: 0x573, opcode: PUSH1 0x20
PC: 0x575, opcode: DUP1
PC: 0x576, opcode: SWAP2
PC: 0x577, opcode: DIV
PC: 0x578, opcode: MUL
PC: 0x579, opcode: PUSH1 0x20
PC: 0x57b, opcode: ADD
PC: 0x57c, opcode: PUSH1 0x40
PC: 0x57e, opcode: MLOAD
PC: 0x57f, opcode: SWAP1
PC: 0x580, opcode: DUP2
PC: 0x581, opcode: ADD
PC: 0x582, opcode: PUSH1 0x40
PC: 0x584, opcode: MSTORE
PC: 0x585, opcode: DUP1
PC: 0x586, opcode: SWAP3
PC: 0x587, opcode: SWAP2
PC: 0x588, opcode: SWAP1
PC: 0x589, opcode: DUP2
PC: 0x58a, opcode: DUP2
PC: 0x58b, opcode: MSTORE
PC: 0x58c, opcode: PUSH1 0x20
PC: 0x58e, opcode: ADD
PC: 0x58f, opcode: DUP3
PC: 0x590, opcode: DUP1
PC: 0x591, opcode: SLOAD
PC: 0x592, opcode: PUSH2 0x059a
PC: 0x595, opcode: SWAP1
PC: 0x596, opcode: PUSH2 0x3421
PC: 0x599, opcode: JUMP
PC: 0x59a, opcode: JUMPDEST
PC: 0x59b, opcode: DUP1
PC: 0x59c, opcode: ISZERO
PC: 0x59d, opcode: PUSH2 0x05e7
PC: 0x5a0, opcode: JUMPI
PC: 0x5a1, opcode: DUP1
PC: 0x5a2, opcode: PUSH1 0x1f
PC: 0x5a4, opcode: LT
PC: 0x5a5, opcode: PUSH2 0x05bc
PC: 0x5a8, opcode: JUMPI
PC: 0x5a9, opcode: PUSH2 0x0100
PC: 0x5ac, opcode: DUP1
PC: 0x5ad, opcode: DUP4
PC: 0x5ae, opcode: SLOAD
PC: 0x5af, opcode: DIV
PC: 0x5b0, opcode: MUL
PC: 0x5b1, opcode: DUP4
PC: 0x5b2, opcode: MSTORE
PC: 0x5b3, opcode: SWAP2
PC: 0x5b4, opcode: PUSH1 0x20
PC: 0x5b6, opcode: ADD
PC: 0x5b7, opcode: SWAP2
PC: 0x5b8, opcode: PUSH2 0x05e7
PC: 0x5bb, opcode: JUMP
PC: 0x5bc, opcode: JUMPDEST
PC: 0x5bd, opcode: DUP3
PC: 0x5be, opcode: ADD
PC: 0x5bf, opcode: SWAP2
PC: 0x5c0, opcode: SWAP1
PC: 0x5c1, opcode: PUSH1 0x00
PC: 0x5c3, opcode: MSTORE
PC: 0x5c4, opcode: PUSH1 0x20
PC: 0x5c6, opcode: PUSH1 0x00
PC: 0x5c8, opcode: SHA3
PC: 0x5c9, opcode: SWAP1
PC: 0x5ca, opcode: JUMPDEST
PC: 0x5cb, opcode: DUP2
PC: 0x5cc, opcode: SLOAD
PC: 0x5cd, opcode: DUP2
PC: 0x5ce, opcode: MSTORE
PC: 0x5cf, opcode: SWAP1
PC: 0x5d0, opcode: PUSH1 0x01
PC: 0x5d2, opcode: ADD
PC: 0x5d3, opcode: SWAP1
PC: 0x5d4, opcode: PUSH1 0x20
PC: 0x5d6, opcode: ADD
PC: 0x5d7, opcode: DUP1
PC: 0x5d8, opcode: DUP4
PC: 0x5d9, opcode: GT
PC: 0x5da, opcode: PUSH2 0x05ca
PC: 0x5dd, opcode: JUMPI
PC: 0x5de, opcode: DUP3
PC: 0x5df, opcode: SWAP1
PC: 0x5e0, opcode: SUB
PC: 0x5e1, opcode: PUSH1 0x1f
PC: 0x5e3, opcode: AND
PC: 0x5e4, opcode: DUP3
PC: 0x5e5, opcode: ADD
PC: 0x5e6, opcode: SWAP2
PC: 0x5e7, opcode: JUMPDEST
PC: 0x5e8, opcode: POP
PC: 0x5e9, opcode: POP
PC: 0x5ea, opcode: POP
PC: 0x5eb, opcode: POP
PC: 0x5ec, opcode: POP
PC: 0x5ed, opcode: DUP2
PC: 0x5ee, opcode: MSTORE
PC: 0x5ef, opcode: POP
PC: 0x5f0, opcode: POP
PC: 0x5f1, opcode: SWAP1
PC: 0x5f2, opcode: POP
PC: 0x5f3, opcode: DUP1
PC: 0x5f4, opcode: PUSH1 0x00
PC: 0x5f6, opcode: ADD
PC: 0x5f7, opcode: MLOAD
PC: 0x5f8, opcode: PUSH1 0x01
PC: 0x5fa, opcode: PUSH1 0x01
PC: 0x5fc, opcode: PUSH1 0xa0
PC: 0x5fe, opcode: SHL
PC: 0x5ff, opcode: SUB
PC: 0x600, opcode: AND
PC: 0x601, opcode: DUP2
PC: 0x602, opcode: PUSH1 0x20
PC: 0x604, opcode: ADD
PC: 0x605, opcode: MLOAD
PC: 0x606, opcode: PUSH1 0x40
PC: 0x608, opcode: MLOAD
PC: 0x609, opcode: PUSH2 0x0612
PC: 0x60c, opcode: SWAP2
PC: 0x60d, opcode: SWAP1
PC: 0x60e, opcode: PUSH2 0x31ae
PC: 0x611, opcode: JUMP
PC: 0x612, opcode: JUMPDEST
PC: 0x613, opcode: PUSH1 0x00
PC: 0x615, opcode: PUSH1 0x40
PC: 0x617, opcode: MLOAD
PC: 0x618, opcode: DUP1
PC: 0x619, opcode: DUP4