Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 16 from a total of 16 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
OWNER_Set Operat... | 10585537 | 1650 days ago | IN | 0 ETH | 0.00091717 | ||||
Operator Send | 10585533 | 1650 days ago | IN | 0 ETH | 0.00154455 | ||||
OWNER_Set Operat... | 10585530 | 1650 days ago | IN | 0 ETH | 0.0008819 | ||||
Operator Send | 10585520 | 1650 days ago | IN | 0 ETH | 0.00224965 | ||||
OWNER_Set Operat... | 10585518 | 1650 days ago | IN | 0 ETH | 0.0008819 | ||||
Operator Send | 10585508 | 1650 days ago | IN | 0 ETH | 0.00198319 | ||||
OWNER_Set Operat... | 10585498 | 1650 days ago | IN | 0 ETH | 0.00079371 | ||||
Operator Send | 10585489 | 1650 days ago | IN | 0 ETH | 0.00279172 | ||||
OWNER_Set Operat... | 10585465 | 1650 days ago | IN | 0 ETH | 0.00147951 | ||||
OWNER_Set Operat... | 10585464 | 1650 days ago | IN | 0 ETH | 0.00215451 | ||||
OWNER_Set Operat... | 10585464 | 1650 days ago | IN | 0 ETH | 0.00215451 | ||||
OWNER_Set Operat... | 10585460 | 1650 days ago | IN | 0 ETH | 0.00215451 | ||||
OWNER_Set Operat... | 10267647 | 1699 days ago | IN | 0 ETH | 0.00035276 | ||||
OWNER_Set Operat... | 10267646 | 1699 days ago | IN | 0 ETH | 0.00095756 | ||||
OWNER_Set Operat... | 10179665 | 1713 days ago | IN | 0 ETH | 0.00287268 | ||||
OWNER_Set Swap I... | 10179664 | 1713 days ago | IN | 0 ETH | 0.00286056 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
AssertPool
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-06-10 */ pragma solidity >=0.5.1 <0.7.0; contract KOwnerable { address[] public _KContractOwners = [ address(0x7630A0f21Ac2FDe268eF62eBb1B06876DFe71909) ]; constructor() public { _KContractOwners.push(msg.sender); } modifier KOwnerOnly() { bool exist = false; for ( uint i = 0; i < _KContractOwners.length; i++ ) { if ( _KContractOwners[i] == msg.sender ) { exist = true; break; } } require(exist); _; } modifier KDAODefense() { uint256 size; address payable safeAddr = msg.sender; assembly {size := extcodesize(safeAddr)} require( size == 0, "DAO_Warning" ); _; } } contract KState is KOwnerable { uint public _CIDXX; Hosts public _KHost; constructor(uint cidxx) public { _CIDXX = cidxx; } } contract KContract is KState { modifier readonly {_;} modifier readwrite {_;} function implementcall() internal { (bool s, bytes memory r) = _KHost.getImplement(_CIDXX).delegatecall(msg.data); require(s); assembly { return( add(r, 0x20), returndatasize ) } } function implementcall(uint subimplID) internal { (bool s, bytes memory r) = _KHost.getImplementSub(_CIDXX, subimplID).delegatecall(msg.data); require(s); assembly { return( add(r, 0x20), returndatasize ) } } function _D(bytes calldata, uint m) external KOwnerOnly returns (bytes memory) { implementcall(m); } } pragma solidity >=0.5.0 <0.6.0; interface USDTInterface { function totalSupply() external view returns (uint); function balanceOf(address who) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function transfer(address to, uint value) external; function approve(address spender, uint value) external; function transferFrom(address from, address to, uint value) external; } pragma solidity >=0.5.1 <0.7.0; interface AssertPoolInterface{ enum AssertPoolName { Nullable, Prepare, Treasure, Awards, Events } function PoolNameFromOperator(address operator) external returns (AssertPoolName); function Allowance(address operator) external returns (uint); function OperatorSend(address to, uint amount) external; function Auth_RecipientDelegate(uint amount) external; } pragma solidity >=0.5.1 <0.7.0; contract AssertPoolState is AssertPoolInterface, KState(0xbdfa5467) { uint[5] public matchings = [ 0, 0.2 szabo, 0.2 szabo, 0.4 szabo, 0.2 szabo ]; uint[5] public availTotalAmouns = [ 0, 0, 0, 0, 0 ]; address[5] public operators = [ address(0x0), address(0x0), address(0x0), address(0x0), address(0x0) ]; USDTInterface internal usdtInterface; address internal authAddress; } contract Hosts { address public owner; mapping(uint => mapping(uint => address)) internal impls; mapping(uint => uint) internal time; constructor() public { owner = msg.sender; } modifier restricted() { if (msg.sender == owner) _; } function latestTime(uint CIDXX) external view restricted returns (uint) { return time[CIDXX]; } function setImplement(uint CIDXX, address implementer) external restricted { time[uint(CIDXX)] = now; impls[uint(CIDXX)][0] = implementer; } function setImplementSub(uint CIDXX, uint idx, address implementer) external restricted { time[uint(CIDXX)] = now; impls[uint(CIDXX)][idx] = implementer; } function getImplement(uint CIDXX) external view returns (address) { return impls[uint(CIDXX)][0]; } function getImplementSub(uint CIDXX, uint idx) external view returns (address) { return impls[uint(CIDXX)][idx]; } } pragma solidity >=0.5.1 <0.7.0; contract AssertPool is AssertPoolState, KContract { constructor( USDTInterface usdInc, Hosts host ) public { _KHost = host; usdtInterface = usdInc; } function OWNER_SetSwapInterface(address swapInc) external KOwnerOnly { authAddress = swapInc; } function OWNER_SetOperator(address operator, AssertPoolName poolName) external KOwnerOnly { operators[uint(poolName)] = operator; } function OWNER_SetMatchings( uint[4] calldata ms ) external KOwnerOnly { require( ms[0] + ms[1] + ms[2] + ms[3] == 1 szabo ); matchings[1] = ms[0]; matchings[2] = ms[1]; matchings[3] = ms[2]; matchings[4] = ms[3]; } function PoolNameFromOperator(address) external readonly returns (AssertPoolName) { super.implementcall(); } function Allowance(address) external readonly returns (uint) { super.implementcall(); } function OperatorSend(address, uint) external readwrite { super.implementcall(); } function Auth_RecipientDelegate(uint) external readwrite { super.implementcall(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract USDTInterface","name":"usdInc","type":"address"},{"internalType":"contract Hosts","name":"host","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":false,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Auth_RecipientDelegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[4]","name":"ms","type":"uint256[4]"}],"name":"OWNER_SetMatchings","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"enum AssertPoolInterface.AssertPoolName","name":"poolName","type":"uint8"}],"name":"OWNER_SetOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"swapInc","type":"address"}],"name":"OWNER_SetSwapInterface","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"OperatorSend","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PoolNameFromOperator","outputs":[{"internalType":"enum AssertPoolInterface.AssertPoolName","name":"","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"_CIDXX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"m","type":"uint256"}],"name":"_D","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_KContractOwners","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_KHost","outputs":[{"internalType":"contract Hosts","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"availTotalAmouns","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"matchings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"operators","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60a0604052737630a0f21ac2fde268ef62ebb1b06876dfe7190960809081526200002e9060009060016200019b565b506040805160a08101825260008152642e90edd00060208201819052918101829052645d21dba000606082015260808101919091526200007390600390600562000205565b506040805160a081018252600080825260208201819052918101829052606081018290526080810191909152620000af9060089060056200024d565b506040805160a081018252600080825260208201819052918101829052606081018290526080810191909152620000eb90600d90600562000283565b50348015620000f957600080fd5b5060405162000ca938038062000ca9833981810160405260408110156200011f57600080fd5b50805160209091015160008054600181810183559180527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563018054600160a060020a0319908116331790915563bdfa546790915560028054600160a060020a039384169083161790556012805492909316911617905562000314565b828054828255906000526020600020908101928215620001f3579160200282015b82811115620001f35782518254600160a060020a031916600160a060020a03909116178255602090920191600190910190620001bc565b5062000201929150620002cd565b5090565b82600581019282156200023f579160200282015b828111156200023f578251829064ffffffffff1690559160200191906001019062000219565b5062000201929150620002f7565b82600581019282156200023f579160200282015b828111156200023f578251829060ff1690559160200191906001019062000261565b8260058101928215620001f35791602002820182811115620001f35782518254600160a060020a031916600160a060020a03909116178255602090920191600190910190620001bc565b620002f491905b8082111562000201578054600160a060020a0319168155600101620002d4565b90565b620002f491905b80821115620002015760008155600101620002fe565b61098580620003246000396000f3fe608060405234801561001057600080fd5b5060043610610107576000357c010000000000000000000000000000000000000000000000000000000090048063b80d0157116100a9578063c5e8430e11610083578063c5e8430e1461035b578063d6ac9def14610394578063e28d4906146103c7578063f22947f1146103e457610107565b8063b80d0157146102e5578063c33426ba14610321578063c3e83f4b1461033e57610107565b806377cb9a7a116100e557806377cb9a7a1461019c578063812f4a52146101b2578063a3e01d55146101f8578063aa7046c6146102dd57610107565b80630cfd280f1461010c5780630dd3b2761461012657806323d6c8571461017d575b600080fd5b610114610400565b60408051918252519081900360200190f35b6101596004803603602081101561013c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610406565b6040518082600481111561016957fe5b60ff16815260200191505060405180910390f35b61019a6004803603602081101561019357600080fd5b5035610415565b005b6101146004803603602081101561013c57600080fd5b6101cf600480360360208110156101c857600080fd5b5035610420565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6102686004803603604081101561020e57600080fd5b81019060208101813564010000000081111561022957600080fd5b82018360208201111561023b57600080fd5b8035906020019184600183028401116401000000008311171561025d57600080fd5b919350915035610454565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a257818101518382015260200161028a565b50505050905090810190601f1680156102cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf6104dd565b61019a600480360360408110156102fb57600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff16906020013560ff166104f9565b6101146004803603602081101561033757600080fd5b50356105d1565b6101146004803603602081101561035457600080fd5b50356105e5565b61019a6004803603604081101561037157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356105f2565b61019a600480360360208110156103aa57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105fe565b6101cf600480360360208110156103dd57600080fd5b50356106bc565b61019a600480360360808110156103fa57600080fd5b506106e6565b60015481565b600061041061079f565b919050565b61041d61079f565b50565b6000818154811061042d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60606000805b6000548110156104c1573373ffffffffffffffffffffffffffffffffffffffff166000828154811061048857fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156104b957600191506104c1565b60010161045a565b50806104cc57600080fd5b6104d5836108ce565b509392505050565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b6000805b600054811015610564573373ffffffffffffffffffffffffffffffffffffffff166000828154811061052b57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561055c5760019150610564565b6001016104fd565b508061056f57600080fd5b82600d83600481111561057e57fe5b6005811061058857fe5b0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055505050565b600881600581106105de57fe5b0154905081565b600381600581106105de57fe5b6105fa61079f565b5050565b6000805b600054811015610669573373ffffffffffffffffffffffffffffffffffffffff166000828154811061063057fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156106615760019150610669565b600101610602565b508061067457600080fd5b50601380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600d81600581106106c957fe5b015473ffffffffffffffffffffffffffffffffffffffff16905081565b6000805b600054811015610751573373ffffffffffffffffffffffffffffffffffffffff166000828154811061071857fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156107495760019150610751565b6001016106ea565b508061075c57600080fd5b64e8d4a5100082356020840135016040840135016060840135011461078057600080fd5b5080356004556020810135600555604081013560065560600135600755565b600254600154604080517ff57e6f9d00000000000000000000000000000000000000000000000000000000815260048101929092525160009260609273ffffffffffffffffffffffffffffffffffffffff9091169163f57e6f9d91602480820192602092909190829003018186803b15801561081a57600080fd5b505afa15801561082e573d6000803e3d6000fd5b505050506040513d602081101561084457600080fd5b505160405173ffffffffffffffffffffffffffffffffffffffff9091169060009036908083838082843760405192019450600093509091505080830381855af49150503d80600081146108b3576040519150601f19603f3d011682016040523d82523d6000602084013e6108b8565b606091505b5091509150816108c757600080fd5b3d60208201f35b600254600154604080517fbee240960000000000000000000000000000000000000000000000000000000081526004810192909252602482018490525160009260609273ffffffffffffffffffffffffffffffffffffffff9091169163bee2409691604480820192602092909190829003018186803b15801561081a57600080fdfea265627a7a723158209d4226d343d8d000ad95ba67901e4658727180fabcf67641b5f5b0fdf5c11c6f64736f6c63430005100032000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000091d896557b12c59356ea5fe026810d2a32cc8d61
Deployed Bytecode
0x608060405234801561001057600080fd5b5060043610610107576000357c010000000000000000000000000000000000000000000000000000000090048063b80d0157116100a9578063c5e8430e11610083578063c5e8430e1461035b578063d6ac9def14610394578063e28d4906146103c7578063f22947f1146103e457610107565b8063b80d0157146102e5578063c33426ba14610321578063c3e83f4b1461033e57610107565b806377cb9a7a116100e557806377cb9a7a1461019c578063812f4a52146101b2578063a3e01d55146101f8578063aa7046c6146102dd57610107565b80630cfd280f1461010c5780630dd3b2761461012657806323d6c8571461017d575b600080fd5b610114610400565b60408051918252519081900360200190f35b6101596004803603602081101561013c57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610406565b6040518082600481111561016957fe5b60ff16815260200191505060405180910390f35b61019a6004803603602081101561019357600080fd5b5035610415565b005b6101146004803603602081101561013c57600080fd5b6101cf600480360360208110156101c857600080fd5b5035610420565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6102686004803603604081101561020e57600080fd5b81019060208101813564010000000081111561022957600080fd5b82018360208201111561023b57600080fd5b8035906020019184600183028401116401000000008311171561025d57600080fd5b919350915035610454565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a257818101518382015260200161028a565b50505050905090810190601f1680156102cf5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf6104dd565b61019a600480360360408110156102fb57600080fd5b50803573ffffffffffffffffffffffffffffffffffffffff16906020013560ff166104f9565b6101146004803603602081101561033757600080fd5b50356105d1565b6101146004803603602081101561035457600080fd5b50356105e5565b61019a6004803603604081101561037157600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81351690602001356105f2565b61019a600480360360208110156103aa57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105fe565b6101cf600480360360208110156103dd57600080fd5b50356106bc565b61019a600480360360808110156103fa57600080fd5b506106e6565b60015481565b600061041061079f565b919050565b61041d61079f565b50565b6000818154811061042d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b60606000805b6000548110156104c1573373ffffffffffffffffffffffffffffffffffffffff166000828154811061048857fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156104b957600191506104c1565b60010161045a565b50806104cc57600080fd5b6104d5836108ce565b509392505050565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b6000805b600054811015610564573373ffffffffffffffffffffffffffffffffffffffff166000828154811061052b57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141561055c5760019150610564565b6001016104fd565b508061056f57600080fd5b82600d83600481111561057e57fe5b6005811061058857fe5b0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055505050565b600881600581106105de57fe5b0154905081565b600381600581106105de57fe5b6105fa61079f565b5050565b6000805b600054811015610669573373ffffffffffffffffffffffffffffffffffffffff166000828154811061063057fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156106615760019150610669565b600101610602565b508061067457600080fd5b50601380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b600d81600581106106c957fe5b015473ffffffffffffffffffffffffffffffffffffffff16905081565b6000805b600054811015610751573373ffffffffffffffffffffffffffffffffffffffff166000828154811061071857fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1614156107495760019150610751565b6001016106ea565b508061075c57600080fd5b64e8d4a5100082356020840135016040840135016060840135011461078057600080fd5b5080356004556020810135600555604081013560065560600135600755565b600254600154604080517ff57e6f9d00000000000000000000000000000000000000000000000000000000815260048101929092525160009260609273ffffffffffffffffffffffffffffffffffffffff9091169163f57e6f9d91602480820192602092909190829003018186803b15801561081a57600080fd5b505afa15801561082e573d6000803e3d6000fd5b505050506040513d602081101561084457600080fd5b505160405173ffffffffffffffffffffffffffffffffffffffff9091169060009036908083838082843760405192019450600093509091505080830381855af49150503d80600081146108b3576040519150601f19603f3d011682016040523d82523d6000602084013e6108b8565b606091505b5091509150816108c757600080fd5b3d60208201f35b600254600154604080517fbee240960000000000000000000000000000000000000000000000000000000081526004810192909252602482018490525160009260609273ffffffffffffffffffffffffffffffffffffffff9091169163bee2409691604480820192602092909190829003018186803b15801561081a57600080fdfea265627a7a723158209d4226d343d8d000ad95ba67901e4658727180fabcf67641b5f5b0fdf5c11c6f64736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec700000000000000000000000091d896557b12c59356ea5fe026810d2a32cc8d61
-----Decoded View---------------
Arg [0] : usdInc (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
Arg [1] : host (address): 0x91D896557b12c59356EA5fe026810D2a32cC8D61
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [1] : 00000000000000000000000091d896557b12c59356ea5fe026810d2a32cc8d61
Deployed Bytecode Sourcemap
4279:1208:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4279:1208:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;807:18;;;:::i;:::-;;;;;;;;;;;;;;;;5038:122;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5038:122:0;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5387:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5387:97:0;;:::i;:::-;;5170:101;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;62:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;62:113:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;1532:114;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;1532:114:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;1532:114:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;1532:114:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;1532:114:0;;-1:-1:-1;1532:114:0;-1:-1:-1;1532:114:0;;:::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;1532:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;832:19;;;:::i;4608:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4608:145:0;;;;;;;;;;;:::i;2887:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2887:101:0;;:::i;2750:126::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2750:126:0;;:::i;5281:96::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5281:96:0;;;;;;;;;:::i;4489:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4489:109:0;;;;:::i;2999:152::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2999:152:0;;:::i;4763:265::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;4763:265:0;:::i;807:18::-;;;;:::o;5038:122::-;5104:14;5131:21;:19;:21::i;:::-;5038:122;;;:::o;5387:97::-;5455:21;:19;:21::i;:::-;5387:97;:::o;62:113::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62:113:0;:::o;1532:114::-;1597:12;294:10;;323:191;345:16;:23;341:27;;323:191;;;419:10;396:33;;:16;413:1;396:19;;;;;;;;;;;;;;;;;;;;:33;391:112;;;459:4;451:12;;482:5;;391:112;370:3;;323:191;;;;532:5;524:14;;;;;;1622:16;1636:1;1622:13;:16::i;:::-;1532:114;;;;;;:::o;832:19::-;;;;;;:::o;4608:145::-;294:10;;323:191;345:16;:23;341:27;;323:191;;;419:10;396:33;;:16;413:1;396:19;;;;;;;;;;;;;;;;;;;;:33;391:112;;;459:4;451:12;;482:5;;391:112;370:3;;323:191;;;;532:5;524:14;;;;;;4737:8;4709:9;4724:8;4719:14;;;;;;;;4709:25;;;;;;;;:36;;;;;;;;;;;;;;;-1:-1:-1;;;4608:145:0:o;2887:101::-;;;;;;;;;;;;;-1:-1:-1;2887:101:0;:::o;2750:126::-;;;;;;;;;5281:96;5348:21;:19;:21::i;:::-;5281:96;;:::o;4489:109::-;294:10;;323:191;345:16;:23;341:27;;323:191;;;419:10;396:33;;:16;413:1;396:19;;;;;;;;;;;;;;;;;;;;:33;391:112;;;459:4;451:12;;482:5;;391:112;370:3;;323:191;;;;532:5;524:14;;;;;;-1:-1:-1;4569:11:0;:21;;;;;;;;;;;;;;;4489:109::o;2999:152::-;;;;;;;;;;;;;;;-1:-1:-1;2999:152:0;:::o;4763:265::-;294:10;;323:191;345:16;:23;341:27;;323:191;;;419:10;396:33;;:16;413:1;396:19;;;;;;;;;;;;;;;;;;;;:33;391:112;;;459:4;451:12;;482:5;;391:112;370:3;;323:191;;;;532:5;524:14;;;;;;4887:7;4854:5;;4878;4862;;;4854:13;4870:5;;;;4854:21;4878:5;;;;4854:29;:40;4845:51;;;;;;-1:-1:-1;4922:5:0;;4907:12;:20;4922:5;4953;;;4938:12;:20;4984:5;;;;4969:12;:20;5015:5;;;5000:12;:20;4763:265::o;1020:234::-;1092:6;;;1112;1092:27;;;;;;;;;;;;;;1066:6;;1074:14;;1092:6;;;;;:19;;:27;;;;;;;;;;;;;;;:6;:27;;;5:2:-1;;;;30:1;27;20:12;5:2;1092:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;1092:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1092:27:0;:50;;:40;;;;;1133:8;;;;1092:50;1133:8;;;;1092:50;1:33:-1;1092:50:0;;45:16:-1;;;-1:-1;1092:50:0;;-1:-1:-1;1092:50:0;;-1:-1:-1;;1092:50:0;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;1065:77:0;;;;1161:1;1153:10;;;;;;1220:14;1213:4;1210:1;1206:12;1198:38;1260:262;1346:6;;;1369;1346:41;;;;;;;;;;;;;;;;;;;;1320:6;;1328:14;;1346:6;;;;;:22;;:41;;;;;;;;;;;;;;;:6;:41;;;5:2:-1;;;;30:1;27;20:12
Swarm Source
bzzr://9d4226d343d8d000ad95ba67901e4658727180fabcf67641b5f5b0fdf5c11c6f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.