Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,217 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22172924 | 20 days ago | IN | 0 ETH | 0.00006675 | ||||
Transfer | 22164128 | 22 days ago | IN | 0 ETH | 0.00006114 | ||||
Transfer | 22164127 | 22 days ago | IN | 0 ETH | 0.00005899 | ||||
Transfer | 21951291 | 51 days ago | IN | 0 ETH | 0.00002841 | ||||
Transfer | 21908930 | 57 days ago | IN | 0 ETH | 0.00006648 | ||||
Transfer | 21908926 | 57 days ago | IN | 0 ETH | 0.00006288 | ||||
Transfer | 21756486 | 79 days ago | IN | 0 ETH | 0.00006233 | ||||
Transfer | 21729473 | 82 days ago | IN | 0 ETH | 0.00013586 | ||||
Transfer | 21729470 | 82 days ago | IN | 0 ETH | 0.00012255 | ||||
Transfer | 21532438 | 110 days ago | IN | 0 ETH | 0.00140817 | ||||
Transfer | 21466444 | 119 days ago | IN | 0 ETH | 0.00089599 | ||||
Transfer | 21466273 | 119 days ago | IN | 0 ETH | 0.00073997 | ||||
Transfer | 21466195 | 119 days ago | IN | 0 ETH | 0.00105099 | ||||
Transfer | 21465572 | 119 days ago | IN | 0 ETH | 0.00039057 | ||||
Transfer | 21465535 | 119 days ago | IN | 0 ETH | 0.0006933 | ||||
Transfer | 21363645 | 134 days ago | IN | 0 ETH | 0.00036581 | ||||
Approve | 21334812 | 138 days ago | IN | 0 ETH | 0.00080646 | ||||
Transfer | 21319121 | 140 days ago | IN | 0 ETH | 0.00068968 | ||||
Transfer | 21319118 | 140 days ago | IN | 0 ETH | 0.00070251 | ||||
Transfer | 21304301 | 142 days ago | IN | 0 ETH | 0.00046288 | ||||
Transfer | 21275893 | 146 days ago | IN | 0 ETH | 0.00040578 | ||||
Transfer | 21275827 | 146 days ago | IN | 0 ETH | 0.00057714 | ||||
Transfer | 21172243 | 160 days ago | IN | 0 ETH | 0.00098213 | ||||
Transfer | 21168569 | 161 days ago | IN | 0 ETH | 0.00201185 | ||||
Transfer | 21163351 | 161 days ago | IN | 0 ETH | 0.00052344 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TelomereToken
Compiler Version
v0.4.26+commit.4563c3fc
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-11-04 */ /** *Submitted for verification at Etherscan.io on 2019-06-11 */ pragma solidity ^0.4.26; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { // Gas optimization: this is cheaper than asserting '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; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @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 public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() public { owner = msg.sender; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } /** * @dev Allows the current owner to relinquish control of the contract. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(owner); 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; } } /** * @title Pausable * @dev Base contract which allows children to implement an emergency stop mechanism. */ contract Pausable is Ownable { event Pause(); event Unpause(); bool public paused = false; /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused); _; } /** * @dev called by the owner to pause, triggers stopped state */ function pause() onlyOwner whenNotPaused public { paused = true; emit Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; emit Unpause(); } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/179 */ contract ERC20Basic { function totalSupply() public view returns (uint256); function balanceOf(address who) public view returns (uint256); function transfer(address to, uint256 value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev Transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred. */ function transfer(address _to, uint256 _value) public returns (bool) { require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true; } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address. */ function balanceOf(address _owner) public view returns (uint256) { return balances[_owner]; } } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public view returns (uint256); function transferFrom(address from, address to, uint256 value) public returns (bool); function approve(address spender, uint256 value) public returns (bool); event Approval( address indexed owner, address indexed spender, uint256 value ); function () public payable { revert(); } } /** * @title Burnable Token * @dev Token that can be irreversibly burned (destroyed). */ contract BurnableToken is BasicToken { event Burn(address indexed burner, uint256 value); /** * @dev Burns a specific amount of tokens. * @param _value The amount of token to be burned. */ function burn(uint256 _value) public { _burn(msg.sender, _value); } function _burn(address _who, uint256 _value) internal { require(_value <= balances[_who]); // no need to require value <= totalSupply, since that would imply the // sender's balance is greater than the totalSupply, which *should* be an assertion failure balances[_who] = balances[_who].sub(_value); totalSupply_ = totalSupply_.sub(_value); emit Burn(_who, _value); emit Transfer(_who, address(0), _value); } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred */ function transferFrom( address _from, address _to, uint256 _value ) public returns (bool) { require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * * Beware that changing an allowance with this method brings the risk that someone may use both the old * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } /** * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender. */ function allowance( address _owner, address _spender ) public view returns (uint256) { return allowed[_owner][_spender]; } /** * @dev Increase the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _addedValue The amount of tokens to increase the allowance by. */ function increaseApproval( address _spender, uint _addedValue ) public returns (bool) { allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } /** * @dev Decrease the amount of tokens that an owner allowed to a spender. * * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The address which will spend the funds. * @param _subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseApproval( address _spender, uint _subtractedValue ) public returns (bool) { uint oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true; } } /** * @title Mintable token * @dev Simple ERC20 Token example, with mintable token creation * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol */ contract MintableToken is StandardToken, Ownable { event Mint(address indexed to, uint256 amount); event MintFinished(); bool public mintingFinished = false; modifier canMint() { require(!mintingFinished); _; } modifier hasMintPermission() { require(msg.sender == owner); _; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint( address _to, uint256 _amount ) hasMintPermission canMint public returns (bool) { totalSupply_ = totalSupply_.add(_amount); balances[_to] = balances[_to].add(_amount); emit Mint(_to, _amount); emit Transfer(address(0), _to, _amount); return true; } /** * @dev Function to stop minting new tokens. * @return True if the operation was successful. */ function finishMinting() onlyOwner canMint public returns (bool) { mintingFinished = true; emit MintFinished(); return true; } } // File: openzeppelin-solidity/contracts/token/ERC20/CappedToken.sol /** * @title Capped token * @dev Mintable token with a token cap. */ contract CappedToken is MintableToken { uint256 public cap; constructor(uint256 _cap) public { require(_cap > 0); cap = _cap; } /** * @dev Function to mint tokens * @param _to The address that will receive the minted tokens. * @param _amount The amount of tokens to mint. * @return A boolean that indicates if the operation was successful. */ function mint( address _to, uint256 _amount ) public returns (bool) { require(totalSupply_.add(_amount) <= cap); return super.mint(_to, _amount); } } /** * @title Pausable token * @dev StandardToken modified with pausable transfers. **/ contract PausableToken is StandardToken, Pausable { mapping (address => bool) public frozenAccount; event FrozenFunds(address target, bool frozen); function transfer( address _to, uint256 _value ) public whenNotPaused returns (bool) { require(!frozenAccount[msg.sender]); return super.transfer(_to, _value); } function freezeAccount(address target, bool freeze) onlyOwner public { frozenAccount[target] = freeze; emit FrozenFunds(target, freeze); } function transferFrom( address _from, address _to, uint256 _value ) public whenNotPaused returns (bool) { require(!frozenAccount[_from]); return super.transferFrom(_from, _to, _value); } function approve( address _spender, uint256 _value ) public whenNotPaused returns (bool) { return super.approve(_spender, _value); } function increaseApproval( address _spender, uint _addedValue ) public whenNotPaused returns (bool success) { return super.increaseApproval(_spender, _addedValue); } function decreaseApproval( address _spender, uint _subtractedValue ) public whenNotPaused returns (bool success) { return super.decreaseApproval(_spender, _subtractedValue); } } /** * @title TelomereToken * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. * Note they can later distribute these tokens as they wish using `transfer` and other * `StandardToken` functions. */ contract TelomereToken is PausableToken, CappedToken, BurnableToken { string public name = "TelomereCoin"; string public symbol = "DTXY"; uint8 public decimals = 18; uint256 constant TOTAL_CAP = 116000000 * (10 ** uint256(decimals)); constructor() public CappedToken(TOTAL_CAP) { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","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":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"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"}]
Contract Creation Code
6003805460a060020a60ff02191690556005805460ff1916905560c0604052600c60808190527f54656c6f6d657265436f696e000000000000000000000000000000000000000060a09081526200005a9160079190620000f7565b506040805180820190915260048082527f44545859000000000000000000000000000000000000000000000000000000006020909201918252620000a191600891620000f7565b506009805460ff19166012179055348015620000bc57600080fd5b5060095460038054600160a060020a031916331790556306ea050060ff909116600a0a0260008111620000ee57600080fd5b6006556200019c565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013a57805160ff19168380011785556200016a565b828001600101855582156200016a579182015b828111156200016a5782518255916020019190600101906200014d565b50620001789291506200017c565b5090565b6200019991905b8082111562000178576000815560010162000183565b90565b6110cd80620001ac6000396000f30060806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014257806306fdde031461016b578063095ea7b3146101f557806318160ddd1461021957806323b872dd14610240578063313ce5671461026a578063355274ea146102955780633f4ba83a146102aa57806340c10f19146102c157806342966c68146102e55780635c975abb146102fd578063661884631461031257806370a0823114610336578063715018a6146103575780637d64bcb41461036c5780638456cb59146103815780638da5cb5b1461039657806395d89b41146103c7578063a9059cbb146103dc578063b414d4b614610400578063d73dd62314610421578063dd62ed3e14610445578063e724529c1461046c578063f2fde38b14610492575b600080fd5b34801561014e57600080fd5b506101576104b3565b604080519115158252519081900360200190f35b34801561017757600080fd5b506101806104bc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020157600080fd5b50610157600160a060020a036004351660243561054a565b34801561022557600080fd5b5061022e610575565b60408051918252519081900360200190f35b34801561024c57600080fd5b50610157600160a060020a036004358116906024351660443561057b565b34801561027657600080fd5b5061027f6105ce565b6040805160ff9092168252519081900360200190f35b3480156102a157600080fd5b5061022e6105d7565b3480156102b657600080fd5b506102bf6105dd565b005b3480156102cd57600080fd5b50610157600160a060020a0360043516602435610655565b3480156102f157600080fd5b506102bf600435610684565b34801561030957600080fd5b50610157610691565b34801561031e57600080fd5b50610157600160a060020a03600435166024356106a1565b34801561034257600080fd5b5061022e600160a060020a03600435166106c5565b34801561036357600080fd5b506102bf6106e0565b34801561037857600080fd5b5061015761074e565b34801561038d57600080fd5b506102bf6107b4565b3480156103a257600080fd5b506103ab610831565b60408051600160a060020a039092168252519081900360200190f35b3480156103d357600080fd5b50610180610840565b3480156103e857600080fd5b50610157600160a060020a036004351660243561089b565b34801561040c57600080fd5b50610157600160a060020a03600435166108dc565b34801561042d57600080fd5b50610157600160a060020a03600435166024356108f1565b34801561045157600080fd5b5061022e600160a060020a0360043581169060243516610915565b34801561047857600080fd5b506102bf600160a060020a03600435166024351515610940565b34801561049e57600080fd5b506102bf600160a060020a03600435166109bb565b60055460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b505050505081565b60035460009060a060020a900460ff161561056457600080fd5b61056e83836109db565b9392505050565b60015490565b60035460009060a060020a900460ff161561059557600080fd5b600160a060020a03841660009081526004602052604090205460ff16156105bb57600080fd5b6105c6848484610a41565b949350505050565b60095460ff1681565b60065481565b600354600160a060020a031633146105f457600080fd5b60035460a060020a900460ff16151561060c57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600060065461066f83600154610ba690919063ffffffff16565b111561067a57600080fd5b61056e8383610bb9565b61068e3382610caa565b50565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156106bb57600080fd5b61056e8383610d99565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146106f757600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600090600160a060020a0316331461076857600080fd5b60055460ff161561077857600080fd5b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a031633146107cb57600080fd5b60035460a060020a900460ff16156107e257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105425780601f1061051757610100808354040283529160200191610542565b60035460009060a060020a900460ff16156108b557600080fd5b3360009081526004602052604090205460ff16156108d257600080fd5b61056e8383610e89565b60046020526000908152604090205460ff1681565b60035460009060a060020a900460ff161561090b57600080fd5b61056e8383610f58565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461095757600080fd5b600160a060020a038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600354600160a060020a031633146109d257600080fd5b61068e81610ff1565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610a5857600080fd5b600160a060020a038416600090815260208190526040902054821115610a7d57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610aad57600080fd5b600160a060020a038416600090815260208190526040902054610ad6908363ffffffff61106f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610b0b908363ffffffff610ba616565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610b4d908363ffffffff61106f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611082833981519152929181900390910190a35060019392505050565b81810182811015610bb357fe5b92915050565b600354600090600160a060020a03163314610bd357600080fd5b60055460ff1615610be357600080fd5b600154610bf6908363ffffffff610ba616565b600155600160a060020a038316600090815260208190526040902054610c22908363ffffffff610ba616565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206110828339815191529181900360200190a350600192915050565b600160a060020a038216600090815260208190526040902054811115610ccf57600080fd5b600160a060020a038216600090815260208190526040902054610cf8908263ffffffff61106f16565b600160a060020a038316600090815260208190526040902055600154610d24908263ffffffff61106f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206110828339815191529181900360200190a35050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610dee57336000908152600260209081526040808320600160a060020a0388168452909152812055610e23565b610dfe818463ffffffff61106f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610ea057600080fd5b33600090815260208190526040902054821115610ebc57600080fd5b33600090815260208190526040902054610edc908363ffffffff61106f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610f0e908363ffffffff610ba616565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206110828339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610f8c908363ffffffff610ba616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a038116151561100657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111561107b57fe5b509003905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820164b78340ecf0fb2c6d1b0ca428fbe2af7d6eb7c60d1846c5459c294ec8d02e10029
Deployed Bytecode
0x60806040526004361061013d5763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166305d2035b811461014257806306fdde031461016b578063095ea7b3146101f557806318160ddd1461021957806323b872dd14610240578063313ce5671461026a578063355274ea146102955780633f4ba83a146102aa57806340c10f19146102c157806342966c68146102e55780635c975abb146102fd578063661884631461031257806370a0823114610336578063715018a6146103575780637d64bcb41461036c5780638456cb59146103815780638da5cb5b1461039657806395d89b41146103c7578063a9059cbb146103dc578063b414d4b614610400578063d73dd62314610421578063dd62ed3e14610445578063e724529c1461046c578063f2fde38b14610492575b600080fd5b34801561014e57600080fd5b506101576104b3565b604080519115158252519081900360200190f35b34801561017757600080fd5b506101806104bc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020157600080fd5b50610157600160a060020a036004351660243561054a565b34801561022557600080fd5b5061022e610575565b60408051918252519081900360200190f35b34801561024c57600080fd5b50610157600160a060020a036004358116906024351660443561057b565b34801561027657600080fd5b5061027f6105ce565b6040805160ff9092168252519081900360200190f35b3480156102a157600080fd5b5061022e6105d7565b3480156102b657600080fd5b506102bf6105dd565b005b3480156102cd57600080fd5b50610157600160a060020a0360043516602435610655565b3480156102f157600080fd5b506102bf600435610684565b34801561030957600080fd5b50610157610691565b34801561031e57600080fd5b50610157600160a060020a03600435166024356106a1565b34801561034257600080fd5b5061022e600160a060020a03600435166106c5565b34801561036357600080fd5b506102bf6106e0565b34801561037857600080fd5b5061015761074e565b34801561038d57600080fd5b506102bf6107b4565b3480156103a257600080fd5b506103ab610831565b60408051600160a060020a039092168252519081900360200190f35b3480156103d357600080fd5b50610180610840565b3480156103e857600080fd5b50610157600160a060020a036004351660243561089b565b34801561040c57600080fd5b50610157600160a060020a03600435166108dc565b34801561042d57600080fd5b50610157600160a060020a03600435166024356108f1565b34801561045157600080fd5b5061022e600160a060020a0360043581169060243516610915565b34801561047857600080fd5b506102bf600160a060020a03600435166024351515610940565b34801561049e57600080fd5b506102bf600160a060020a03600435166109bb565b60055460ff1681565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105425780601f1061051757610100808354040283529160200191610542565b820191906000526020600020905b81548152906001019060200180831161052557829003601f168201915b505050505081565b60035460009060a060020a900460ff161561056457600080fd5b61056e83836109db565b9392505050565b60015490565b60035460009060a060020a900460ff161561059557600080fd5b600160a060020a03841660009081526004602052604090205460ff16156105bb57600080fd5b6105c6848484610a41565b949350505050565b60095460ff1681565b60065481565b600354600160a060020a031633146105f457600080fd5b60035460a060020a900460ff16151561060c57600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b600060065461066f83600154610ba690919063ffffffff16565b111561067a57600080fd5b61056e8383610bb9565b61068e3382610caa565b50565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff16156106bb57600080fd5b61056e8383610d99565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a031633146106f757600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600090600160a060020a0316331461076857600080fd5b60055460ff161561077857600080fd5b6005805460ff191660011790556040517fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0890600090a150600190565b600354600160a060020a031633146107cb57600080fd5b60035460a060020a900460ff16156107e257600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105425780601f1061051757610100808354040283529160200191610542565b60035460009060a060020a900460ff16156108b557600080fd5b3360009081526004602052604090205460ff16156108d257600080fd5b61056e8383610e89565b60046020526000908152604090205460ff1681565b60035460009060a060020a900460ff161561090b57600080fd5b61056e8383610f58565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b600354600160a060020a0316331461095757600080fd5b600160a060020a038216600081815260046020908152604091829020805460ff191685151590811790915582519384529083015280517f48335238b4855f35377ed80f164e8c6f3c366e54ac00b96a6402d4a9814a03a59281900390910190a15050565b600354600160a060020a031633146109d257600080fd5b61068e81610ff1565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b6000600160a060020a0383161515610a5857600080fd5b600160a060020a038416600090815260208190526040902054821115610a7d57600080fd5b600160a060020a0384166000908152600260209081526040808320338452909152902054821115610aad57600080fd5b600160a060020a038416600090815260208190526040902054610ad6908363ffffffff61106f16565b600160a060020a038086166000908152602081905260408082209390935590851681522054610b0b908363ffffffff610ba616565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054610b4d908363ffffffff61106f16565b600160a060020a0380861660008181526002602090815260408083203384528252918290209490945580518681529051928716939192600080516020611082833981519152929181900390910190a35060019392505050565b81810182811015610bb357fe5b92915050565b600354600090600160a060020a03163314610bd357600080fd5b60055460ff1615610be357600080fd5b600154610bf6908363ffffffff610ba616565b600155600160a060020a038316600090815260208190526040902054610c22908363ffffffff610ba616565b600160a060020a03841660008181526020818152604091829020939093558051858152905191927f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592918290030190a2604080518381529051600160a060020a038516916000916000805160206110828339815191529181900360200190a350600192915050565b600160a060020a038216600090815260208190526040902054811115610ccf57600080fd5b600160a060020a038216600090815260208190526040902054610cf8908263ffffffff61106f16565b600160a060020a038316600090815260208190526040902055600154610d24908263ffffffff61106f16565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206110828339815191529181900360200190a35050565b336000908152600260209081526040808320600160a060020a038616845290915281205480831115610dee57336000908152600260209081526040808320600160a060020a0388168452909152812055610e23565b610dfe818463ffffffff61106f16565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b6000600160a060020a0383161515610ea057600080fd5b33600090815260208190526040902054821115610ebc57600080fd5b33600090815260208190526040902054610edc908363ffffffff61106f16565b3360009081526020819052604080822092909255600160a060020a03851681522054610f0e908363ffffffff610ba616565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206110828339815191529281900390910190a350600192915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054610f8c908363ffffffff610ba616565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a038116151561100657600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111561107b57fe5b509003905600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820164b78340ecf0fb2c6d1b0ca428fbe2af7d6eb7c60d1846c5459c294ec8d02e10029
Deployed Bytecode Sourcemap
14971:318:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6077:8;;;11470:35;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11470:35:0;;;;;;;;;;;;;;;;;;;;;;15046;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15046:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;15046:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14115:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14115:171:0;-1:-1:-1;;;;;14115:171:0;;;;;;;4655:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4655:85:0;;;;;;;;;;;;;;;;;;;;13877:232;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13877:232:0;-1:-1:-1;;;;;13877:232:0;;;;;;;;;;;;15124:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15124:26:0;;;;;;;;;;;;;;;;;;;;;;;12695:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12695:18:0;;;;3823:95;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3823:95:0;;;;;;13044:188;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13044:188:0;-1:-1:-1;;;;;13044:188:0;;;;;;;6408:75;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6408:75:0;;;;;3202:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3202:26:0;;;;14502:214;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14502:214:0;-1:-1:-1;;;;;14502:214:0;;;;;;;5439:101;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;5439:101:0;-1:-1:-1;;;;;5439:101:0;;;;;2299:114;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2299:114:0;;;;12353:144;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12353:144:0;;;;3643:93;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3643:93:0;;;;1681:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1681:20:0;;;;;;;;-1:-1:-1;;;;;1681:20:0;;;;;;;;;;;;;;15088:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15088:29:0;;;;13500:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13500:206:0;-1:-1:-1;;;;;13500:206:0;;;;;;;13392:46;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13392:46:0;-1:-1:-1;;;;;13392:46:0;;;;;14292:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14292:204:0;-1:-1:-1;;;;;14292:204:0;;;;;;;9263:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;9263:162:0;-1:-1:-1;;;;;9263:162:0;;;;;;;;;;13716:151;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13716:151:0;-1:-1:-1;;;;;13716:151:0;;;;;;;;;2581:105;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;2581:105:0;-1:-1:-1;;;;;2581:105:0;;;;;11470:35;;;;;;:::o;15046:::-;;;;;;;;;;;;;;;-1:-1:-1;;15046:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14115:171::-;3378:6;;14226:4;;-1:-1:-1;;;3378:6:0;;;;3377:7;3369:16;;;;;;14249:31;14263:8;14273:6;14249:13;:31::i;:::-;14242:38;14115:171;-1:-1:-1;;;14115:171:0:o;4655:85::-;4722:12;;4655:85;:::o;13877:232::-;3378:6;;14008:4;;-1:-1:-1;;;3378:6:0;;;;3377:7;3369:16;;;;;;-1:-1:-1;;;;;14030:20:0;;;;;;:13;:20;;;;;;;;14029:21;14021:30;;;;;;14065:38;14084:5;14091:3;14096:6;14065:18;:38::i;:::-;14058:45;13877:232;-1:-1:-1;;;;13877:232:0:o;15124:26::-;;;;;;:::o;12695:18::-;;;;:::o;3823:95::-;2184:5;;-1:-1:-1;;;;;2184:5:0;2170:10;:19;2162:28;;;;;;3538:6;;-1:-1:-1;;;3538:6:0;;;;3530:15;;;;;;;;3877:6;:14;;-1:-1:-1;;3877:14:0;;;3903:9;;;;3886:5;;3903:9;3823:95::o;13044:188::-;13129:4;13182:3;;13153:25;13170:7;13153:12;;:16;;:25;;;;:::i;:::-;:32;;13145:41;;;;;;13202:24;13213:3;13218:7;13202:10;:24::i;6408:75::-;6452:25;6458:10;6470:6;6452:5;:25::i;:::-;6408:75;:::o;3202:26::-;;;-1:-1:-1;;;3202:26:0;;;;;:::o;14502:214::-;3378:6;;14629:12;;-1:-1:-1;;;3378:6:0;;;;3377:7;3369:16;;;;;;14660:50;14683:8;14693:16;14660:22;:50::i;5439:101::-;-1:-1:-1;;;;;5518:16:0;5495:7;5518:16;;;;;;;;;;;;5439:101::o;2299:114::-;2184:5;;-1:-1:-1;;;;;2184:5:0;2170:10;:19;2162:28;;;;;;2376:5;;2357:25;;-1:-1:-1;;;;;2376:5:0;;;;2357:25;;2376:5;;2357:25;2389:5;:18;;-1:-1:-1;;2389:18:0;;;2299:114::o;12353:144::-;2184:5;;12412:4;;-1:-1:-1;;;;;2184:5:0;2170:10;:19;2162:28;;;;;;11549:15;;;;11548:16;11540:25;;;;;;12425:15;:22;;-1:-1:-1;;12425:22:0;12443:4;12425:22;;;12459:14;;;;12425:15;;12459:14;-1:-1:-1;12487:4:0;12353:144;:::o;3643:93::-;2184:5;;-1:-1:-1;;;;;2184:5:0;2170:10;:19;2162:28;;;;;;3378:6;;-1:-1:-1;;;3378:6:0;;;;3377:7;3369:16;;;;;;3698:6;:13;;-1:-1:-1;;3698:13:0;-1:-1:-1;;;3698:13:0;;;3723:7;;;;3698:13;;3723:7;3643:93::o;1681:20::-;;;-1:-1:-1;;;;;1681:20:0;;:::o;15088:29::-;;;;;;;;;;;;;;;-1:-1:-1;;15088:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13500:206;3378:6;;13607:4;;-1:-1:-1;;;3378:6:0;;;;3377:7;3369:16;;;;;;13646:10;13632:25;;;;:13;:25;;;;;;;;13631:26;13623:35;;;;;;13673:27;13688:3;13693:6;13673:14;:27::i;13392:46::-;;;;;;;;;;;;;;;:::o;14292:204::-;3378:6;;14414:12;;-1:-1:-1;;;3378:6:0;;;;3377:7;3369:16;;;;;;14445:45;14468:8;14478:11;14445:22;:45::i;9263:162::-;-1:-1:-1;;;;;9394:15:0;;;9368:7;9394:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;9263:162::o;13716:151::-;2184:5;;-1:-1:-1;;;;;2184:5:0;2170:10;:19;2162:28;;;;;;-1:-1:-1;;;;;13792:21:0;;;;;;:13;:21;;;;;;;;;:30;;-1:-1:-1;;13792:30:0;;;;;;;;;;13834:27;;;;;;;;;;;;;;;;;;;;;13716:151;;:::o;2581:105::-;2184:5;;-1:-1:-1;;;;;2184:5:0;2170:10;:19;2162:28;;;;;;2651:29;2670:9;2651:18;:29::i;8744:192::-;8832:10;8811:4;8824:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;8824:29:0;;;;;;;;;;;:38;;;8874;;;;;;;8811:4;;8824:29;;8832:10;;8874:38;;;;;;;;-1:-1:-1;8926:4:0;8744:192;;;;:::o;7620:489::-;7734:4;-1:-1:-1;;;;;7758:17:0;;;;7750:26;;;;;;-1:-1:-1;;;;;7801:15:0;;:8;:15;;;;;;;;;;;7791:25;;;7783:34;;;;;;-1:-1:-1;;;;;7842:14:0;;;;;;:7;:14;;;;;;;;7857:10;7842:26;;;;;;;;7832:36;;;7824:45;;;;;;-1:-1:-1;;;;;7896:15:0;;:8;:15;;;;;;;;;;;:27;;7916:6;7896:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;7878:15:0;;;:8;:15;;;;;;;;;;;:45;;;;7946:13;;;;;;;:25;;7964:6;7946:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;7930:13:0;;;:8;:13;;;;;;;;;;;:41;;;;8007:14;;;;;:7;:14;;;;;8022:10;8007:26;;;;;;;:38;;8038:6;8007:38;:30;:38;:::i;:::-;-1:-1:-1;;;;;7978:14:0;;;;;;;:7;:14;;;;;;;;7993:10;7978:26;;;;;;;;:67;;;;8057:28;;;;;;;;;;;7978:14;;-1:-1:-1;;;;;;;;;;;8057:28:0;;;;;;;;;;-1:-1:-1;8099:4:0;7620:489;;;;;:::o;1329:127::-;1409:5;;;1428:6;;;;1421:14;;;;1329:127;;;;:::o;11907:326::-;11643:5;;12028:4;;-1:-1:-1;;;;;11643:5:0;11629:10;:19;11621:28;;;;;;11549:15;;;;11548:16;11540:25;;;;;;12059:12;;:25;;12076:7;12059:25;:16;:25;:::i;:::-;12044:12;:40;-1:-1:-1;;;;;12107:13:0;;:8;:13;;;;;;;;;;;:26;;12125:7;12107:26;:17;:26;:::i;:::-;-1:-1:-1;;;;;12091:13:0;;:8;:13;;;;;;;;;;;;:42;;;;12145:18;;;;;;;12091:13;;12145:18;;;;;;;;;12175:34;;;;;;;;-1:-1:-1;;;;;12175:34:0;;;12192:1;;-1:-1:-1;;;;;;;;;;;12175:34:0;;;;;;;;-1:-1:-1;12223:4:0;11907:326;;;;:::o;6489:447::-;-1:-1:-1;;;;;6568:14:0;;:8;:14;;;;;;;;;;;6558:24;;;6550:33;;;;;;-1:-1:-1;;;;;6782:14:0;;:8;:14;;;;;;;;;;;:26;;6801:6;6782:26;:18;:26;:::i;:::-;-1:-1:-1;;;;;6765:14:0;;:8;:14;;;;;;;;;;:43;6830:12;;:24;;6847:6;6830:24;:16;:24;:::i;:::-;6815:12;:39;6866:18;;;;;;;;-1:-1:-1;;;;;6866:18:0;;;;;;;;;;;;;6896:34;;;;;;;;6919:1;;-1:-1:-1;;;;;6896:34:0;;;-1:-1:-1;;;;;;;;;;;6896:34:0;;;;;;;;6489:447;;:::o;10672:440::-;10820:10;10780:4;10812:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10812:29:0;;;;;;;;;;10852:27;;;10848:168;;;10898:10;10922:1;10890:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10890:29:0;;;;;;;;;:33;10848:168;;;10978:30;:8;10991:16;10978:30;:12;:30;:::i;:::-;10954:10;10946:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10946:29:0;;;;;;;;;:62;10848:168;11036:10;11058:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;11027:61:0;;11058:29;;;;;;;;;;;11027:61;;;;;;;;;11036:10;11027:61;;;;;;;;;;;-1:-1:-1;11102:4:0;;10672:440;-1:-1:-1;;;10672:440:0:o;4901:329::-;4964:4;-1:-1:-1;;;;;4985:17:0;;;;4977:26;;;;;;5037:10;5028:8;:20;;;;;;;;;;;5018:30;;;5010:39;;;;;;5090:10;5081:8;:20;;;;;;;;;;;:32;;5106:6;5081:32;:24;:32;:::i;:::-;5067:10;5058:8;:20;;;;;;;;;;;:55;;;;-1:-1:-1;;;;;5136:13:0;;;;;;:25;;5154:6;5136:25;:17;:25;:::i;:::-;-1:-1:-1;;;;;5120:13:0;;:8;:13;;;;;;;;;;;;:41;;;;5173:33;;;;;;;5120:13;;5182:10;;-1:-1:-1;;;;;;;;;;;5173:33:0;;;;;;;;;-1:-1:-1;5220:4:0;4901:329;;;;:::o;9894:304::-;10062:10;9997:4;10054:19;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10054:29:0;;;;;;;;;;:46;;10088:11;10054:46;:33;:46;:::i;:::-;10021:10;10013:19;;;;:7;:19;;;;;;;;-1:-1:-1;;;;;10013:29:0;;;;;;;;;;;;:88;;;10113:61;;;;;;10013:29;;10113:61;;;;;;;;;;;-1:-1:-1;10188:4:0;9894:304;;;;:::o;2827:175::-;-1:-1:-1;;;;;2898:23:0;;;;2890:32;;;;;;2955:5;;2934:38;;-1:-1:-1;;;;;2934:38:0;;;;2955:5;;2934:38;;2955:5;;2934:38;2979:5;:17;;-1:-1:-1;;2979:17:0;-1:-1:-1;;;;;2979:17:0;;;;;;;;;;2827:175::o;1149:113::-;1207:7;1230:6;;;;1223:14;;;;-1:-1:-1;1251:5:0;;;1149:113::o
Swarm Source
bzzr://164b78340ecf0fb2c6d1b0ca428fbe2af7d6eb7c60d1846c5459c294ec8d02e1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.