-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken-mock.json
11937 lines (11937 loc) · 380 KB
/
token-mock.json
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
{
"TokenMock": {
"abi": [
{
"constant": true,
"inputs": [
{
"name": "_interfaceID",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"name": "",
"type": "bool"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "name",
"outputs": [
{
"name": "_name",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_spender",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"name": "_success",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"name": "_totalSupply",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_from",
"type": "address"
},
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"name": "_success",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "decimals",
"outputs": [
{
"name": "_decimals",
"type": "uint8"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "_owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"name": "_balance",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "symbol",
"outputs": [
{
"name": "_symbol",
"type": "string"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{
"name": "_to",
"type": "address"
},
{
"name": "_value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"name": "_success",
"type": "bool"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [
{
"name": "_owner",
"type": "address"
},
{
"name": "_spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"name": "_remaining",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"name": "_name",
"type": "string"
},
{
"name": "_symbol",
"type": "string"
},
{
"name": "_decimals",
"type": "uint8"
},
{
"name": "_supply",
"type": "uint256"
}
],
"payable": false,
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "_from",
"type": "address"
},
{
"indexed": true,
"name": "_to",
"type": "address"
},
{
"indexed": false,
"name": "_value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"name": "_owner",
"type": "address"
},
{
"indexed": true,
"name": "_spender",
"type": "address"
},
{
"indexed": false,
"name": "_value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
}
],
"devdoc": {
"details": "This is an example contract implementation of Token.",
"methods": {
"allowance(address,address)": {
"details": "Returns the amount which _spender is still allowed to withdraw from _owner.",
"params": {
"_owner": "The address of the account owning tokens.",
"_spender": "The address of the account able to transfer the tokens."
}
},
"approve(address,uint256)": {
"details": "Allows _spender to withdraw from your account multiple times, up to the _value amount. If this function is called again it overwrites the current allowance with _value.",
"params": {
"_spender": "The address of the account able to transfer the tokens.",
"_value": "The amount of tokens to be approved for transfer."
}
},
"balanceOf(address)": {
"details": "Returns the account balance of another account with address _owner.",
"params": {
"_owner": "The address from which the balance will be retrieved."
}
},
"decimals()": {
"details": "Returns the number of decimals the token uses."
},
"name()": {
"details": "Returns the name of the token."
},
"supportsInterface(bytes4)": {
"details": "Function to check which interfaces are suported by this contract.",
"params": {
"_interfaceID": "Id of the interface."
}
},
"symbol()": {
"details": "Returns the symbol of the token."
},
"totalSupply()": {
"details": "Returns the total token supply."
},
"transfer(address,uint256)": {
"details": "Transfers _value amount of tokens to address _to, and MUST fire the Transfer event. The function SHOULD throw if the message caller's account balance does not have enough tokens to spend.",
"params": {
"_to": "The address of the recipient.",
"_value": "The amount of token to be transferred."
}
},
"transferFrom(address,address,uint256)": {
"details": "Transfers _value amount of tokens from address _from to address _to, and MUST fire the Transfer event.",
"params": {
"_from": "The address of the sender.",
"_to": "The address of the recipient.",
"_value": "The amount of token to be transferred."
}
}
}
},
"evm": {
"assembly": " /* \"./src/contracts/mocks/token-mock.sol\":117:501 contract TokenMock is... */\n mstore(0x40, 0x80)\n /* \"./src/contracts/mocks/token-mock.sol\":152:499 constructor(... */\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_1\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x00\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\ntag_1:\n /* \"./src/contracts/mocks/token-mock.sol\":152:499 constructor(... */\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n add\n dup1\n 0x40\n mstore\n /* \"--CODEGEN--\":13:16 */\n 0x80\n /* \"--CODEGEN--\":8:11 */\n dup2\n /* \"--CODEGEN--\":5:17 */\n lt\n /* \"--CODEGEN--\":2:4 */\n iszero\n tag_2\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x00\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":2:4 */\ntag_2:\n /* \"./src/contracts/mocks/token-mock.sol\":152:499 constructor(... */\n dup2\n add\n swap1\n dup1\n dup1\n mload\n /* \"--CODEGEN--\":19:30 */\n 0x0100000000\n /* \"--CODEGEN--\":14:17 */\n dup2\n /* \"--CODEGEN--\":11:31 */\n gt\n /* \"--CODEGEN--\":8:10 */\n iszero\n tag_3\n jumpi\n /* \"--CODEGEN--\":44:45 */\n 0x00\n /* \"--CODEGEN--\":41:42 */\n dup1\n /* \"--CODEGEN--\":34:46 */\n revert\n /* \"--CODEGEN--\":8:10 */\ntag_3:\n /* \"--CODEGEN--\":62:83 */\n dup3\n add\n /* \"--CODEGEN--\":123:127 */\n 0x20\n /* \"--CODEGEN--\":114:128 */\n dup2\n add\n /* \"--CODEGEN--\":138:169 */\n dup5\n dup2\n gt\n /* \"--CODEGEN--\":135:137 */\n iszero\n tag_4\n jumpi\n /* \"--CODEGEN--\":182:183 */\n 0x00\n /* \"--CODEGEN--\":179:180 */\n dup1\n /* \"--CODEGEN--\":172:184 */\n revert\n /* \"--CODEGEN--\":135:137 */\ntag_4:\n /* \"--CODEGEN--\":213:223 */\n dup2\n mload\n /* \"--CODEGEN--\":261:272 */\n 0x0100000000\n /* \"--CODEGEN--\":244:273 */\n dup2\n gt\n /* \"--CODEGEN--\":285:328 */\n dup3\n dup3\n add\n /* \"--CODEGEN--\":282:340 */\n dup8\n lt\n /* \"--CODEGEN--\":233:348 */\n or\n /* \"--CODEGEN--\":230:232 */\n iszero\n tag_5\n jumpi\n /* \"--CODEGEN--\":361:362 */\n 0x00\n /* \"--CODEGEN--\":358:359 */\n dup1\n /* \"--CODEGEN--\":351:363 */\n revert\n /* \"--CODEGEN--\":230:232 */\ntag_5:\n /* \"--CODEGEN--\":0:372 */\n pop\n pop\n /* \"./src/contracts/mocks/token-mock.sol\":152:499 constructor(... */\n swap3\n swap2\n swap1\n 0x20\n add\n dup1\n mload\n /* \"--CODEGEN--\":19:30 */\n 0x0100000000\n /* \"--CODEGEN--\":14:17 */\n dup2\n /* \"--CODEGEN--\":11:31 */\n gt\n /* \"--CODEGEN--\":8:10 */\n iszero\n tag_6\n jumpi\n /* \"--CODEGEN--\":44:45 */\n 0x00\n /* \"--CODEGEN--\":41:42 */\n dup1\n /* \"--CODEGEN--\":34:46 */\n revert\n /* \"--CODEGEN--\":8:10 */\ntag_6:\n /* \"--CODEGEN--\":62:83 */\n dup3\n add\n /* \"--CODEGEN--\":123:127 */\n 0x20\n /* \"--CODEGEN--\":114:128 */\n dup2\n add\n /* \"--CODEGEN--\":138:169 */\n dup5\n dup2\n gt\n /* \"--CODEGEN--\":135:137 */\n iszero\n tag_7\n jumpi\n /* \"--CODEGEN--\":182:183 */\n 0x00\n /* \"--CODEGEN--\":179:180 */\n dup1\n /* \"--CODEGEN--\":172:184 */\n revert\n /* \"--CODEGEN--\":135:137 */\ntag_7:\n /* \"--CODEGEN--\":213:223 */\n dup2\n mload\n /* \"--CODEGEN--\":261:272 */\n 0x0100000000\n /* \"--CODEGEN--\":244:273 */\n dup2\n gt\n /* \"--CODEGEN--\":285:328 */\n dup3\n dup3\n add\n /* \"--CODEGEN--\":282:340 */\n dup8\n lt\n /* \"--CODEGEN--\":233:348 */\n or\n /* \"--CODEGEN--\":230:232 */\n iszero\n tag_8\n jumpi\n /* \"--CODEGEN--\":361:362 */\n 0x00\n /* \"--CODEGEN--\":358:359 */\n dup1\n /* \"--CODEGEN--\":351:363 */\n revert\n /* \"--CODEGEN--\":230:232 */\ntag_8:\n pop\n pop\n /* \"./src/contracts/mocks/token-mock.sol\":152:499 constructor(... */\n 0x20\n dup3\n dup2\n add\n mload\n 0x40\n swap1\n swap4\n add\n mload\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":415:434 */\n 0x00\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":415:446 */\n dup1\n dup4\n mstore\n 0x67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":415:453 */\n dup1\n sload\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":449:453 */\n 0x01\n not(0xff)\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":415:453 */\n swap2\n dup3\n and\n dup2\n or\n swap1\n swap3\n sstore\n /* \"./src/contracts/token.sol\":1583:1614 supportedInterfaces[0x36372b07] */\n 0x9047944217cf7a5a57cc49e67181a64066b571778b37f1b501b5b2483c404e74\n /* \"./src/contracts/token.sol\":1583:1621 supportedInterfaces[0x36372b07] = true */\n dup1\n sload\n dup3\n and\n dup4\n or\n swap1\n sstore\n /* \"./src/contracts/token.sol\":1636:1667 supportedInterfaces[0x06fdde03] */\n 0xda3cefe610fb16fb609e83632d9bfe397c73a53e0e3889c3c671f29203793f82\n /* \"./src/contracts/token.sol\":1636:1674 supportedInterfaces[0x06fdde03] = true */\n dup1\n sload\n dup3\n and\n dup4\n or\n swap1\n sstore\n /* \"./src/contracts/token.sol\":1694:1725 supportedInterfaces[0x95d89b41] */\n 0x0648b88cb4f83f2d3a24d50bb67a4b7e9cfc7f04811e84ba831e24e1b44237e2\n /* \"./src/contracts/token.sol\":1694:1732 supportedInterfaces[0x95d89b41] = true */\n dup1\n sload\n dup3\n and\n dup4\n or\n swap1\n sstore\n /* \"./src/contracts/token.sol\":1754:1785 supportedInterfaces[0x313ce567] */\n 0x313ce56700000000000000000000000000000000000000000000000000000000\n swap1\n swap3\n mstore\n 0x57c3f48cc00ca48466de578a46bac144b80c7e62e6b209102e549439d6cf9afa\n /* \"./src/contracts/token.sol\":1754:1792 supportedInterfaces[0x313ce567] = true */\n dup1\n sload\n swap1\n swap3\n and\n dup2\n or\n swap1\n swap2\n sstore\n /* \"./src/contracts/mocks/token-mock.sol\":281:298 tokenName = _name */\n dup8\n mload\n /* \"./src/contracts/mocks/token-mock.sol\":152:499 constructor(... */\n swap4\n swap7\n pop\n swap4\n swap5\n pop\n swap3\n /* \"./src/contracts/mocks/token-mock.sol\":281:298 tokenName = _name */\n tag_15\n swap3\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":449:453 */\n swap1\n swap2\n /* \"./src/contracts/mocks/token-mock.sol\":281:298 tokenName = _name */\n dup8\n add\n swap1\n tag_16\n jump\t// in\ntag_15:\n pop\n /* \"./src/contracts/mocks/token-mock.sol\":304:325 tokenSymbol = _symbol */\n dup3\n mload\n tag_17\n swap1\n /* \"./src/contracts/mocks/token-mock.sol\":304:315 tokenSymbol */\n 0x02\n swap1\n /* \"./src/contracts/mocks/token-mock.sol\":304:325 tokenSymbol = _symbol */\n 0x20\n dup7\n add\n swap1\n tag_16\n jump\t// in\ntag_17:\n pop\n /* \"./src/contracts/mocks/token-mock.sol\":331:344 tokenDecimals */\n 0x03\n /* \"./src/contracts/mocks/token-mock.sol\":331:356 tokenDecimals = _decimals */\n dup1\n sload\n not(0xff)\n and\n 0xff\n dup5\n and\n or\n swap1\n sstore\n /* \"./src/contracts/mocks/token-mock.sol\":362:378 tokenTotalSupply */\n 0x04\n /* \"./src/contracts/mocks/token-mock.sol\":362:388 tokenTotalSupply = _supply */\n dup2\n swap1\n sstore\n /* \"./src/contracts/mocks/token-mock.sol\":403:413 msg.sender */\n caller\n 0x00\n /* \"./src/contracts/mocks/token-mock.sol\":394:414 balances[msg.sender] */\n dup2\n dup2\n mstore\n /* \"./src/contracts/mocks/token-mock.sol\":394:402 balances */\n 0x05\n /* \"./src/contracts/mocks/token-mock.sol\":394:414 balances[msg.sender] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \"./src/contracts/mocks/token-mock.sol\":394:433 balances[msg.sender] = tokenTotalSupply */\n dup6\n swap1\n sstore\n /* \"./src/contracts/mocks/token-mock.sol\":444:494 Transfer(address(0), msg.sender, tokenTotalSupply) */\n dup1\n mload\n dup6\n dup2\n mstore\n swap1\n mload\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n swap3\n swap2\n dup2\n swap1\n sub\n swap1\n swap2\n add\n swap1\n log3\n /* \"./src/contracts/mocks/token-mock.sol\":152:499 constructor(... */\n pop\n pop\n pop\n pop\n /* \"./src/contracts/mocks/token-mock.sol\":117:501 contract TokenMock is... */\n jump(tag_18)\ntag_16:\n dup3\n dup1\n sload\n 0x01\n dup2\n 0x01\n and\n iszero\n 0x0100\n mul\n sub\n and\n 0x02\n swap1\n div\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n 0x1f\n lt\n tag_20\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_22)\ntag_20:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_22\n jumpi\n swap2\n dup3\n add\ntag_21:\n dup3\n dup2\n gt\n iszero\n tag_22\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_21)\ntag_22:\n pop\n tag_23\n swap3\n swap2\n pop\n tag_24\n jump\t// in\ntag_23:\n pop\n swap1\n jump\t// out\ntag_24:\n tag_25\n swap2\n swap1\ntag_26:\n dup1\n dup3\n gt\n iszero\n tag_23\n jumpi\n 0x00\n dup2\n sstore\n 0x01\n add\n jump(tag_26)\ntag_25:\n swap1\n jump\t// out\ntag_18:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"./src/contracts/mocks/token-mock.sol\":117:501 contract TokenMock is... */\n mstore(0x40, 0x80)\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_1\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x00\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\n tag_1:\n /* \"./src/contracts/mocks/token-mock.sol\":117:501 contract TokenMock is... */\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n calldataload(0x00)\n 0x0100000000000000000000000000000000000000000000000000000000\n swap1\n div\n dup1\n 0x313ce567\n gt\n tag_13\n jumpi\n dup1\n 0x313ce567\n eq\n tag_8\n jumpi\n dup1\n 0x70a08231\n eq\n tag_9\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_10\n jumpi\n dup1\n 0xa9059cbb\n eq\n tag_11\n jumpi\n dup1\n 0xdd62ed3e\n eq\n tag_12\n jumpi\n jump(tag_2)\n tag_13:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_5\n jumpi\n dup1\n 0x18160ddd\n eq\n tag_6\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":606:756 */\n tag_3:\n tag_14\n 0x04\n dup1\n calldatasize\n sub\n /* \"--CODEGEN--\":13:15 */\n 0x20\n /* \"--CODEGEN--\":8:11 */\n dup2\n /* \"--CODEGEN--\":5:16 */\n lt\n /* \"--CODEGEN--\":2:4 */\n iszero\n tag_15\n jumpi\n /* \"--CODEGEN--\":29:30 */\n 0x00\n /* \"--CODEGEN--\":26:27 */\n dup1\n /* \"--CODEGEN--\":19:31 */\n revert\n /* \"--CODEGEN--\":2:4 */\n tag_15:\n pop\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":606:756 */\n calldataload\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n tag_16\n jump\t// in\n tag_14:\n 0x40\n dup1\n mload\n swap2\n iszero\n iszero\n dup3\n mstore\n mload\n swap1\n dup2\n swap1\n sub\n 0x20\n add\n swap1\n return\n /* \"./src/contracts/token.sol\":1872:1974 function name()... */\n tag_4:\n tag_17\n tag_18\n jump\t// in\n tag_17:\n 0x40\n dup1\n mload\n 0x20\n dup1\n dup3\n mstore\n dup4\n mload\n dup2\n dup4\n add\n mstore\n dup4\n mload\n swap2\n swap3\n dup4\n swap3\n swap1\n dup4\n add\n swap2\n dup6\n add\n swap1\n dup1\n dup4\n dup4\n 0x00\n /* \"--CODEGEN--\":8:108 */\n tag_19:\n /* \"--CODEGEN--\":33:36 */\n dup4\n /* \"--CODEGEN--\":30:31 */\n dup2\n /* \"--CODEGEN--\":27:37 */\n lt\n /* \"--CODEGEN--\":8:108 */\n iszero\n tag_21\n jumpi\n /* \"--CODEGEN--\":90:101 */\n dup2\n dup2\n add\n /* \"--CODEGEN--\":84:102 */\n mload\n /* \"--CODEGEN--\":71:82 */\n dup4\n dup3\n add\n /* \"--CODEGEN--\":64:103 */\n mstore\n /* \"--CODEGEN--\":52:54 */\n 0x20\n /* \"--CODEGEN--\":45:55 */\n add\n /* \"--CODEGEN--\":8:108 */\n jump(tag_19)\n tag_21:\n /* \"--CODEGEN--\":12:26 */\n pop\n /* \"./src/contracts/token.sol\":1872:1974 function name()... */\n pop\n pop\n pop\n swap1\n pop\n swap1\n dup2\n add\n swap1\n 0x1f\n and\n dup1\n iszero\n tag_22\n jumpi\n dup1\n dup3\n sub\n dup1\n mload\n 0x01\n dup4\n 0x20\n sub\n 0x0100\n exp\n sub\n not\n and\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n tag_22:\n pop\n swap3\n pop\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"./src/contracts/token.sol\":4784:5008 function approve(... */\n tag_5:\n tag_14\n 0x04\n dup1\n calldatasize\n sub\n /* \"--CODEGEN--\":13:15 */\n 0x40\n /* \"--CODEGEN--\":8:11 */\n dup2\n /* \"--CODEGEN--\":5:16 */\n lt\n /* \"--CODEGEN--\":2:4 */\n iszero\n tag_24\n jumpi\n /* \"--CODEGEN--\":29:30 */\n 0x00\n /* \"--CODEGEN--\":26:27 */\n dup1\n /* \"--CODEGEN--\":19:31 */\n revert\n /* \"--CODEGEN--\":2:4 */\n tag_24:\n pop\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":4784:5008 function approve(... */\n dup2\n calldataload\n and\n swap1\n 0x20\n add\n calldataload\n tag_25\n jump\t// in\n /* \"./src/contracts/token.sol\":2384:2508 function totalSupply()... */\n tag_6:\n tag_26\n tag_27\n jump\t// in\n tag_26:\n 0x40\n dup1\n mload\n swap2\n dup3\n mstore\n mload\n swap1\n dup2\n swap1\n sub\n 0x20\n add\n swap1\n return\n /* \"./src/contracts/token.sol\":5291:5785 function transferFrom(... */\n tag_7:\n tag_14\n 0x04\n dup1\n calldatasize\n sub\n /* \"--CODEGEN--\":13:15 */\n 0x60\n /* \"--CODEGEN--\":8:11 */\n dup2\n /* \"--CODEGEN--\":5:16 */\n lt\n /* \"--CODEGEN--\":2:4 */\n iszero\n tag_29\n jumpi\n /* \"--CODEGEN--\":29:30 */\n 0x00\n /* \"--CODEGEN--\":26:27 */\n dup1\n /* \"--CODEGEN--\":19:31 */\n revert\n /* \"--CODEGEN--\":2:4 */\n tag_29:\n pop\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":5291:5785 function transferFrom(... */\n dup2\n calldataload\n dup2\n and\n swap2\n 0x20\n dup2\n add\n calldataload\n swap1\n swap2\n and\n swap1\n 0x40\n add\n calldataload\n tag_30\n jump\t// in\n /* \"./src/contracts/token.sol\":2216:2326 function decimals()... */\n tag_8:\n tag_31\n tag_32\n jump\t// in\n tag_31:\n 0x40\n dup1\n mload\n 0xff\n swap1\n swap3\n and\n dup3\n mstore\n mload\n swap1\n dup2\n swap1\n sub\n 0x20\n add\n swap1\n return\n /* \"./src/contracts/token.sol\":2675:2811 function balanceOf(... */\n tag_9:\n tag_26\n 0x04\n dup1\n calldatasize\n sub\n /* \"--CODEGEN--\":13:15 */\n 0x20\n /* \"--CODEGEN--\":8:11 */\n dup2\n /* \"--CODEGEN--\":5:16 */\n lt\n /* \"--CODEGEN--\":2:4 */\n iszero\n tag_34\n jumpi\n /* \"--CODEGEN--\":29:30 */\n 0x00\n /* \"--CODEGEN--\":26:27 */\n dup1\n /* \"--CODEGEN--\":19:31 */\n revert\n /* \"--CODEGEN--\":2:4 */\n tag_34:\n pop\n /* \"./src/contracts/token.sol\":2675:2811 function balanceOf(... */\n calldataload\n sub(exp(0x02, 0xa0), 0x01)\n and\n tag_35\n jump\t// in\n /* \"./src/contracts/token.sol\":2033:2143 function symbol()... */\n tag_10:\n tag_17\n tag_37\n jump\t// in\n /* \"./src/contracts/token.sol\":3550:3895 function transfer(... */\n tag_11:\n tag_14\n 0x04\n dup1\n calldatasize\n sub\n /* \"--CODEGEN--\":13:15 */\n 0x40\n /* \"--CODEGEN--\":8:11 */\n dup2\n /* \"--CODEGEN--\":5:16 */\n lt\n /* \"--CODEGEN--\":2:4 */\n iszero\n tag_43\n jumpi\n /* \"--CODEGEN--\":29:30 */\n 0x00\n /* \"--CODEGEN--\":26:27 */\n dup1\n /* \"--CODEGEN--\":19:31 */\n revert\n /* \"--CODEGEN--\":2:4 */\n tag_43:\n pop\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":3550:3895 function transfer(... */\n dup2\n calldataload\n and\n swap1\n 0x20\n add\n calldataload\n tag_44\n jump\t// in\n /* \"./src/contracts/token.sol\":3051:3222 function allowance(... */\n tag_12:\n tag_26\n 0x04\n dup1\n calldatasize\n sub\n /* \"--CODEGEN--\":13:15 */\n 0x40\n /* \"--CODEGEN--\":8:11 */\n dup2\n /* \"--CODEGEN--\":5:16 */\n lt\n /* \"--CODEGEN--\":2:4 */\n iszero\n tag_46\n jumpi\n /* \"--CODEGEN--\":29:30 */\n 0x00\n /* \"--CODEGEN--\":26:27 */\n dup1\n /* \"--CODEGEN--\":19:31 */\n revert\n /* \"--CODEGEN--\":2:4 */\n tag_46:\n pop\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":3051:3222 function allowance(... */\n dup2\n calldataload\n dup2\n and\n swap2\n 0x20\n add\n calldataload\n and\n tag_47\n jump\t// in\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":606:756 */\n tag_16:\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":718:751 */\n and\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":697:701 */\n 0x00\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":718:751 */\n swap1\n dup2\n mstore\n 0x20\n dup2\n swap1\n mstore\n 0x40\n swap1\n keccak256\n sload\n 0xff\n and\n swap1\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/utils/supports-interface.sol\":606:756 */\n jump\t// out\n /* \"./src/contracts/token.sol\":1872:1974 function name()... */\n tag_18:\n /* \"./src/contracts/token.sol\":1960:1969 tokenName */\n 0x01\n /* \"./src/contracts/token.sol\":1952:1969 _name = tokenName */\n dup1\n sload\n 0x40\n dup1\n mload\n 0x20\n 0x1f\n 0x02\n not(0x00)\n 0x0100\n dup8\n dup10\n and\n iszero\n mul\n add\n swap1\n swap6\n and\n swap5\n swap1\n swap5\n div\n swap4\n dup5\n add\n dup2\n swap1\n div\n dup2\n mul\n dup3\n add\n dup2\n add\n swap1\n swap3\n mstore\n dup3\n dup2\n mstore\n /* \"./src/contracts/token.sol\":1923:1942 string memory _name */\n 0x60\n swap4\n /* \"./src/contracts/token.sol\":1952:1969 _name = tokenName */\n swap1\n swap3\n /* \"./src/contracts/token.sol\":1960:1969 tokenName */\n swap1\n swap2\n /* \"./src/contracts/token.sol\":1952:1969 _name = tokenName */\n dup4\n add\n /* \"./src/contracts/token.sol\":1960:1969 tokenName */\n dup3\n /* \"./src/contracts/token.sol\":1952:1969 _name = tokenName */\n dup3\n dup1\n iszero\n tag_50\n jumpi\n dup1\n 0x1f\n lt\n tag_51\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_50)\n tag_51:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_52:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_52\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_50:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"./src/contracts/token.sol\":1872:1974 function name()... */\n swap1\n jump\t// out\n /* \"./src/contracts/token.sol\":4784:5008 function approve(... */\n tag_25:\n /* \"./src/contracts/token.sol\":4902:4912 msg.sender */\n caller\n /* \"./src/contracts/token.sol\":4871:4884 bool _success */\n 0x00\n /* \"./src/contracts/token.sol\":4894:4913 allowed[msg.sender] */\n dup2\n dup2\n mstore\n /* \"./src/contracts/token.sol\":4894:4901 allowed */\n 0x06\n /* \"./src/contracts/token.sol\":4894:4913 allowed[msg.sender] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":4894:4923 allowed[msg.sender][_spender] */\n dup8\n and\n dup1\n dup6\n mstore\n swap1\n dup4\n mstore\n dup2\n dup5\n keccak256\n /* \"./src/contracts/token.sol\":4894:4932 allowed[msg.sender][_spender] = _value */\n dup7\n swap1\n sstore\n /* \"./src/contracts/token.sol\":4944:4982 Approval(msg.sender, _spender, _value) */\n dup2\n mload\n dup7\n dup2\n mstore\n swap2\n mload\n /* \"./src/contracts/token.sol\":4871:4884 bool _success */\n swap4\n swap5\n /* \"./src/contracts/token.sol\":4894:4923 allowed[msg.sender][_spender] */\n swap1\n swap4\n /* \"./src/contracts/token.sol\":4902:4912 msg.sender */\n swap1\n swap3\n /* \"./src/contracts/token.sol\":4944:4982 Approval(msg.sender, _spender, _value) */\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n swap3\n dup3\n swap1\n sub\n add\n swap1\n log3\n pop\n /* \"./src/contracts/token.sol\":4999:5003 true */\n 0x01\n swap3\n /* \"./src/contracts/token.sol\":4784:5008 function approve(... */\n swap2\n pop\n pop\n jump\t// out\n /* \"./src/contracts/token.sol\":2384:2508 function totalSupply()... */\n tag_27:\n /* \"./src/contracts/token.sol\":2487:2503 tokenTotalSupply */\n sload(0x04)\n swap1\n /* \"./src/contracts/token.sol\":2384:2508 function totalSupply()... */\n jump\t// out\n /* \"./src/contracts/token.sol\":5291:5785 function transferFrom(... */\n tag_30:\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":5438:5453 balances[_from] */\n dup4\n and\n /* \"./src/contracts/token.sol\":5397:5410 bool _success */\n 0x00\n /* \"./src/contracts/token.sol\":5438:5453 balances[_from] */\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":5438:5446 balances */\n 0x05\n /* \"./src/contracts/token.sol\":5438:5453 balances[_from] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n sload\n /* \"./src/contracts/token.sol\":5455:5473 NOT_ENOUGH_BALANCE */\n dup2\n mload\n dup1\n dup4\n add\n swap1\n swap3\n mstore\n 0x06\n dup3\n mstore\n 0x3030313030310000000000000000000000000000000000000000000000000000\n swap3\n dup3\n add\n swap3\n swap1\n swap3\n mstore\n swap1\n /* \"./src/contracts/token.sol\":5428:5453 _value <= balances[_from] */\n dup4\n gt\n iszero\n /* \"./src/contracts/token.sol\":5420:5474 require(_value <= balances[_from], NOT_ENOUGH_BALANCE) */\n tag_56\n jumpi\n mload(0x40)\n mul(0x461bcd, exp(0x02, 0xe5))\n dup2\n mstore\n 0x04\n add\n dup1\n dup1\n 0x20\n add\n dup3\n dup2\n sub\n dup3\n mstore\n dup4\n dup2\n dup2\n mload\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n dup1\n dup4\n dup4\n /* \"--CODEGEN--\":23:24 */\n 0x00\n /* \"--CODEGEN--\":8:108 */\n tag_57:\n /* \"--CODEGEN--\":33:36 */\n dup4\n /* \"--CODEGEN--\":30:31 */\n dup2\n /* \"--CODEGEN--\":27:37 */\n lt\n /* \"--CODEGEN--\":8:108 */\n iszero\n tag_59\n jumpi\n /* \"--CODEGEN--\":90:101 */\n dup2\n dup2\n add\n /* \"--CODEGEN--\":84:102 */\n mload\n /* \"--CODEGEN--\":71:82 */\n dup4\n dup3\n add\n /* \"--CODEGEN--\":64:103 */\n mstore\n /* \"--CODEGEN--\":52:54 */\n 0x20\n /* \"--CODEGEN--\":45:55 */\n add\n /* \"--CODEGEN--\":8:108 */\n jump(tag_57)\n tag_59:\n /* \"--CODEGEN--\":12:26 */\n pop\n /* \"./src/contracts/token.sol\":5420:5474 require(_value <= balances[_from], NOT_ENOUGH_BALANCE) */\n pop\n pop\n pop\n swap1\n pop\n swap1\n dup2\n add\n swap1\n 0x1f\n and\n dup1\n iszero\n tag_60\n jumpi\n dup1\n dup3\n sub\n dup1\n mload\n 0x01\n dup4\n 0x20\n sub\n 0x0100\n exp\n sub\n not\n and\n dup2\n mstore\n 0x20\n add\n swap2\n pop\n tag_60:\n pop\n swap3\n pop\n pop\n pop\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_56:\n pop\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":5498:5512 allowed[_from] */\n dup5\n and\n 0x00\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":5498:5505 allowed */\n 0x06\n /* \"./src/contracts/token.sol\":5498:5512 allowed[_from] */\n 0x20\n dup2\n dup2\n mstore\n 0x40\n dup1\n dup5\n keccak256\n /* \"./src/contracts/token.sol\":5513:5523 msg.sender */\n caller\n /* \"./src/contracts/token.sol\":5498:5524 allowed[_from][msg.sender] */\n dup6\n mstore\n dup3\n mstore\n swap3\n dup4\n swap1\n keccak256\n sload\n /* \"./src/contracts/token.sol\":5526:5546 NOT_ENOUGH_ALLOWANCE */\n dup4\n mload\n dup1\n dup6\n add\n swap1\n swap5\n mstore\n swap2\n dup4\n mstore\n 0x3030313030320000000000000000000000000000000000000000000000000000\n swap1\n dup4\n add\n mstore\n /* \"./src/contracts/token.sol\":5488:5524 _value <= allowed[_from][msg.sender] */\n dup4\n gt\n iszero\n /* \"./src/contracts/token.sol\":5480:5547 require(_value <= allowed[_from][msg.sender], NOT_ENOUGH_ALLOWANCE) */\n tag_61\n jumpi\n mload(0x40)\n mul(0x461bcd, exp(0x02, 0xe5))\n dup2\n mstore\n 0x20\n 0x04\n dup3\n add\n dup2\n dup2\n mstore\n dup4\n mload\n 0x24\n dup5\n add\n mstore\n dup4\n mload\n swap1\n swap3\n dup4\n swap3\n 0x44\n swap1\n swap2\n add\n swap2\n swap1\n dup6\n add\n swap1\n dup1\n dup4\n dup4\n 0x00\n /* \"--CODEGEN--\":27:37 */\n dup4\n iszero\n /* \"--CODEGEN--\":8:108 */\n tag_59\n jumpi\n /* \"--CODEGEN--\":90:101 */\n dup2\n dup2\n add\n /* \"--CODEGEN--\":84:102 */\n mload\n /* \"--CODEGEN--\":71:82 */\n dup4\n dup3\n add\n /* \"--CODEGEN--\":64:103 */\n mstore\n /* \"--CODEGEN--\":52:54 */\n 0x20\n /* \"--CODEGEN--\":45:55 */\n add\n /* \"--CODEGEN--\":8:108 */\n jump(tag_57)\n /* \"./src/contracts/token.sol\":5480:5547 require(_value <= allowed[_from][msg.sender], NOT_ENOUGH_ALLOWANCE) */\n tag_61:\n pop\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":5572:5587 balances[_from] */\n dup5\n and\n 0x00\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":5572:5580 balances */\n 0x05\n /* \"./src/contracts/token.sol\":5572:5587 balances[_from] */\n 0x20\n mstore\n 0x40\n swap1\n keccak256\n sload\n /* \"./src/contracts/token.sol\":5572:5599 balances[_from].sub(_value) */\n tag_66\n swap1\n /* \"./src/contracts/token.sol\":5592:5598 _value */\n dup4\n /* \"./src/contracts/token.sol\":5572:5599 balances[_from].sub(_value) */\n 0xffffffff\n /* \"./src/contracts/token.sol\":5572:5591 balances[_from].sub */\n tag_67\n /* \"./src/contracts/token.sol\":5572:5599 balances[_from].sub(_value) */\n and\n jump\t// in\n tag_66:\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":5554:5569 balances[_from] */\n dup1\n dup7\n and\n 0x00\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":5554:5562 balances */\n 0x05\n /* \"./src/contracts/token.sol\":5554:5569 balances[_from] */\n 0x20\n mstore\n 0x40\n dup1\n dup3\n keccak256\n /* \"./src/contracts/token.sol\":5554:5599 balances[_from] = balances[_from].sub(_value) */\n swap4\n swap1\n swap4\n sstore\n /* \"./src/contracts/token.sol\":5621:5634 balances[_to] */\n swap1\n dup6\n and\n dup2\n mstore\n keccak256\n sload\n /* \"./src/contracts/token.sol\":5621:5646 balances[_to].add(_value) */\n tag_68\n swap1\n /* \"./src/contracts/token.sol\":5639:5645 _value */\n dup4\n /* \"./src/contracts/token.sol\":5621:5646 balances[_to].add(_value) */\n 0xffffffff\n /* \"./src/contracts/token.sol\":5621:5638 balances[_to].add */\n tag_69\n /* \"./src/contracts/token.sol\":5621:5646 balances[_to].add(_value) */\n and\n jump\t// in\n tag_68:\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":5605:5618 balances[_to] */\n dup1\n dup6\n and\n 0x00\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":5605:5613 balances */\n 0x05\n /* \"./src/contracts/token.sol\":5605:5618 balances[_to] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \"./src/contracts/token.sol\":5605:5646 balances[_to] = balances[_to].add(_value) */\n swap5\n swap1\n swap5\n sstore\n /* \"./src/contracts/token.sol\":5681:5695 allowed[_from] */\n swap2\n dup8\n and\n dup2\n mstore\n /* \"./src/contracts/token.sol\":5681:5688 allowed */\n 0x06\n /* \"./src/contracts/token.sol\":5681:5695 allowed[_from] */\n dup3\n mstore\n dup3\n dup2\n keccak256\n /* \"./src/contracts/token.sol\":5696:5706 msg.sender */\n caller\n /* \"./src/contracts/token.sol\":5681:5707 allowed[_from][msg.sender] */\n dup3\n mstore\n swap1\n swap2\n mstore\n keccak256\n sload\n /* \"./src/contracts/token.sol\":5681:5719 allowed[_from][msg.sender].sub(_value) */\n tag_70\n swap1\n /* \"./src/contracts/token.sol\":5712:5718 _value */\n dup4\n /* \"./src/contracts/token.sol\":5681:5719 allowed[_from][msg.sender].sub(_value) */\n 0xffffffff\n /* \"./src/contracts/token.sol\":5681:5711 allowed[_from][msg.sender].sub */\n tag_67\n /* \"./src/contracts/token.sol\":5681:5719 allowed[_from][msg.sender].sub(_value) */\n and\n jump\t// in\n tag_70:\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":5652:5666 allowed[_from] */\n dup1\n dup7\n and\n 0x00\n dup2\n dup2\n mstore\n /* \"./src/contracts/token.sol\":5652:5659 allowed */\n 0x06\n /* \"./src/contracts/token.sol\":5652:5666 allowed[_from] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \"./src/contracts/token.sol\":5667:5677 msg.sender */\n caller\n /* \"./src/contracts/token.sol\":5652:5678 allowed[_from][msg.sender] */\n dup5\n mstore\n dup3\n mstore\n swap2\n dup3\n swap1\n keccak256\n /* \"./src/contracts/token.sol\":5652:5719 allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value) */\n swap5\n swap1\n swap5\n sstore\n /* \"./src/contracts/token.sol\":5731:5759 Transfer(_from, _to, _value) */\n dup1\n mload\n dup7\n dup2\n mstore\n swap1\n mload\n swap3\n dup8\n and\n swap4\n /* \"./src/contracts/token.sol\":5652:5666 allowed[_from] */\n swap2\n swap3\n /* \"./src/contracts/token.sol\":5731:5759 Transfer(_from, _to, _value) */\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n swap3\n swap2\n dup2\n swap1\n sub\n swap1\n swap2\n add\n swap1\n log3\n pop\n /* \"./src/contracts/token.sol\":5776:5780 true */\n 0x01\n swap4\n /* \"./src/contracts/token.sol\":5291:5785 function transferFrom(... */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"./src/contracts/token.sol\":2216:2326 function decimals()... */\n tag_32:\n /* \"./src/contracts/token.sol\":2308:2321 tokenDecimals */\n and(0xff, sload(0x03))\n swap1\n /* \"./src/contracts/token.sol\":2216:2326 function decimals()... */\n jump\t// out\n /* \"./src/contracts/token.sol\":2675:2811 function balanceOf(... */\n tag_35:\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":2790:2806 balances[_owner] */\n and\n /* \"./src/contracts/token.sol\":2753:2769 uint256 _balance */\n 0x00\n /* \"./src/contracts/token.sol\":2790:2806 balances[_owner] */\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":2790:2798 balances */\n 0x05\n /* \"./src/contracts/token.sol\":2790:2806 balances[_owner] */\n 0x20\n mstore\n 0x40\n swap1\n keccak256\n sload\n swap1\n /* \"./src/contracts/token.sol\":2675:2811 function balanceOf(... */\n jump\t// out\n /* \"./src/contracts/token.sol\":2033:2143 function symbol()... */\n tag_37:\n /* \"./src/contracts/token.sol\":2127:2138 tokenSymbol */\n 0x02\n /* \"./src/contracts/token.sol\":2117:2138 _symbol = tokenSymbol */\n dup1\n sload\n 0x40\n dup1\n mload\n 0x20\n 0x1f\n not(0x00)\n 0x0100\n 0x01\n dup8\n and\n iszero\n mul\n add\n swap1\n swap5\n and\n dup6\n swap1\n div\n swap4\n dup5\n add\n dup2\n swap1\n div\n dup2\n mul\n dup3\n add\n dup2\n add\n swap1\n swap3\n mstore\n dup3\n dup2\n mstore\n /* \"./src/contracts/token.sol\":2086:2107 string memory _symbol */\n 0x60\n swap4\n /* \"./src/contracts/token.sol\":2117:2138 _symbol = tokenSymbol */\n swap1\n swap3\n /* \"./src/contracts/token.sol\":2127:2138 tokenSymbol */\n swap1\n swap2\n /* \"./src/contracts/token.sol\":2117:2138 _symbol = tokenSymbol */\n dup4\n add\n /* \"./src/contracts/token.sol\":2127:2138 tokenSymbol */\n dup3\n /* \"./src/contracts/token.sol\":2117:2138 _symbol = tokenSymbol */\n dup3\n dup1\n iszero\n tag_50\n jumpi\n dup1\n 0x1f\n lt\n tag_51\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_50)\n /* \"./src/contracts/token.sol\":3550:3895 function transfer(... */\n tag_44:\n /* \"./src/contracts/token.sol\":3683:3693 msg.sender */\n caller\n /* \"./src/contracts/token.sol\":3633:3646 bool _success */\n 0x00\n /* \"./src/contracts/token.sol\":3674:3694 balances[msg.sender] */\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":3674:3682 balances */\n 0x05\n /* \"./src/contracts/token.sol\":3674:3694 balances[msg.sender] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n sload\n /* \"./src/contracts/token.sol\":3696:3714 NOT_ENOUGH_BALANCE */\n dup2\n mload\n dup1\n dup4\n add\n swap1\n swap3\n mstore\n 0x06\n dup3\n mstore\n 0x3030313030310000000000000000000000000000000000000000000000000000\n swap3\n dup3\n add\n swap3\n swap1\n swap3\n mstore\n swap1\n /* \"./src/contracts/token.sol\":3664:3694 _value <= balances[msg.sender] */\n dup4\n gt\n iszero\n /* \"./src/contracts/token.sol\":3656:3715 require(_value <= balances[msg.sender], NOT_ENOUGH_BALANCE) */\n tag_78\n jumpi\n mload(0x40)\n mul(0x461bcd, exp(0x02, 0xe5))\n dup2\n mstore\n 0x20\n 0x04\n dup3\n add\n dup2\n dup2\n mstore\n dup4\n mload\n 0x24\n dup5\n add\n mstore\n dup4\n mload\n swap1\n swap3\n dup4\n swap3\n 0x44\n swap1\n swap2\n add\n swap2\n swap1\n dup6\n add\n swap1\n dup1\n dup4\n dup4\n 0x00\n /* \"--CODEGEN--\":27:37 */\n dup4\n iszero\n /* \"--CODEGEN--\":8:108 */\n tag_59\n jumpi\n /* \"--CODEGEN--\":90:101 */\n dup2\n dup2\n add\n /* \"--CODEGEN--\":84:102 */\n mload\n /* \"--CODEGEN--\":71:82 */\n dup4\n dup3\n add\n /* \"--CODEGEN--\":64:103 */\n mstore\n /* \"--CODEGEN--\":52:54 */\n 0x20\n /* \"--CODEGEN--\":45:55 */\n add\n /* \"--CODEGEN--\":8:108 */\n jump(tag_57)\n /* \"./src/contracts/token.sol\":3656:3715 require(_value <= balances[msg.sender], NOT_ENOUGH_BALANCE) */\n tag_78:\n pop\n /* \"./src/contracts/token.sol\":3754:3764 msg.sender */\n caller\n /* \"./src/contracts/token.sol\":3745:3765 balances[msg.sender] */\n 0x00\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":3745:3753 balances */\n 0x05\n /* \"./src/contracts/token.sol\":3745:3765 balances[msg.sender] */\n 0x20\n mstore\n 0x40\n swap1\n keccak256\n sload\n /* \"./src/contracts/token.sol\":3745:3777 balances[msg.sender].sub(_value) */\n tag_83\n swap1\n /* \"./src/contracts/token.sol\":3770:3776 _value */\n dup4\n /* \"./src/contracts/token.sol\":3745:3777 balances[msg.sender].sub(_value) */\n 0xffffffff\n /* \"./src/contracts/token.sol\":3745:3769 balances[msg.sender].sub */\n tag_67\n /* \"./src/contracts/token.sol\":3745:3777 balances[msg.sender].sub(_value) */\n and\n jump\t// in\n tag_83:\n /* \"./src/contracts/token.sol\":3731:3741 msg.sender */\n caller\n /* \"./src/contracts/token.sol\":3722:3742 balances[msg.sender] */\n 0x00\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":3722:3730 balances */\n 0x05\n /* \"./src/contracts/token.sol\":3722:3742 balances[msg.sender] */\n 0x20\n mstore\n 0x40\n dup1\n dup3\n keccak256\n /* \"./src/contracts/token.sol\":3722:3777 balances[msg.sender] = balances[msg.sender].sub(_value) */\n swap3\n swap1\n swap3\n sstore\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":3799:3812 balances[_to] */\n dup6\n and\n dup2\n mstore\n keccak256\n sload\n /* \"./src/contracts/token.sol\":3799:3824 balances[_to].add(_value) */\n tag_84\n swap1\n /* \"./src/contracts/token.sol\":3817:3823 _value */\n dup4\n /* \"./src/contracts/token.sol\":3799:3824 balances[_to].add(_value) */\n 0xffffffff\n /* \"./src/contracts/token.sol\":3799:3816 balances[_to].add */\n tag_69\n /* \"./src/contracts/token.sol\":3799:3824 balances[_to].add(_value) */\n and\n jump\t// in\n tag_84:\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":3783:3796 balances[_to] */\n dup5\n and\n 0x00\n dup2\n dup2\n mstore\n /* \"./src/contracts/token.sol\":3783:3791 balances */\n 0x05\n /* \"./src/contracts/token.sol\":3783:3796 balances[_to] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n swap2\n dup3\n swap1\n keccak256\n /* \"./src/contracts/token.sol\":3783:3824 balances[_to] = balances[_to].add(_value) */\n swap4\n swap1\n swap4\n sstore\n /* \"./src/contracts/token.sol\":3836:3869 Transfer(msg.sender, _to, _value) */\n dup1\n mload\n dup6\n dup2\n mstore\n swap1\n mload\n /* \"./src/contracts/token.sol\":3783:3796 balances[_to] */\n swap2\n swap3\n /* \"./src/contracts/token.sol\":3845:3855 msg.sender */\n caller\n swap3\n /* \"./src/contracts/token.sol\":3836:3869 Transfer(msg.sender, _to, _value) */\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n swap3\n dup2\n swap1\n sub\n swap1\n swap2\n add\n swap1\n log3\n pop\n /* \"./src/contracts/token.sol\":3886:3890 true */\n 0x01\n swap3\n /* \"./src/contracts/token.sol\":3550:3895 function transfer(... */\n swap2\n pop\n pop\n jump\t// out\n /* \"./src/contracts/token.sol\":3051:3222 function allowance(... */\n tag_47:\n sub(exp(0x02, 0xa0), 0x01)\n /* \"./src/contracts/token.sol\":3192:3207 allowed[_owner] */\n swap2\n dup3\n and\n /* \"./src/contracts/token.sol\":3151:3169 uint256 _remaining */\n 0x00\n /* \"./src/contracts/token.sol\":3192:3207 allowed[_owner] */\n swap1\n dup2\n mstore\n /* \"./src/contracts/token.sol\":3192:3199 allowed */\n 0x06\n /* \"./src/contracts/token.sol\":3192:3207 allowed[_owner] */\n 0x20\n swap1\n dup2\n mstore\n 0x40\n dup1\n dup4\n keccak256\n /* \"./src/contracts/token.sol\":3192:3217 allowed[_owner][_spender] */\n swap4\n swap1\n swap5\n and\n dup3\n mstore\n swap2\n swap1\n swap2\n mstore\n keccak256\n sload\n swap1\n /* \"./src/contracts/token.sol\":3051:3222 function allowance(... */\n jump\t// out\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":1939:2177 */\n tag_67:\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2038:2056 */\n 0x00\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2089:2097 */\n dup3\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2074:2085 */\n dup3\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2074:2097 */\n gt\n iszero\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2099:2130 */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x06\n dup2\n mstore\n 0x20\n add\n 0x3030383030320000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2066:2131 */\n swap1\n tag_87\n jumpi\n mload(0x40)\n mul(0x461bcd, exp(0x02, 0xe5))\n dup2\n mstore\n 0x20\n 0x04\n dup3\n add\n dup2\n dup2\n mstore\n dup4\n mload\n 0x24\n dup5\n add\n mstore\n dup4\n mload\n swap1\n swap3\n dup4\n swap3\n 0x44\n swap1\n swap2\n add\n swap2\n swap1\n dup6\n add\n swap1\n dup1\n dup4\n dup4\n 0x00\n /* \"--CODEGEN--\":27:37 */\n dup4\n iszero\n /* \"--CODEGEN--\":8:108 */\n tag_59\n jumpi\n /* \"--CODEGEN--\":90:101 */\n dup2\n dup2\n add\n /* \"--CODEGEN--\":84:102 */\n mload\n /* \"--CODEGEN--\":71:82 */\n dup4\n dup3\n add\n /* \"--CODEGEN--\":64:103 */\n mstore\n /* \"--CODEGEN--\":52:54 */\n 0x20\n /* \"--CODEGEN--\":45:55 */\n add\n /* \"--CODEGEN--\":8:108 */\n jump(tag_57)\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2066:2131 */\n tag_87:\n pop\n pop\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2150:2172 */\n swap1\n sub\n swap1\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":1939:2177 */\n jump\t// out\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2318:2505 */\n tag_69:\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2491:2499 */\n 0x40\n dup1\n mload\n dup1\n dup3\n add\n swap1\n swap2\n mstore\n 0x06\n dup2\n mstore\n 0x3030383030310000000000000000000000000000000000000000000000000000\n 0x20\n dup3\n add\n mstore\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2441:2460 */\n dup3\n dup3\n add\n swap1\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2474:2489 */\n dup4\n dup3\n lt\n iszero\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2466:2500 */\n tag_93\n jumpi\n mload(0x40)\n mul(0x461bcd, exp(0x02, 0xe5))\n dup2\n mstore\n 0x20\n 0x04\n dup3\n add\n dup2\n dup2\n mstore\n dup4\n mload\n 0x24\n dup5\n add\n mstore\n dup4\n mload\n swap1\n swap3\n dup4\n swap3\n 0x44\n swap1\n swap2\n add\n swap2\n swap1\n dup6\n add\n swap1\n dup1\n dup4\n dup4\n 0x00\n /* \"--CODEGEN--\":27:37 */\n dup4\n iszero\n /* \"--CODEGEN--\":8:108 */\n tag_59\n jumpi\n /* \"--CODEGEN--\":90:101 */\n dup2\n dup2\n add\n /* \"--CODEGEN--\":84:102 */\n mload\n /* \"--CODEGEN--\":71:82 */\n dup4\n dup3\n add\n /* \"--CODEGEN--\":64:103 */\n mstore\n /* \"--CODEGEN--\":52:54 */\n 0x20\n /* \"--CODEGEN--\":45:55 */\n add\n /* \"--CODEGEN--\":8:108 */\n jump(tag_57)\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2466:2500 */\n tag_93:\n pop\n /* \"@0xcert/ethereum-utils-contracts/src/contracts/math/safe-math.sol\":2318:2505 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa165627a7a72305820c6f3643ccb76dbd9a85fccfd71792c40e1dc04b86c3febd404e441f29f66be920029\n}\n",
"bytecode": {
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50604051610cc6380380610cc68339810180604052608081101561003357600080fd5b81019080805164010000000081111561004b57600080fd5b8201602081018481111561005e57600080fd5b815164010000000081118282018710171561007857600080fd5b5050929190602001805164010000000081111561009457600080fd5b820160208101848111156100a757600080fd5b81516401000000008111828201871017156100c157600080fd5b505060208281015160409093015160008083527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c58054600160ff1991821681179092557f9047944217cf7a5a57cc49e67181a64066b571778b37f1b501b5b2483c404e7480548216831790557fda3cefe610fb16fb609e83632d9bfe397c73a53e0e3889c3c671f29203793f8280548216831790557f0648b88cb4f83f2d3a24d50bb67a4b7e9cfc7f04811e84ba831e24e1b44237e280548216831790557f313ce567000000000000000000000000000000000000000000000000000000009092527f57c3f48cc00ca48466de578a46bac144b80c7e62e6b209102e549439d6cf9afa805490921681179091558751939650939450926101e592909187019061025e565b5082516101f990600290602086019061025e565b506003805460ff191660ff84161790556004819055336000818152600560209081526040808320859055805185815290517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a3505050506102f9565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061029f57805160ff19168380011785556102cc565b828001600101855582156102cc579182015b828111156102cc5782518255916020019190600101906102b1565b506102d89291506102dc565b5090565b6102f691905b808211156102d857600081556001016102e2565b90565b6109be806103086000396000f3fe608060405234801561001057600080fd5b50600436106100bb576000357c010000000000000000000000000000000000000000000000000000000090048063313ce56711610083578063313ce5671461020957806370a082311461022757806395d89b411461024d578063a9059cbb14610255578063dd62ed3e14610281576100bb565b806301ffc9a7146100c057806306fdde0314610110578063095ea7b31461018d57806318160ddd146101b957806323b872dd146101d3575b600080fd5b6100fc600480360360208110156100d657600080fd5b50357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166102af565b604080519115158252519081900360200190f35b6101186102e3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6100fc600480360360408110156101a357600080fd5b50600160a060020a038135169060200135610378565b6101c16103de565b60408051918252519081900360200190f35b6100fc600480360360608110156101e957600080fd5b50600160a060020a038135811691602081013590911690604001356103e4565b610211610678565b6040805160ff9092168252519081900360200190f35b6101c16004803603602081101561023d57600080fd5b5035600160a060020a0316610681565b61011861069c565b6100fc6004803603604081101561026b57600080fd5b50600160a060020a0381351690602001356106fa565b6101c16004803603604081101561029757600080fd5b50600160a060020a0381358116916020013516610844565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191660009081526020819052604090205460ff1690565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561036e5780601f106103435761010080835404028352916020019161036e565b820191906000526020600020905b81548152906001019060200180831161035157829003601f168201915b5050505050905090565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045490565b600160a060020a0383166000908152600560209081526040808320548151808301909252600682527f303031303031000000000000000000000000000000000000000000000000000092820192909252908311156104c35760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610488578181015183820152602001610470565b50505050905090810190601f1680156104b55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600160a060020a03841660009081526006602081815260408084203385528252928390205483518085019094529183527f30303130303200000000000000000000000000000000000000000000000000009083015283111561056a5760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315610488578181015183820152602001610470565b50600160a060020a038416600090815260056020526040902054610594908363ffffffff61086f16565b600160a060020a0380861660009081526005602052604080822093909355908516815220546105c9908363ffffffff61090116565b600160a060020a03808516600090815260056020908152604080832094909455918716815260068252828120338252909152205461060d908363ffffffff61086f16565b600160a060020a03808616600081815260066020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60035460ff1690565b600160a060020a031660009081526005602052604090205490565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561036e5780601f106103435761010080835404028352916020019161036e565b336000908152600560209081526040808320548151808301909252600682527f303031303031000000000000000000000000000000000000000000000000000092820192909252908311156107935760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315610488578181015183820152602001610470565b50336000908152600560205260409020546107b4908363ffffffff61086f16565b3360009081526005602052604080822092909255600160a060020a038516815220546107e6908363ffffffff61090116565b600160a060020a0384166000818152600560209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b6000828211156040518060400160405280600681526020017f3030383030320000000000000000000000000000000000000000000000000000815250906108fa5760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315610488578181015183820152602001610470565b5050900390565b60408051808201909152600681527f30303830303100000000000000000000000000000000000000000000000000006020820152828201908382101561098b5760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315610488578181015183820152602001610470565b509291505056fea165627a7a72305820c6f3643ccb76dbd9a85fccfd71792c40e1dc04b86c3febd404e441f29f66be920029",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0xCC6 CODESIZE SUB DUP1 PUSH2 0xCC6 DUP4 CODECOPY DUP2 ADD DUP1 PUSH1 0x40 MSTORE PUSH1 0x80 DUP2 LT ISZERO PUSH2 0x33 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 ADD SWAP1 DUP1 DUP1 MLOAD PUSH5 0x100000000 DUP2 GT ISZERO PUSH2 0x4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x20 DUP2 ADD DUP5 DUP2 GT ISZERO PUSH2 0x5E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH5 0x100000000 DUP2 GT DUP3 DUP3 ADD DUP8 LT OR ISZERO PUSH2 0x78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP SWAP3 SWAP2 SWAP1 PUSH1 0x20 ADD DUP1 MLOAD PUSH5 0x100000000 DUP2 GT ISZERO PUSH2 0x94 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x20 DUP2 ADD DUP5 DUP2 GT ISZERO PUSH2 0xA7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH5 0x100000000 DUP2 GT DUP3 DUP3 ADD DUP8 LT OR ISZERO PUSH2 0xC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP POP PUSH1 0x20 DUP3 DUP2 ADD MLOAD PUSH1 0x40 SWAP1 SWAP4 ADD MLOAD PUSH1 0x0 DUP1 DUP4 MSTORE PUSH32 0x67BE87C3FF9960CA1E9CFAC5CAB2FF4747269CF9ED20C9B7306235AC35A491C5 DUP1 SLOAD PUSH1 0x1 PUSH1 0xFF NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH32 0x9047944217CF7A5A57CC49E67181A64066B571778B37F1B501B5B2483C404E74 DUP1 SLOAD DUP3 AND DUP4 OR SWAP1 SSTORE PUSH32 0xDA3CEFE610FB16FB609E83632D9BFE397C73A53E0E3889C3C671F29203793F82 DUP1 SLOAD DUP3 AND DUP4 OR SWAP1 SSTORE PUSH32 0x648B88CB4F83F2D3A24D50BB67A4B7E9CFC7F04811E84BA831E24E1B44237E2 DUP1 SLOAD DUP3 AND DUP4 OR SWAP1 SSTORE PUSH32 0x313CE56700000000000000000000000000000000000000000000000000000000 SWAP1 SWAP3 MSTORE PUSH32 0x57C3F48CC00CA48466DE578A46BAC144B80C7E62E6B209102E549439D6CF9AFA DUP1 SLOAD SWAP1 SWAP3 AND DUP2 OR SWAP1 SWAP2 SSTORE DUP8 MLOAD SWAP4 SWAP7 POP SWAP4 SWAP5 POP SWAP3 PUSH2 0x1E5 SWAP3 SWAP1 SWAP2 DUP8 ADD SWAP1 PUSH2 0x25E JUMP JUMPDEST POP DUP3 MLOAD PUSH2 0x1F9 SWAP1 PUSH1 0x2 SWAP1 PUSH1 0x20 DUP7 ADD SWAP1 PUSH2 0x25E JUMP JUMPDEST POP PUSH1 0x3 DUP1 SLOAD PUSH1 0xFF NOT AND PUSH1 0xFF DUP5 AND OR SWAP1 SSTORE PUSH1 0x4 DUP2 SWAP1 SSTORE CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP6 SWAP1 SSTORE DUP1 MLOAD DUP6 DUP2 MSTORE SWAP1 MLOAD PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP3 SWAP2 DUP2 SWAP1 SUB SWAP1 SWAP2 ADD SWAP1 LOG3 POP POP POP POP PUSH2 0x2F9 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH1 0x1 DUP2 PUSH1 0x1 AND ISZERO PUSH2 0x100 MUL SUB AND PUSH1 0x2 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH1 0x1F LT PUSH2 0x29F JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2CC JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2CC JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2CC JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2B1 JUMP JUMPDEST POP PUSH2 0x2D8 SWAP3 SWAP2 POP PUSH2 0x2DC JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x2F6 SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2D8 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x2E2 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x9BE DUP1 PUSH2 0x308 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBB JUMPI PUSH1 0x0 CALLDATALOAD PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV DUP1 PUSH4 0x313CE567 GT PUSH2 0x83 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x227 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x255 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x281 JUMPI PUSH2 0xBB JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x18D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1B9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1D3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x20 DUP2 LT ISZERO PUSH2 0xD6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH2 0x2AF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 ISZERO ISZERO DUP3 MSTORE MLOAD SWAP1 DUP2 SWAP1 SUB PUSH1 0x20 ADD SWAP1 RETURN JUMPDEST PUSH2 0x118 PUSH2 0x2E3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP4 MLOAD DUP2 DUP4 ADD MSTORE DUP4 MLOAD SWAP2 SWAP3 DUP4 SWAP3 SWAP1 DUP4 ADD SWAP2 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x152 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x13A JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x17F JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x1A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP2 CALLDATALOAD AND SWAP1 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x378 JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x3DE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE MLOAD SWAP1 DUP2 SWAP1 SUB PUSH1 0x20 ADD SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x60 DUP2 LT ISZERO PUSH2 0x1E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP2 CALLDATALOAD DUP2 AND SWAP2 PUSH1 0x20 DUP2 ADD CALLDATALOAD SWAP1 SWAP2 AND SWAP1 PUSH1 0x40 ADD CALLDATALOAD PUSH2 0x3E4 JUMP JUMPDEST PUSH2 0x211 PUSH2 0x678 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xFF SWAP1 SWAP3 AND DUP3 MSTORE MLOAD SWAP1 DUP2 SWAP1 SUB PUSH1 0x20 ADD SWAP1 RETURN JUMPDEST PUSH2 0x1C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x20 DUP2 LT ISZERO PUSH2 0x23D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB AND PUSH2 0x681 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x69C JUMP JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x26B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP2 CALLDATALOAD AND SWAP1 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x6FA JUMP JUMPDEST PUSH2 0x1C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP2 CALLDATALOAD DUP2 AND SWAP2 PUSH1 0x20 ADD CALLDATALOAD AND PUSH2 0x844 JUMP JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F PUSH1 0x2 PUSH1 0x0 NOT PUSH2 0x100 DUP8 DUP10 AND ISZERO MUL ADD SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 DIV SWAP4 DUP5 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP3 DUP2 MSTORE PUSH1 0x60 SWAP4 SWAP1 SWAP3 SWAP1 SWAP2 DUP4 ADD DUP3 DUP3 DUP1 ISZERO PUSH2 0x36E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x343 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x36E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x351 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE DUP2 DUP5 KECCAK256 DUP7 SWAP1 SSTORE DUP2 MLOAD DUP7 DUP2 MSTORE SWAP2 MLOAD SWAP4 SWAP5 SWAP1 SWAP4 SWAP1 SWAP3 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP3 DUP3 SWAP1 SUB ADD SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH32 0x3030313030310000000000000000000000000000000000000000000000000000 SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP4 GT ISZERO PUSH2 0x4C3 JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x4B5 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 CALLER DUP6 MSTORE DUP3 MSTORE SWAP3 DUP4 SWAP1 KECCAK256 SLOAD DUP4 MLOAD DUP1 DUP6 ADD SWAP1 SWAP5 MSTORE SWAP2 DUP4 MSTORE PUSH32 0x3030313030320000000000000000000000000000000000000000000000000000 SWAP1 DUP4 ADD MSTORE DUP4 GT ISZERO PUSH2 0x56A JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 DUP2 MSTORE DUP4 MLOAD PUSH1 0x24 DUP5 ADD MSTORE DUP4 MLOAD SWAP1 SWAP3 DUP4 SWAP3 PUSH1 0x44 SWAP1 SWAP2 ADD SWAP2 SWAP1 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 DUP4 ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x594 SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x86F AND JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP1 DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE SWAP1 DUP6 AND DUP2 MSTORE KECCAK256 SLOAD PUSH2 0x5C9 SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x901 AND JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 SWAP1 SWAP5 SSTORE SWAP2 DUP8 AND DUP2 MSTORE PUSH1 0x6 DUP3 MSTORE DUP3 DUP2 KECCAK256 CALLER DUP3 MSTORE SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH2 0x60D SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x86F AND JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP1 DUP7 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 SWAP5 SWAP1 SWAP5 SSTORE DUP1 MLOAD DUP7 DUP2 MSTORE SWAP1 MLOAD SWAP3 DUP8 AND SWAP4 SWAP2 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP3 SWAP2 DUP2 SWAP1 SUB SWAP1 SWAP2 ADD SWAP1 LOG3 POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F PUSH1 0x0 NOT PUSH2 0x100 PUSH1 0x1 DUP8 AND ISZERO MUL ADD SWAP1 SWAP5 AND DUP6 SWAP1 DIV SWAP4 DUP5 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP3 DUP2 MSTORE PUSH1 0x60 SWAP4 SWAP1 SWAP3 SWAP1 SWAP2 DUP4 ADD DUP3 DUP3 DUP1 ISZERO PUSH2 0x36E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x343 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x36E JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH32 0x3030313030310000000000000000000000000000000000000000000000000000 SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP4 GT ISZERO PUSH2 0x793 JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 DUP2 MSTORE DUP4 MLOAD PUSH1 0x24 DUP5 ADD MSTORE DUP4 MLOAD SWAP1 SWAP3 DUP4 SWAP3 PUSH1 0x44 SWAP1 SWAP2 ADD SWAP2 SWAP1 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 DUP4 ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x7B4 SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x86F AND JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP3 SWAP1 SWAP3 SSTORE PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP6 AND DUP2 MSTORE KECCAK256 SLOAD PUSH2 0x7E6 SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x901 AND JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP5 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP1 MLOAD DUP6 DUP2 MSTORE SWAP1 MLOAD SWAP2 SWAP3 CALLER SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP3 DUP2 SWAP1 SUB SWAP1 SWAP2 ADD SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 GT ISZERO PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3030383030320000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 PUSH2 0x8FA JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 DUP2 MSTORE DUP4 MLOAD PUSH1 0x24 DUP5 ADD MSTORE DUP4 MLOAD SWAP1 SWAP3 DUP4 SWAP3 PUSH1 0x44 SWAP1 SWAP2 ADD SWAP2 SWAP1 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 DUP4 ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP POP SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH32 0x3030383030310000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE DUP3 DUP3 ADD SWAP1 DUP4 DUP3 LT ISZERO PUSH2 0x98B JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 DUP2 MSTORE DUP4 MLOAD PUSH1 0x24 DUP5 ADD MSTORE DUP4 MLOAD SWAP1 SWAP3 DUP4 SWAP3 PUSH1 0x44 SWAP1 SWAP2 ADD SWAP2 SWAP1 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 DUP4 ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG1 PUSH6 0x627A7A723058 KECCAK256 0xc6 RETURN PUSH5 0x3CCB76DBD9 0xa8 0x5f 0xcc REVERT PUSH18 0x792C40E1DC04B86C3FEBD404E441F29F66BE SWAP3 STOP 0x29 ",
"sourceMap": "117:384:1:-;;;152:347;8:9:-1;5:2;;;30:1;27;20:12;5:2;152:347:1;;;;;;;;;;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;152:347:1;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;261:11;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;0:372;;152:347:1;;;;;;;19:11:-1;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;261:11;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;-1:-1;;152:347:1;;;;;;;;;;415:19:5;:31;;;;:38;;449:4;-1:-1:-1;;415:38:5;;;;;;;;1583:31:2;:38;;;;;;;;1636:31;:38;;;;;;;;1694:31;:38;;;;;;;;1754:31;;;;;:38;;;;;;;;;;281:17:1;;152:347;;-1:-1:-1;152:347:1;;-1:-1:-1;152:347:1;281:17;;449:4:5;;281:17:1;;;;:::i;:::-;-1:-1:-1;304:21:1;;;;:11;;:21;;;;;:::i;:::-;-1:-1:-1;331:13:1;:25;;-1:-1:-1;;331:25:1;;;;;;;362:16;:26;;;403:10;-1:-1:-1;394:20:1;;;:8;:20;;;;;;;;:39;;;444:50;;;;;;;;;;;;;;;;;;152:347;;;;117:384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;117:384:1;;;-1:-1:-1;117:384:1;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100bb576000357c010000000000000000000000000000000000000000000000000000000090048063313ce56711610083578063313ce5671461020957806370a082311461022757806395d89b411461024d578063a9059cbb14610255578063dd62ed3e14610281576100bb565b806301ffc9a7146100c057806306fdde0314610110578063095ea7b31461018d57806318160ddd146101b957806323b872dd146101d3575b600080fd5b6100fc600480360360208110156100d657600080fd5b50357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166102af565b604080519115158252519081900360200190f35b6101186102e3565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6100fc600480360360408110156101a357600080fd5b50600160a060020a038135169060200135610378565b6101c16103de565b60408051918252519081900360200190f35b6100fc600480360360608110156101e957600080fd5b50600160a060020a038135811691602081013590911690604001356103e4565b610211610678565b6040805160ff9092168252519081900360200190f35b6101c16004803603602081101561023d57600080fd5b5035600160a060020a0316610681565b61011861069c565b6100fc6004803603604081101561026b57600080fd5b50600160a060020a0381351690602001356106fa565b6101c16004803603604081101561029757600080fd5b50600160a060020a0381358116916020013516610844565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191660009081526020819052604090205460ff1690565b60018054604080516020601f6002600019610100878916150201909516949094049384018190048102820181019092528281526060939092909183018282801561036e5780601f106103435761010080835404028352916020019161036e565b820191906000526020600020905b81548152906001019060200180831161035157829003601f168201915b5050505050905090565b336000818152600660209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60045490565b600160a060020a0383166000908152600560209081526040808320548151808301909252600682527f303031303031000000000000000000000000000000000000000000000000000092820192909252908311156104c35760405160e560020a62461bcd0281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610488578181015183820152602001610470565b50505050905090810190601f1680156104b55780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600160a060020a03841660009081526006602081815260408084203385528252928390205483518085019094529183527f30303130303200000000000000000000000000000000000000000000000000009083015283111561056a5760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315610488578181015183820152602001610470565b50600160a060020a038416600090815260056020526040902054610594908363ffffffff61086f16565b600160a060020a0380861660009081526005602052604080822093909355908516815220546105c9908363ffffffff61090116565b600160a060020a03808516600090815260056020908152604080832094909455918716815260068252828120338252909152205461060d908363ffffffff61086f16565b600160a060020a03808616600081815260066020908152604080832033845282529182902094909455805186815290519287169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060019392505050565b60035460ff1690565b600160a060020a031660009081526005602052604090205490565b60028054604080516020601f600019610100600187161502019094168590049384018190048102820181019092528281526060939092909183018282801561036e5780601f106103435761010080835404028352916020019161036e565b336000908152600560209081526040808320548151808301909252600682527f303031303031000000000000000000000000000000000000000000000000000092820192909252908311156107935760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315610488578181015183820152602001610470565b50336000908152600560205260409020546107b4908363ffffffff61086f16565b3360009081526005602052604080822092909255600160a060020a038516815220546107e6908363ffffffff61090116565b600160a060020a0384166000818152600560209081526040918290209390935580518581529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b600160a060020a03918216600090815260066020908152604080832093909416825291909152205490565b6000828211156040518060400160405280600681526020017f3030383030320000000000000000000000000000000000000000000000000000815250906108fa5760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315610488578181015183820152602001610470565b5050900390565b60408051808201909152600681527f30303830303100000000000000000000000000000000000000000000000000006020820152828201908382101561098b5760405160e560020a62461bcd028152602060048201818152835160248401528351909283926044909101919085019080838360008315610488578181015183820152602001610470565b509291505056fea165627a7a72305820c6f3643ccb76dbd9a85fccfd71792c40e1dc04b86c3febd404e441f29f66be920029",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xBB JUMPI PUSH1 0x0 CALLDATALOAD PUSH29 0x100000000000000000000000000000000000000000000000000000000 SWAP1 DIV DUP1 PUSH4 0x313CE567 GT PUSH2 0x83 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x227 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x255 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x281 JUMPI PUSH2 0xBB JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xC0 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x18D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1B9 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1D3 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x20 DUP2 LT ISZERO PUSH2 0xD6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH2 0x2AF JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 ISZERO ISZERO DUP3 MSTORE MLOAD SWAP1 DUP2 SWAP1 SUB PUSH1 0x20 ADD SWAP1 RETURN JUMPDEST PUSH2 0x118 PUSH2 0x2E3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP4 MLOAD DUP2 DUP4 ADD MSTORE DUP4 MLOAD SWAP2 SWAP3 DUP4 SWAP3 SWAP1 DUP4 ADD SWAP2 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x152 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x13A JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x17F JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x1A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP2 CALLDATALOAD AND SWAP1 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x378 JUMP JUMPDEST PUSH2 0x1C1 PUSH2 0x3DE JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD SWAP2 DUP3 MSTORE MLOAD SWAP1 DUP2 SWAP1 SUB PUSH1 0x20 ADD SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x60 DUP2 LT ISZERO PUSH2 0x1E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP2 CALLDATALOAD DUP2 AND SWAP2 PUSH1 0x20 DUP2 ADD CALLDATALOAD SWAP1 SWAP2 AND SWAP1 PUSH1 0x40 ADD CALLDATALOAD PUSH2 0x3E4 JUMP JUMPDEST PUSH2 0x211 PUSH2 0x678 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0xFF SWAP1 SWAP3 AND DUP3 MSTORE MLOAD SWAP1 DUP2 SWAP1 SUB PUSH1 0x20 ADD SWAP1 RETURN JUMPDEST PUSH2 0x1C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x20 DUP2 LT ISZERO PUSH2 0x23D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB AND PUSH2 0x681 JUMP JUMPDEST PUSH2 0x118 PUSH2 0x69C JUMP JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x26B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP2 CALLDATALOAD AND SWAP1 PUSH1 0x20 ADD CALLDATALOAD PUSH2 0x6FA JUMP JUMPDEST PUSH2 0x1C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB PUSH1 0x40 DUP2 LT ISZERO PUSH2 0x297 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP2 CALLDATALOAD DUP2 AND SWAP2 PUSH1 0x20 ADD CALLDATALOAD AND PUSH2 0x844 JUMP JUMPDEST PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F PUSH1 0x2 PUSH1 0x0 NOT PUSH2 0x100 DUP8 DUP10 AND ISZERO MUL ADD SWAP1 SWAP6 AND SWAP5 SWAP1 SWAP5 DIV SWAP4 DUP5 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP3 DUP2 MSTORE PUSH1 0x60 SWAP4 SWAP1 SWAP3 SWAP1 SWAP2 DUP4 ADD DUP3 DUP3 DUP1 ISZERO PUSH2 0x36E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x343 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x36E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x351 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST CALLER PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP8 AND DUP1 DUP6 MSTORE SWAP1 DUP4 MSTORE DUP2 DUP5 KECCAK256 DUP7 SWAP1 SSTORE DUP2 MLOAD DUP7 DUP2 MSTORE SWAP2 MLOAD SWAP4 SWAP5 SWAP1 SWAP4 SWAP1 SWAP3 PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 SWAP3 DUP3 SWAP1 SUB ADD SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x4 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH32 0x3030313030310000000000000000000000000000000000000000000000000000 SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP4 GT ISZERO PUSH2 0x4C3 JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x4 ADD DUP1 DUP1 PUSH1 0x20 ADD DUP3 DUP2 SUB DUP3 MSTORE DUP4 DUP2 DUP2 MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 DUP2 ADD SWAP1 PUSH1 0x1F AND DUP1 ISZERO PUSH2 0x4B5 JUMPI DUP1 DUP3 SUB DUP1 MLOAD PUSH1 0x1 DUP4 PUSH1 0x20 SUB PUSH2 0x100 EXP SUB NOT AND DUP2 MSTORE PUSH1 0x20 ADD SWAP2 POP JUMPDEST POP SWAP3 POP POP POP PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 CALLER DUP6 MSTORE DUP3 MSTORE SWAP3 DUP4 SWAP1 KECCAK256 SLOAD DUP4 MLOAD DUP1 DUP6 ADD SWAP1 SWAP5 MSTORE SWAP2 DUP4 MSTORE PUSH32 0x3030313030320000000000000000000000000000000000000000000000000000 SWAP1 DUP4 ADD MSTORE DUP4 GT ISZERO PUSH2 0x56A JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 DUP2 MSTORE DUP4 MLOAD PUSH1 0x24 DUP5 ADD MSTORE DUP4 MLOAD SWAP1 SWAP3 DUP4 SWAP3 PUSH1 0x44 SWAP1 SWAP2 ADD SWAP2 SWAP1 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 DUP4 ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x594 SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x86F AND JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP1 DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE SWAP1 DUP6 AND DUP2 MSTORE KECCAK256 SLOAD PUSH2 0x5C9 SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x901 AND JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 SWAP1 SWAP5 SSTORE SWAP2 DUP8 AND DUP2 MSTORE PUSH1 0x6 DUP3 MSTORE DUP3 DUP2 KECCAK256 CALLER DUP3 MSTORE SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH2 0x60D SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x86F AND JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP1 DUP7 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 CALLER DUP5 MSTORE DUP3 MSTORE SWAP2 DUP3 SWAP1 KECCAK256 SWAP5 SWAP1 SWAP5 SSTORE DUP1 MLOAD DUP7 DUP2 MSTORE SWAP1 MLOAD SWAP3 DUP8 AND SWAP4 SWAP2 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP3 SWAP2 DUP2 SWAP1 SUB SWAP1 SWAP2 ADD SWAP1 LOG3 POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x3 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 PUSH1 0x1F PUSH1 0x0 NOT PUSH2 0x100 PUSH1 0x1 DUP8 AND ISZERO MUL ADD SWAP1 SWAP5 AND DUP6 SWAP1 DIV SWAP4 DUP5 ADD DUP2 SWAP1 DIV DUP2 MUL DUP3 ADD DUP2 ADD SWAP1 SWAP3 MSTORE DUP3 DUP2 MSTORE PUSH1 0x60 SWAP4 SWAP1 SWAP3 SWAP1 SWAP2 DUP4 ADD DUP3 DUP3 DUP1 ISZERO PUSH2 0x36E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x343 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x36E JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD DUP2 MLOAD DUP1 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x6 DUP3 MSTORE PUSH32 0x3030313030310000000000000000000000000000000000000000000000000000 SWAP3 DUP3 ADD SWAP3 SWAP1 SWAP3 MSTORE SWAP1 DUP4 GT ISZERO PUSH2 0x793 JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 DUP2 MSTORE DUP4 MLOAD PUSH1 0x24 DUP5 ADD MSTORE DUP4 MLOAD SWAP1 SWAP3 DUP4 SWAP3 PUSH1 0x44 SWAP1 SWAP2 ADD SWAP2 SWAP1 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 DUP4 ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x7B4 SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x86F AND JUMP JUMPDEST CALLER PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SWAP3 SWAP1 SWAP3 SSTORE PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP6 AND DUP2 MSTORE KECCAK256 SLOAD PUSH2 0x7E6 SWAP1 DUP4 PUSH4 0xFFFFFFFF PUSH2 0x901 AND JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB DUP5 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP1 MLOAD DUP6 DUP2 MSTORE SWAP1 MLOAD SWAP2 SWAP3 CALLER SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP3 DUP2 SWAP1 SUB SWAP1 SWAP2 ADD SWAP1 LOG3 POP PUSH1 0x1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA0 PUSH1 0x2 EXP SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 GT ISZERO PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3030383030320000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 PUSH2 0x8FA JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 DUP2 MSTORE DUP4 MLOAD PUSH1 0x24 DUP5 ADD MSTORE DUP4 MLOAD SWAP1 SWAP3 DUP4 SWAP3 PUSH1 0x44 SWAP1 SWAP2 ADD SWAP2 SWAP1 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 DUP4 ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP POP SWAP1 SUB SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x6 DUP2 MSTORE PUSH32 0x3030383030310000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE DUP3 DUP3 ADD SWAP1 DUP4 DUP3 LT ISZERO PUSH2 0x98B JUMPI PUSH1 0x40 MLOAD PUSH1 0xE5 PUSH1 0x2 EXP PUSH3 0x461BCD MUL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 DUP2 MSTORE DUP4 MLOAD PUSH1 0x24 DUP5 ADD MSTORE DUP4 MLOAD SWAP1 SWAP3 DUP4 SWAP3 PUSH1 0x44 SWAP1 SWAP2 ADD SWAP2 SWAP1 DUP6 ADD SWAP1 DUP1 DUP4 DUP4 PUSH1 0x0 DUP4 ISZERO PUSH2 0x488 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x470 JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP INVALID LOG1 PUSH6 0x627A7A723058 KECCAK256 0xc6 RETURN PUSH5 0x3CCB76DBD9 0xa8 0x5f 0xcc REVERT PUSH18 0x792C40E1DC04B86C3FEBD404E441F29F66BE SWAP3 STOP 0x29 ",
"sourceMap": "117:384:1:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;117:384:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;606:150:5;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;606:150:5;-1:-1:-1;;606:150:5;;:::i;:::-;;;;;;;;;;;;;;;;;;1872:102:2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1872:102:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4784:224;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4784:224:2;;;;;;;;:::i;2384:124::-;;;:::i;:::-;;;;;;;;;;;;;;;;5291:494;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5291:494:2;;;;;;;;;;;;;;;;;:::i;2216:110::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2675:136;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2675:136:2;-1:-1:-1;;;;;2675:136:2;;:::i;2033:110::-;;;:::i;3550:345::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3550:345:2;;;;;;;;:::i;3051:171::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3051:171:2;;;;;;;;;;:::i;606:150:5:-;-1:-1:-1;;718:33:5;697:4;718:33;;;;;;;;;;;;;;606:150::o;1872:102:2:-;1960:9;1952:17;;;;;;;;-1:-1:-1;;1952:17:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1923:19;;1952:17;;1960:9;;1952:17;;1960:9;1952:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1872:102;:::o;4784:224::-;4902:10;4871:13;4894:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;4894:29:2;;;;;;;;;;;:38;;;4944;;;;;;;4871:13;;4894:29;;4902:10;;4944:38;;;;;;;;-1:-1:-1;4999:4:2;;4784:224;-1:-1:-1;;4784:224:2:o;2384:124::-;2487:16;;;2384:124::o;5291:494::-;-1:-1:-1;;;;;5438:15:2;;5397:13;5438:15;;;:8;:15;;;;;;;;;5455:18;;;;;;;;;;;;;;;;;;;;5428:25;;;5420:54;;;;-1:-1:-1;;;;;5420:54:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5420:54:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5498:14:2;;;;;;:7;:14;;;;;;;;5513:10;5498:26;;;;;;;;;5526:20;;;;;;;;;;;;;;;;5488:36;;;5480:67;;;;-1:-1:-1;;;;;5480:67:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;5480:67:2;-1:-1:-1;;;;;;5572:15:2;;;;;;:8;:15;;;;;;:27;;5592:6;5572:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5554:15:2;;;;;;;:8;:15;;;;;;:45;;;;5621:13;;;;;;;:25;;5639:6;5621:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5605:13:2;;;;;;;:8;:13;;;;;;;;:41;;;;5681:14;;;;;:7;:14;;;;;5696:10;5681:26;;;;;;;:38;;5712:6;5681:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;5652:14:2;;;;;;;:7;:14;;;;;;;;5667:10;5652:26;;;;;;;;:67;;;;5731:28;;;;;;;;;;;5652:14;;5731:28;;;;;;;;;;;-1:-1:-1;5776:4:2;;5291:494;-1:-1:-1;;;5291:494:2:o;2216:110::-;2308:13;;;;;2216:110::o;2675:136::-;-1:-1:-1;;;;;2790:16:2;2753;2790;;;:8;:16;;;;;;;2675:136::o;2033:110::-;2127:11;2117:21;;;;;;;-1:-1:-1;;2117:21:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2086;;2117;;2127:11;;2117:21;;2127:11;2117:21;;;;;;;;;;;;;;;;;;;;;;;;3550:345;3683:10;3633:13;3674:20;;;:8;:20;;;;;;;;;3696:18;;;;;;;;;;;;;;;;;;;;3664:30;;;3656:59;;;;-1:-1:-1;;;;;3656:59:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;3656:59:2;-1:-1:-1;3754:10:2;3745:20;;;;:8;:20;;;;;;:32;;3770:6;3745:32;:24;:32;:::i;:::-;3731:10;3722:20;;;;:8;:20;;;;;;:55;;;;-1:-1:-1;;;;;3799:13:2;;;;;;:25;;3817:6;3799:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;3783:13:2;;;;;;:8;:13;;;;;;;;;:41;;;;3836:33;;;;;;;3783:13;;3845:10;;3836:33;;;;;;;;;;-1:-1:-1;3886:4:2;;3550:345;-1:-1:-1;;3550:345:2:o;3051:171::-;-1:-1:-1;;;;;3192:15:2;;;3151:18;3192:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;3051:171::o;1939:238:3:-;2038:18;2089:8;2074:11;:23;;2099:31;;;;;;;;;;;;;;;;;2066:65;;;;;-1:-1:-1;;;;;2066:65:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;2066:65:3;-1:-1:-1;;2150:22:3;;;1939:238::o;2318:187::-;2491:8;;;;;;;;;;;;;;;;;2441:19;;;;2474:15;;;;2466:34;;;;-1:-1:-1;;;;;2466:34:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;2466:34:3;;2318:187;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "498800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "857",
"approve(address,uint256)": "22441",
"balanceOf(address)": "683",
"decimals()": "418",
"name()": "infinite",
"supportsInterface(bytes4)": "545",
"symbol()": "infinite",
"totalSupply()": "470",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 117,
"end": 501,
"name": "PUSH",
"value": "80"
},
{
"begin": 117,
"end": 501,
"name": "PUSH",
"value": "40"
},
{
"begin": 117,
"end": 501,
"name": "MSTORE"
},
{
"begin": 152,
"end": 499,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "1"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "1"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 152,
"end": 499,
"name": "POP"
},
{
"begin": 152,
"end": 499,
"name": "PUSH",
"value": "40"
},
{
"begin": 152,
"end": 499,
"name": "MLOAD"
},
{
"begin": 152,
"end": 499,
"name": "PUSHSIZE"
},
{
"begin": 152,
"end": 499,
"name": "CODESIZE"
},
{
"begin": 152,
"end": 499,
"name": "SUB"
},
{
"begin": 152,
"end": 499,
"name": "DUP1"
},
{
"begin": 152,
"end": 499,
"name": "PUSHSIZE"
},
{
"begin": 152,
"end": 499,
"name": "DUP4"
},
{
"begin": 152,
"end": 499,
"name": "CODECOPY"
},
{
"begin": 152,
"end": 499,
"name": "DUP2"
},
{
"begin": 152,
"end": 499,
"name": "ADD"
},
{
"begin": 152,
"end": 499,
"name": "DUP1"
},
{
"begin": 152,
"end": 499,
"name": "PUSH",
"value": "40"
},
{
"begin": 152,
"end": 499,
"name": "MSTORE"
},
{
"begin": 13,
"end": 16,
"name": "PUSH",
"value": "80"
},
{
"begin": 8,
"end": 11,
"name": "DUP2"
},
{
"begin": 5,
"end": 17,
"name": "LT"
},
{
"begin": 2,
"end": 4,
"name": "ISZERO"
},
{
"begin": 2,
"end": 4,
"name": "PUSH [tag]",
"value": "2"
},
{
"begin": 2,
"end": 4,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 2,
"end": 4,
"name": "tag",
"value": "2"
},
{
"begin": 2,
"end": 4,
"name": "JUMPDEST"
},
{
"begin": 152,
"end": 499,
"name": "DUP2"
},
{
"begin": 152,
"end": 499,
"name": "ADD"
},
{
"begin": 152,
"end": 499,
"name": "SWAP1"
},
{
"begin": 152,
"end": 499,
"name": "DUP1"
},
{
"begin": 152,
"end": 499,
"name": "DUP1"
},
{
"begin": 152,
"end": 499,
"name": "MLOAD"
},
{
"begin": 19,
"end": 30,
"name": "PUSH",
"value": "100000000"
},
{
"begin": 14,
"end": 17,
"name": "DUP2"
},
{
"begin": 11,
"end": 31,
"name": "GT"
},
{
"begin": 8,
"end": 10,
"name": "ISZERO"
},
{
"begin": 8,
"end": 10,
"name": "PUSH [tag]",
"value": "3"
},
{
"begin": 8,
"end": 10,
"name": "JUMPI"
},
{
"begin": 44,
"end": 45,
"name": "PUSH",
"value": "0"
},
{
"begin": 41,
"end": 42,
"name": "DUP1"
},
{
"begin": 34,
"end": 46,
"name": "REVERT"
},
{
"begin": 8,
"end": 10,
"name": "tag",
"value": "3"
},
{
"begin": 8,
"end": 10,
"name": "JUMPDEST"
},
{
"begin": 62,
"end": 83,
"name": "DUP3"
},
{
"begin": 62,
"end": 83,
"name": "ADD"
},
{
"begin": 123,
"end": 127,
"name": "PUSH",
"value": "20"
},
{
"begin": 114,
"end": 128,
"name": "DUP2"
},
{
"begin": 114,
"end": 128,
"name": "ADD"
},
{
"begin": 138,
"end": 169,
"name": "DUP5"
},
{
"begin": 138,
"end": 169,
"name": "DUP2"
},
{
"begin": 138,
"end": 169,
"name": "GT"
},
{
"begin": 135,
"end": 137,
"name": "ISZERO"
},
{
"begin": 135,
"end": 137,
"name": "PUSH [tag]",
"value": "4"
},
{
"begin": 135,
"end": 137,
"name": "JUMPI"
},
{
"begin": 182,
"end": 183,
"name": "PUSH",
"value": "0"
},
{
"begin": 179,
"end": 180,
"name": "DUP1"
},
{
"begin": 172,
"end": 184,
"name": "REVERT"
},
{
"begin": 135,
"end": 137,
"name": "tag",
"value": "4"
},
{
"begin": 135,
"end": 137,
"name": "JUMPDEST"
},
{
"begin": 213,
"end": 223,
"name": "DUP2"
},
{
"begin": 213,
"end": 223,
"name": "MLOAD"
},
{
"begin": 261,
"end": 272,
"name": "PUSH",
"value": "100000000"
},
{
"begin": 244,
"end": 273,
"name": "DUP2"
},
{
"begin": 244,
"end": 273,
"name": "GT"
},
{
"begin": 285,
"end": 328,
"name": "DUP3"
},
{
"begin": 285,
"end": 328,
"name": "DUP3"
},
{
"begin": 285,
"end": 328,
"name": "ADD"
},
{
"begin": 282,
"end": 340,
"name": "DUP8"
},
{
"begin": -1,
"end": -1,
"name": "LT"
},
{
"begin": 233,
"end": 348,
"name": "OR"
},
{
"begin": 230,
"end": 232,
"name": "ISZERO"
},
{
"begin": 230,
"end": 232,
"name": "PUSH [tag]",
"value": "5"
},
{
"begin": 230,
"end": 232,
"name": "JUMPI"
},
{
"begin": 361,
"end": 362,
"name": "PUSH",
"value": "0"
},
{
"begin": 358,
"end": 359,
"name": "DUP1"
},
{
"begin": 351,
"end": 363,
"name": "REVERT"
},
{
"begin": 230,
"end": 232,
"name": "tag",
"value": "5"
},
{
"begin": 230,
"end": 232,
"name": "JUMPDEST"
},
{
"begin": 0,
"end": 372,
"name": "POP"
},
{
"begin": 0,
"end": 372,
"name": "POP"
},
{
"begin": 152,
"end": 499,
"name": "SWAP3"
},
{
"begin": 152,
"end": 499,
"name": "SWAP2"
},
{
"begin": 152,
"end": 499,
"name": "SWAP1"
},
{
"begin": 152,
"end": 499,
"name": "PUSH",
"value": "20"
},
{
"begin": 152,
"end": 499,
"name": "ADD"
},
{
"begin": 152,
"end": 499,
"name": "DUP1"
},
{
"begin": 152,
"end": 499,
"name": "MLOAD"
},
{
"begin": 19,
"end": 30,
"name": "PUSH",
"value": "100000000"
},
{
"begin": 14,
"end": 17,
"name": "DUP2"
},
{
"begin": 11,
"end": 31,
"name": "GT"
},
{
"begin": 8,
"end": 10,
"name": "ISZERO"
},
{
"begin": 8,
"end": 10,
"name": "PUSH [tag]",
"value": "6"
},
{
"begin": 8,
"end": 10,
"name": "JUMPI"
},
{
"begin": 44,
"end": 45,
"name": "PUSH",
"value": "0"
},
{
"begin": 41,
"end": 42,
"name": "DUP1"
},
{
"begin": 34,
"end": 46,
"name": "REVERT"
},
{
"begin": 8,
"end": 10,
"name": "tag",
"value": "6"
},
{
"begin": 8,
"end": 10,
"name": "JUMPDEST"
},
{
"begin": 62,
"end": 83,
"name": "DUP3"
},
{
"begin": 62,
"end": 83,
"name": "ADD"
},
{
"begin": 123,
"end": 127,
"name": "PUSH",
"value": "20"
},
{
"begin": 114,
"end": 128,
"name": "DUP2"
},
{
"begin": 114,
"end": 128,
"name": "ADD"
},
{
"begin": 138,
"end": 169,
"name": "DUP5"
},
{
"begin": 138,
"end": 169,
"name": "DUP2"
},
{
"begin": 138,
"end": 169,
"name": "GT"
},
{
"begin": 135,
"end": 137,
"name": "ISZERO"
},
{
"begin": 135,
"end": 137,
"name": "PUSH [tag]",
"value": "7"
},
{
"begin": 135,
"end": 137,
"name": "JUMPI"
},
{
"begin": 182,
"end": 183,
"name": "PUSH",
"value": "0"
},