Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xB5183040...DA4200B06 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
TokenVesting
Compiler Version
v0.5.2+commit.1df8f40c
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-15 */ // File: openzeppelin-solidity/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.2; /** * @title ERC20 interface * @dev see https://eips.ethereum.org/EIPS/eip-20 */ interface IERC20 { function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } // File: openzeppelin-solidity/contracts/math/SafeMath.sol pragma solidity ^0.5.2; /** * @title SafeMath * @dev Unsigned math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two unsigned integers, reverts on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two unsigned integers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } // File: openzeppelin-solidity/contracts/utils/Address.sol pragma solidity ^0.5.2; /** * Utility library of inline functions on addresses */ library Address { /** * Returns whether the target address is a contract * @dev This function will return false if invoked during the constructor of a contract, * as the code is not actually created until after the constructor finishes. * @param account address of the account to check * @return whether the target address is a contract */ function isContract(address account) internal view returns (bool) { uint256 size; // XXX Currently there is no better way to check if there is a contract in an address // than to check the size of the code at that address. // See https://ethereum.stackexchange.com/a/14016/36603 // for more details about how this works. // TODO Check this again before the Serenity release, because all addresses will be // contracts then. // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } // File: openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.2; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require((value == 0) || (token.allowance(address(this), spender) == 0)); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value); callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must equal true). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. require(address(token).isContract()); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool))); } } } // File: openzeppelin-solidity/contracts/ownership/Ownable.sol pragma solidity ^0.5.2; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @return the address of the owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. * @notice Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: openzeppelin-solidity/contracts/drafts/TokenVesting.sol pragma solidity ^0.5.2; /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting is Ownable { // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore, // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a // cliff period of a year and a duration of four years, are safe to use. // solhint-disable not-rely-on-time using SafeMath for uint256; using SafeERC20 for IERC20; event TokensReleased(address token, uint256 amount); event TokenVestingRevoked(address token); // beneficiary of tokens after they are released address private _beneficiary; // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp. uint256 private _cliff; uint256 private _start; uint256 private _duration; bool private _revocable; mapping (address => uint256) private _released; mapping (address => bool) private _revoked; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * beneficiary, gradually in a linear fashion until start + duration. By then all * of the balance will have vested. * @param beneficiary address of the beneficiary to whom vested tokens are transferred * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest * @param start the time (as Unix time) at which point vesting starts * @param duration duration in seconds of the period in which the tokens will vest * @param revocable whether the vesting is revocable or not */ constructor (address beneficiary, uint256 start, uint256 cliffDuration, uint256 duration, bool revocable) public { require(beneficiary != address(0)); require(cliffDuration <= duration); require(duration > 0); require(start.add(duration) > block.timestamp); _beneficiary = beneficiary; _revocable = revocable; _duration = duration; _cliff = start.add(cliffDuration); _start = start; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the cliff time of the token vesting. */ function cliff() public view returns (uint256) { return _cliff; } /** * @return the start time of the token vesting. */ function start() public view returns (uint256) { return _start; } /** * @return the duration of the token vesting. */ function duration() public view returns (uint256) { return _duration; } /** * @return true if the vesting is revocable. */ function revocable() public view returns (bool) { return _revocable; } /** * @return the amount of the token released. */ function released(address token) public view returns (uint256) { return _released[token]; } /** * @return true if the token is revoked. */ function revoked(address token) public view returns (bool) { return _revoked[token]; } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(IERC20 token) public { uint256 unreleased = _releasableAmount(token); require(unreleased > 0); _released[address(token)] = _released[address(token)].add(unreleased); token.safeTransfer(_beneficiary, unreleased); emit TokensReleased(address(token), unreleased); } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param token ERC20 token which is being vested */ function revoke(IERC20 token) public onlyOwner { require(_revocable); require(!_revoked[address(token)]); uint256 balance = token.balanceOf(address(this)); uint256 unreleased = _releasableAmount(token); uint256 refund = balance.sub(unreleased); _revoked[address(token)] = true; token.safeTransfer(owner(), refund); emit TokenVestingRevoked(address(token)); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function _releasableAmount(IERC20 token) private view returns (uint256) { return _vestedAmount(token).sub(_released[address(token)]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function _vestedAmount(IERC20 token) private view returns (uint256) { uint256 currentBalance = token.balanceOf(address(this)); uint256 totalBalance = currentBalance.add(_released[address(token)]); if (block.timestamp < _cliff) { return 0; } else if (block.timestamp >= _start.add(_duration) || _revoked[address(token)]) { return totalBalance; } else { return totalBalance.mul(block.timestamp.sub(_start)).div(_duration); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"duration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cliff","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"revoke","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"revocable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"}],"name":"released","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"}],"name":"revoked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"beneficiary","type":"address"},{"name":"start","type":"uint256"},{"name":"cliffDuration","type":"uint256"},{"name":"duration","type":"uint256"},{"name":"revocable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokensReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"}],"name":"TokenVestingRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ec576000357c010000000000000000000000000000000000000000000000000000000090048063872a7810116100a95780639852595c116100835780639852595c14610297578063be9a6555146102ef578063f2fde38b1461030d578063fa01dc0614610351576100ec565b8063872a7810146102095780638da5cb5b1461022b5780638f32d59b14610275576100ec565b80630fb5a6b4146100f157806313d033c01461010f578063191655871461012d57806338af3eed14610171578063715018a6146101bb57806374a8f103146101c5575b600080fd5b6100f96103ad565b6040518082815260200191505060405180910390f35b6101176103b7565b6040518082815260200191505060405180910390f35b61016f6004803603602081101561014357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506103c1565b005b61017961052e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101c3610558565b005b610207600480360360208110156101db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061062a565b005b6102116108a0565b604051808215151515815260200191505060405180910390f35b6102336108b7565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61027d6108e0565b604051808215151515815260200191505060405180910390f35b6102d9600480360360208110156102ad57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610937565b6040518082815260200191505060405180910390f35b6102f7610980565b6040518082815260200191505060405180910390f35b61034f6004803603602081101561032357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061098a565b005b6103936004803603602081101561036757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109a9565b604051808215151515815260200191505060405180910390f35b6000600454905090565b6000600254905090565b60006103cc826109ff565b90506000811115156103dd57600080fd5b61042f81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a6290919063ffffffff16565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506104bf600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16828473ffffffffffffffffffffffffffffffffffffffff16610a839092919063ffffffff16565b7fc7798891864187665ac6dd119286e44ec13f014527aeeb2b8eb3fd413df931798282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6105606108e0565b151561056b57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6106326108e0565b151561063d57600080fd5b600560009054906101000a900460ff16151561065857600080fd5b600760008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515156106b157600080fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561074c57600080fd5b505afa158015610760573d6000803e3d6000fd5b505050506040513d602081101561077657600080fd5b810190808051906020019092919050505090506000610794836109ff565b905060006107ab8284610b7090919063ffffffff16565b90506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506108376108106108b7565b828673ffffffffffffffffffffffffffffffffffffffff16610a839092919063ffffffff16565b7f39983c6d4d174a7aee564f449d4a5c3c7ac9649d72b7793c56901183996f8af684604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150505050565b6000600560009054906101000a900460ff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600354905090565b6109926108e0565b151561099d57600080fd5b6109a681610b92565b50565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610a5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a4d84610c8c565b610b7090919063ffffffff16565b9050919050565b6000808284019050838110151515610a7957600080fd5b8091505092915050565b610b6b838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb90507c0100000000000000000000000000000000000000000000000000000000028484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610e92565b505050565b6000828211151515610b8157600080fd5b600082840390508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614151515610bce57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff166000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610d2857600080fd5b505afa158015610d3c573d6000803e3d6000fd5b505050506040513d6020811015610d5257600080fd5b810190808051906020019092919050505090506000610db9600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205483610a6290919063ffffffff16565b9050600254421015610dd057600092505050610e8d565b610de7600454600354610a6290919063ffffffff16565b42101580610e3e5750600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610e4d578092505050610e8d565b610e88600454610e7a610e6b60035442610b7090919063ffffffff16565b84610fc790919063ffffffff16565b61100590919063ffffffff16565b925050505b919050565b610eb18273ffffffffffffffffffffffffffffffffffffffff1661102f565b1515610ebc57600080fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b602083101515610f0d5780518252602082019150602081019050602083039250610ee8565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610f6f576040519150601f19603f3d011682016040523d82523d6000602084013e610f74565b606091505b5091509150811515610f8557600080fd5b600081511115610fc157808060200190516020811015610fa457600080fd5b81019080805190602001909291905050501515610fc057600080fd5b5b50505050565b600080831415610fda5760009050610fff565b60008284029050828482811515610fed57fe5b04141515610ffa57600080fd5b809150505b92915050565b6000808211151561101557600080fd5b6000828481151561102257fe5b0490508091505092915050565b600080823b90506000811191505091905056fea165627a7a72305820943e86f2721bf299e2f9720903cfbec593b519991027449773ca8f8b44c6ad530029
Deployed Bytecode Sourcemap
10055:5515:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10055:5515:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12839:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12525:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13574:337;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13574:337:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;12355:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8965:140;;;:::i;:::-;;14138:445;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14138:445:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13000:84;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8175:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;8510:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13160:105;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13160:105:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12683:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9282:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;9282:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13337:100;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13337:100:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12839:85;12880:7;12907:9;;12900:16;;12839:85;:::o;12525:79::-;12563:7;12590:6;;12583:13;;12525:79;:::o;13574:337::-;13623:18;13644:24;13662:5;13644:17;:24::i;:::-;13623:45;;13702:1;13689:10;:14;13681:23;;;;;;;;13745:41;13775:10;13745:9;:25;13763:5;13745:25;;;;;;;;;;;;;;;;:29;;:41;;;;:::i;:::-;13717:9;:25;13735:5;13717:25;;;;;;;;;;;;;;;:69;;;;13799:44;13818:12;;;;;;;;;;;13832:10;13799:5;:18;;;;:44;;;;;:::i;:::-;13861:42;13884:5;13892:10;13861:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;13574:337;;:::o;12355:91::-;12399:7;12426:12;;;;;;;;;;;12419:19;;12355:91;:::o;8965:140::-;8387:9;:7;:9::i;:::-;8379:18;;;;;;;;9064:1;9027:40;;9048:6;;;;;;;;;;;9027:40;;;;;;;;;;;;9095:1;9078:6;;:19;;;;;;;;;;;;;;;;;;8965:140::o;14138:445::-;8387:9;:7;:9::i;:::-;8379:18;;;;;;;;14204:10;;;;;;;;;;;14196:19;;;;;;;;14235:8;:24;14252:5;14235:24;;;;;;;;;;;;;;;;;;;;;;;;;14234:25;14226:34;;;;;;;;14273:15;14291:5;:15;;;14315:4;14291:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14291:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14291:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14291:30:0;;;;;;;;;;;;;;;;14273:48;;14334:18;14355:24;14373:5;14355:17;:24::i;:::-;14334:45;;14390:14;14407:23;14419:10;14407:7;:11;;:23;;;;:::i;:::-;14390:40;;14470:4;14443:8;:24;14460:5;14443:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;14487:35;14506:7;:5;:7::i;:::-;14515:6;14487:5;:18;;;;:35;;;;;:::i;:::-;14540;14568:5;14540:35;;;;;;;;;;;;;;;;;;;;;;8408:1;;;14138:445;:::o;13000:84::-;13042:4;13066:10;;;;;;;;;;;13059:17;;13000:84;:::o;8175:79::-;8213:7;8240:6;;;;;;;;;;;8233:13;;8175:79;:::o;8510:92::-;8550:4;8588:6;;;;;;;;;;;8574:20;;:10;:20;;;8567:27;;8510:92;:::o;13160:105::-;13214:7;13241:9;:16;13251:5;13241:16;;;;;;;;;;;;;;;;13234:23;;13160:105;;;:::o;12683:79::-;12721:7;12748:6;;12741:13;;12683:79;:::o;9282:109::-;8387:9;:7;:9::i;:::-;8379:18;;;;;;;;9355:28;9374:8;9355:18;:28::i;:::-;9282:109;:::o;13337:100::-;13390:4;13414:8;:15;13423:5;13414:15;;;;;;;;;;;;;;;;;;;;;;;;;13407:22;;13337:100;;;:::o;14753:149::-;14816:7;14843:51;14868:9;:25;14886:5;14868:25;;;;;;;;;;;;;;;;14843:20;14857:5;14843:13;:20::i;:::-;:24;;:51;;;;:::i;:::-;14836:58;;14753:149;;;:::o;2400:150::-;2458:7;2478:9;2494:1;2490;:5;2478:17;;2519:1;2514;:6;;2506:15;;;;;;;;2541:1;2534:8;;;2400:150;;;;:::o;4675:176::-;4758:85;4777:5;4807;:14;;;:23;;;;4832:2;4836:5;4784:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;4784:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;4784:58:0;4758:18;:85::i;:::-;4675:176;;;:::o;2162:150::-;2220:7;2253:1;2248;:6;;2240:15;;;;;;;;2266:9;2282:1;2278;:5;2266:17;;2303:1;2296:8;;;2162:150;;;;:::o;9541:187::-;9635:1;9615:22;;:8;:22;;;;9607:31;;;;;;;;9683:8;9654:38;;9675:6;;;;;;;;;;;9654:38;;;;;;;;;;;;9712:8;9703:6;;:17;;;;;;;;;;;;;;;;;;9541:187;:::o;15043:524::-;15102:7;15122:22;15147:5;:15;;;15171:4;15147:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15147:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;15147:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15147:30:0;;;;;;;;;;;;;;;;15122:55;;15188:20;15211:45;15230:9;:25;15248:5;15230:25;;;;;;;;;;;;;;;;15211:14;:18;;:45;;;;:::i;:::-;15188:68;;15291:6;;15273:15;:24;15269:291;;;15321:1;15314:8;;;;;;15269:291;15363:21;15374:9;;15363:6;;:10;;:21;;;;:::i;:::-;15344:15;:40;;:68;;;;15388:8;:24;15405:5;15388:24;;;;;;;;;;;;;;;;;;;;;;;;;15344:68;15340:220;;;15436:12;15429:19;;;;;;15340:220;15488:60;15538:9;;15488:45;15505:27;15525:6;;15505:15;:19;;:27;;;;:::i;:::-;15488:12;:16;;:45;;;;:::i;:::-;:49;;:60;;;;:::i;:::-;15481:67;;;;15043:524;;;;:::o;6532:887::-;7084:27;7092:5;7084:25;;;:27::i;:::-;7076:36;;;;;;;;7186:12;7200:23;7235:5;7227:19;;7247:4;7227:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;51:19;36:153;;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;7227:25: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;;7185:67:0;;;;7271:7;7263:16;;;;;;;;7316:1;7296:10;:17;:21;7292:120;;;7380:10;7369:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;7369:30:0;;;;;;;;;;;;;;;;7361:39;;;;;;;;7292:120;6532:887;;;;:::o;1153:433::-;1211:7;1460:1;1455;:6;1451:47;;;1485:1;1478:8;;;;1451:47;1510:9;1526:1;1522;:5;1510:17;;1555:1;1550;1546;:5;;;;;;;;:10;1538:19;;;;;;;;1577:1;1570:8;;;1153:433;;;;;:::o;1721:303::-;1779:7;1878:1;1874;:5;1866:14;;;;;;;;1891:9;1907:1;1903;:5;;;;;;;;1891:17;;2015:1;2008:8;;;1721:303;;;;:::o;3380:627::-;3440:4;3457:12;3964:7;3952:20;3944:28;;3998:1;3991:4;:8;3984:15;;;3380:627;;;:::o
Swarm Source
bzzr://943e86f2721bf299e2f9720903cfbec593b519991027449773ca8f8b44c6ad53
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.