Feature Tip: Add private address tag to any address under My Name Tag !
There are reports that this address was used in a Phishing scam. Please exercise caution when interacting with it. Reported by GoPlusSecurity.
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 325 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 10721121 | 1636 days ago | IN | 0 ETH | 0.00354355 | ||||
Transfer | 10466647 | 1675 days ago | IN | 0 ETH | 0.00183657 | ||||
Transfer | 10466049 | 1675 days ago | IN | 0 ETH | 0.0007953 | ||||
Transfer | 10465984 | 1675 days ago | IN | 0 ETH | 0.0007953 | ||||
Transfer | 10462611 | 1676 days ago | IN | 0 ETH | 0.00254295 | ||||
Transfer | 10462610 | 1676 days ago | IN | 0 ETH | 0.00254295 | ||||
Transfer | 10462582 | 1676 days ago | IN | 0 ETH | 0.00248591 | ||||
Transfer | 10426831 | 1681 days ago | IN | 0 ETH | 0.0033208 | ||||
Transfer | 10425383 | 1681 days ago | IN | 0 ETH | 0.00079494 | ||||
Transfer | 10425375 | 1681 days ago | IN | 0 ETH | 0.00079494 | ||||
Transfer | 10425370 | 1681 days ago | IN | 0 ETH | 0.00079458 | ||||
Transfer | 10424147 | 1682 days ago | IN | 0 ETH | 0.00079494 | ||||
Transfer | 10424135 | 1682 days ago | IN | 0 ETH | 0.00079458 | ||||
Transfer | 10424050 | 1682 days ago | IN | 0 ETH | 0.00079494 | ||||
Transfer | 10424032 | 1682 days ago | IN | 0 ETH | 0.00079494 | ||||
Transfer | 10398739 | 1685 days ago | IN | 0 ETH | 0.00161889 | ||||
Transfer | 10398470 | 1685 days ago | IN | 0 ETH | 0.00078734 | ||||
Transfer | 10397906 | 1686 days ago | IN | 0 ETH | 0.00392038 | ||||
Transfer | 10325936 | 1697 days ago | IN | 0 ETH | 0.00105992 | ||||
Transfer | 10325934 | 1697 days ago | IN | 0 ETH | 0.00105992 | ||||
Transfer | 10325928 | 1697 days ago | IN | 0 ETH | 0.00188815 | ||||
Transfer | 10325657 | 1697 days ago | IN | 0 ETH | 0.00105992 | ||||
Transfer | 10325616 | 1697 days ago | IN | 0 ETH | 0.00339429 | ||||
Transfer | 10325615 | 1697 days ago | IN | 0 ETH | 0.00286842 | ||||
Transfer | 10325608 | 1697 days ago | IN | 0 ETH | 0.00277493 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ATUToken
Compiler Version
v0.4.17+commit.bdeb9e52
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-05-11 */ /* Issued by ATU Chain */ pragma solidity ^0.4.17; /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; assert(c / a == b); return c; } 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 c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 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; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function Ownable() 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 transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { if (newOwner != address(0)) { owner = newOwner; } } } /** * @title ERC20Basic * @dev Simpler version of ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20Basic { uint public _totalSupply; function totalSupply() public constant returns (uint); function balanceOf(address who) public constant returns (uint); function transfer(address to, uint value) public; event Transfer(address indexed from, address indexed to, uint value); } /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ contract ERC20 is ERC20Basic { function allowance(address owner, address spender) public constant returns (uint); function transferFrom(address from, address to, uint value) public; function approve(address spender, uint value) public; event Approval(address indexed owner, address indexed spender, uint value); } /** * @title Basic token * @dev Basic version of StandardToken, with no allowances. */ contract BasicToken is Ownable, ERC20Basic { using SafeMath for uint; mapping(address => uint) public balances; // additional variables for use if transaction fees ever became necessary uint public basisPointsRate = 0; uint public maximumFee = 0; /** * @dev Fix for the ERC20 short address attack. */ modifier onlyPayloadSize(uint size) { require(!(msg.data.length < size + 4)); _; } /** * @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, uint _value) public onlyPayloadSize(2 * 32) { uint fee = (_value.mul(basisPointsRate)).div(10000); if (fee > maximumFee) { fee = maximumFee; } uint sendAmount = _value.sub(fee); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); Transfer(msg.sender, owner, fee); } Transfer(msg.sender, _to, sendAmount); } /** * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint representing the amount owned by the passed address. */ function balanceOf(address _owner) public constant returns (uint balance) { return balances[_owner]; } } /** * @title Standard ERC20 token * * @dev Implementation of the basic standard token. * @dev https://github.com/ethereum/EIPs/issues/20 * @dev Based oncode by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol */ contract StandardToken is BasicToken, ERC20 { mapping (address => mapping (address => uint)) public allowed; uint public constant MAX_UINT = 2**256 - 1; /** * @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 uint the amount of tokens to be transferred */ function transferFrom(address _from, address _to, uint _value) public onlyPayloadSize(3 * 32) { var _allowance = allowed[_from][msg.sender]; // Check is not needed because sub(_allowance, _value) will already throw if this condition is not met // if (_value > _allowance) throw; uint fee = (_value.mul(basisPointsRate)).div(10000); if (fee > maximumFee) { fee = maximumFee; } if (_allowance < MAX_UINT) { allowed[_from][msg.sender] = _allowance.sub(_value); } uint sendAmount = _value.sub(fee); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(sendAmount); if (fee > 0) { balances[owner] = balances[owner].add(fee); Transfer(_from, owner, fee); } Transfer(_from, _to, sendAmount); } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * @param _spender The address which will spend the funds. * @param _value The amount of tokens to be spent. */ function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { // To change the approve amount you first have to reduce the addresses` // allowance to zero by calling `approve(_spender, 0)` if it is not // already 0 to mitigate the race condition described here: // https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 require(!((_value != 0) && (allowed[msg.sender][_spender] != 0))); allowed[msg.sender][_spender] = _value; Approval(msg.sender, _spender, _value); } /** * @dev Function to check the amount of tokens than 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 uint specifying the amount of tokens still available for the spender. */ function allowance(address _owner, address _spender) public constant returns (uint remaining) { return allowed[_owner][_spender]; } } /** * @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; Pause(); } /** * @dev called by the owner to unpause, returns to normal state */ function unpause() onlyOwner whenPaused public { paused = false; Unpause(); } } contract BlackList is Ownable, BasicToken { /////// Getters to allow the same blacklist to be used also by other contracts (including upgraded Tether) /////// function getBlackListStatus(address _maker) external constant returns (bool) { return isBlackListed[_maker]; } function getOwner() external constant returns (address) { return owner; } mapping (address => bool) public isBlackListed; function addBlackList (address _evilUser) public onlyOwner { isBlackListed[_evilUser] = true; AddedBlackList(_evilUser); } function removeBlackList (address _clearedUser) public onlyOwner { isBlackListed[_clearedUser] = false; RemovedBlackList(_clearedUser); } function destroyBlackFunds (address _blackListedUser) public onlyOwner { require(isBlackListed[_blackListedUser]); uint dirtyFunds = balanceOf(_blackListedUser); balances[_blackListedUser] = 0; _totalSupply -= dirtyFunds; DestroyedBlackFunds(_blackListedUser, dirtyFunds); } event DestroyedBlackFunds(address _blackListedUser, uint _balance); event AddedBlackList(address _user); event RemovedBlackList(address _user); } contract UpgradedStandardToken is StandardToken{ // those methods are called by the legacy contract // and they must ensure msg.sender to be the contract address function transferByLegacy(address from, address to, uint value) public; function transferFromByLegacy(address sender, address from, address spender, uint value) public; function approveByLegacy(address from, address spender, uint value) public; } contract ATUToken is Pausable, StandardToken, BlackList { string public name; string public symbol; uint public decimals; address public upgradedAddress; bool public deprecated; // The contract can be initialized with a number of tokens // All the tokens are deposited to the owner address // // @param _balance Initial supply of the contract // @param _name Token Name // @param _symbol Token symbol // @param _decimals Token decimals function ATUToken(uint _initialSupply, string _name, string _symbol, uint _decimals) public { _totalSupply = _initialSupply; name = _name; symbol = _symbol; decimals = _decimals; balances[owner] = _initialSupply; deprecated = false; } // Forward ERC20 methods to upgraded contract if this one is deprecated function transfer(address _to, uint _value) public whenNotPaused { require(!isBlackListed[msg.sender]); if (deprecated) { return UpgradedStandardToken(upgradedAddress).transferByLegacy(msg.sender, _to, _value); } else { return super.transfer(_to, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function transferFrom(address _from, address _to, uint _value) public whenNotPaused { require(!isBlackListed[_from]); if (deprecated) { return UpgradedStandardToken(upgradedAddress).transferFromByLegacy(msg.sender, _from, _to, _value); } else { return super.transferFrom(_from, _to, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function balanceOf(address who) public constant returns (uint) { if (deprecated) { return UpgradedStandardToken(upgradedAddress).balanceOf(who); } else { return super.balanceOf(who); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function approve(address _spender, uint _value) public onlyPayloadSize(2 * 32) { if (deprecated) { return UpgradedStandardToken(upgradedAddress).approveByLegacy(msg.sender, _spender, _value); } else { return super.approve(_spender, _value); } } // Forward ERC20 methods to upgraded contract if this one is deprecated function allowance(address _owner, address _spender) public constant returns (uint remaining) { if (deprecated) { return StandardToken(upgradedAddress).allowance(_owner, _spender); } else { return super.allowance(_owner, _spender); } } // deprecate current contract in favour of a new one function deprecate(address _upgradedAddress) public onlyOwner { deprecated = true; upgradedAddress = _upgradedAddress; Deprecate(_upgradedAddress); } // deprecate current contract if favour of a new one function totalSupply() public constant returns (uint) { if (deprecated) { return StandardToken(upgradedAddress).totalSupply(); } else { return _totalSupply; } } // Redeem tokens. // These tokens are withdrawn from the owner address // if the balance must be enough to cover the redeem // or the call will fail. // @param _amount Number of tokens to be issued function redeem(uint amount) public onlyOwner { require(_totalSupply >= amount); require(balances[owner] >= amount); _totalSupply -= amount; balances[owner] -= amount; Redeem(amount); } function setParams(uint newBasisPoints, uint newMaxFee) public onlyOwner { // Ensure transparency by hardcoding limit beyond which fees can never be added require(newBasisPoints < 20); require(newMaxFee < 50); basisPointsRate = newBasisPoints; maximumFee = newMaxFee.mul(10**decimals); Params(basisPointsRate, maximumFee); } // Called when tokens are redeemed event Redeem(uint amount); // Called when contract is deprecated event Deprecate(address newAddress); // Called if contract ever adds fees event Params(uint feeBasisPoints, uint maxFee); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_upgradedAddress","type":"address"}],"name":"deprecate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradedAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maximumFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"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":"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBasisPoints","type":"uint256"},{"name":"newMaxFee","type":"uint256"}],"name":"setParams","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"basisPointsRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isBlackListed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT","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":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_decimals","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAddress","type":"address"}],"name":"Deprecate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"feeBasisPoints","type":"uint256"},{"indexed":false,"name":"maxFee","type":"uint256"}],"name":"Params","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"RemovedBlackList","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"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]
Contract Creation Code
60606040526000805460a060020a60ff0219168155600381905560045534156200002857600080fd5b6040516200170338038062001703833981016040528080519190602001805182019190602001805182019190602001805160008054600160a060020a03191633600160a060020a0316179055600186905591506007905083805162000092929160200190620000dd565b506008828051620000a8929160200190620000dd565b50600955505060008054600160a060020a0316815260026020526040902055600a805460a060020a60ff021916905562000182565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200012057805160ff191683800117855562000150565b8280016001018555821562000150579182015b828111156200015057825182559160200191906001019062000133565b506200015e92915062000162565b5090565b6200017f91905b808211156200015e576000815560010162000169565b90565b61157180620001926000396000f3006060604052361561016f5763ffffffff60e060020a60003504166306fdde0381146101745780630753c30c146101fe578063095ea7b31461021f5780630e136b19146102415780630ecb93c01461026857806318160ddd1461028757806323b872dd146102ac57806326976e3f146102d457806327e235e314610303578063313ce5671461032257806335390714146103355780633eaaf86b146103485780633f4ba83a1461035b57806359bf1abe1461036e5780635c6581651461038d5780635c975abb146103b257806370a08231146103c55780638456cb59146103e4578063893d20e8146103f75780638da5cb5b1461040a57806395d89b411461041d578063a9059cbb14610430578063c0324c7714610452578063db006a751461046b578063dd62ed3e14610481578063dd644f72146104a6578063e47d6060146104b9578063e4997dc5146104d8578063e5b5019a146104f7578063f2fde38b1461050a578063f3bdc22814610529575b600080fd5b341561017f57600080fd5b610187610548565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c35780820151838201526020016101ab565b50505050905090810190601f1680156101f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020957600080fd5b61021d600160a060020a03600435166105e6565b005b341561022a57600080fd5b61021d600160a060020a0360043516602435610689565b341561024c57600080fd5b610254610736565b604051901515815260200160405180910390f35b341561027357600080fd5b61021d600160a060020a0360043516610746565b341561029257600080fd5b61029a6107c6565b60405190815260200160405180910390f35b34156102b757600080fd5b61021d600160a060020a036004358116906024351660443561084d565b34156102df57600080fd5b6102e7610911565b604051600160a060020a03909116815260200160405180910390f35b341561030e57600080fd5b61029a600160a060020a0360043516610920565b341561032d57600080fd5b61029a610932565b341561034057600080fd5b61029a610938565b341561035357600080fd5b61029a61093e565b341561036657600080fd5b61021d610944565b341561037957600080fd5b610254600160a060020a03600435166109c3565b341561039857600080fd5b61029a600160a060020a03600435811690602435166109e5565b34156103bd57600080fd5b610254610a02565b34156103d057600080fd5b61029a600160a060020a0360043516610a12565b34156103ef57600080fd5b61021d610ab2565b341561040257600080fd5b6102e7610b36565b341561041557600080fd5b6102e7610b45565b341561042857600080fd5b610187610b54565b341561043b57600080fd5b61021d600160a060020a0360043516602435610bbf565b341561045d57600080fd5b61021d600435602435610c98565b341561047657600080fd5b61021d600435610d2e565b341561048c57600080fd5b61029a600160a060020a0360043581169060243516610ddf565b34156104b157600080fd5b61029a610e8a565b34156104c457600080fd5b610254600160a060020a0360043516610e90565b34156104e357600080fd5b61021d600160a060020a0360043516610ea5565b341561050257600080fd5b61029a610f22565b341561051557600080fd5b61021d600160a060020a0360043516610f28565b341561053457600080fd5b61021d600160a060020a0360043516610f7e565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105de5780601f106105b3576101008083540402835291602001916105de565b820191906000526020600020905b8154815290600101906020018083116105c157829003601f168201915b505050505081565b60005433600160a060020a0390811691161461060157600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051600160a060020a03909116815260200160405180910390a150565b6040604436101561069957600080fd5b600a5460a060020a900460ff161561072757600a54600160a060020a031663aee92d3333858560405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b151561070e57600080fd5b6102c65a03f1151561071f57600080fd5b505050610731565b610731838361103c565b505050565b600a5460a060020a900460ff1681565b60005433600160a060020a0390811691161461076157600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc90829051600160a060020a03909116815260200160405180910390a150565b600a5460009060a060020a900460ff161561084557600a54600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561082357600080fd5b6102c65a03f1151561083457600080fd5b50505060405180519050905061084a565b506001545b90565b60005460a060020a900460ff161561086457600080fd5b600160a060020a03831660009081526006602052604090205460ff161561088a57600080fd5b600a5460a060020a900460ff161561090657600a54600160a060020a0316638b477adb3385858560405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b151561070e57600080fd5b6107318383836110ee565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b60005433600160a060020a0390811691161461095f57600080fd5b60005460a060020a900460ff16151561097757600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610aa257600a54600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610a8057600080fd5b6102c65a03f11515610a9157600080fd5b5050506040518051905090506109e0565b610aab826112ed565b90506109e0565b60005433600160a060020a03908116911614610acd57600080fd5b60005460a060020a900460ff1615610ae457600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600054600160a060020a031690565b600054600160a060020a031681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105de5780601f106105b3576101008083540402835291602001916105de565b60005460a060020a900460ff1615610bd657600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610bfc57600080fd5b600a5460a060020a900460ff1615610c8a57600a54600160a060020a0316636e18980a33848460405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610c7157600080fd5b6102c65a03f11515610c8257600080fd5b505050610c94565b610c948282611308565b5050565b60005433600160a060020a03908116911614610cb357600080fd5b60148210610cc057600080fd5b60328110610ccd57600080fd5b6003829055600954610ce9908290600a0a63ffffffff61148c16565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610d4957600080fd5b60015481901015610d5957600080fd5b60008054600160a060020a031681526002602052604090205481901015610d7f57600080fd5b60018054829003905560008054600160a060020a031681526002602052604090819020805483900390557f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449082905190815260200160405180910390a150565b600a5460009060a060020a900460ff1615610e7757600a54600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b1515610e5557600080fd5b6102c65a03f11515610e6657600080fd5b505050604051805190509050610e84565b610e8183836114c2565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b60005433600160a060020a03908116911614610ec057600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c90829051600160a060020a03909116815260200160405180910390a150565b60001981565b60005433600160a060020a03908116911614610f4357600080fd5b600160a060020a03811615610f7b576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000805433600160a060020a03908116911614610f9a57600080fd5b600160a060020a03821660009081526006602052604090205460ff161515610fc157600080fd5b610fca82610a12565b600160a060020a038316600090815260026020526040808220919091556001805483900390559091507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6908390839051600160a060020a03909216825260208201526040908101905180910390a15050565b6040604436101561104c57600080fd5b811580159061107f5750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b1561108957600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b600080806060606436101561110257600080fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450611154906127109061114890889063ffffffff61148c16565b9063ffffffff6114ed16565b92506004548311156111665760045492505b6000198410156111a857611180848663ffffffff61150416565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b6111b8858463ffffffff61150416565b600160a060020a0388166000908152600260205260409020549092506111e4908663ffffffff61150416565b600160a060020a038089166000908152600260205260408082209390935590881681522054611219908363ffffffff61151616565b600160a060020a0387166000908152600260205260408120919091558311156112af5760008054600160a060020a0316815260026020526040902054611265908463ffffffff61151616565b60008054600160a060020a03908116825260026020526040808320939093559054811691908916906000805160206115268339815191529086905190815260200160405180910390a35b85600160a060020a031687600160a060020a03166000805160206115268339815191528460405190815260200160405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561131b57600080fd5b6113366127106111486003548761148c90919063ffffffff16565b92506004548311156113485760045492505b611358848463ffffffff61150416565b600160a060020a033316600090815260026020526040902054909250611384908563ffffffff61150416565b600160a060020a0333811660009081526002602052604080822093909355908716815220546113b9908363ffffffff61151616565b600160a060020a0386166000908152600260205260408120919091558311156114505760008054600160a060020a0316815260026020526040902054611405908463ffffffff61151616565b60008054600160a060020a0390811682526002602052604080832093909355905481169133909116906000805160206115268339815191529086905190815260200160405180910390a35b84600160a060020a031633600160a060020a03166000805160206115268339815191528460405190815260200160405180910390a35050505050565b60008083151561149f57600091506114bb565b508282028284828115156114af57fe5b04146114b757fe5b8091505b5092915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60008082848115156114fb57fe5b04949350505050565b60008282111561151057fe5b50900390565b6000828201838110156114b757fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058201145bbd7bcfccec9c21a58053207afc066db60696b6c15d34e47befad8f89070002900000000000000000000000000000000000000000048cab98f1671af58000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000941545520436861696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034154550000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6060604052361561016f5763ffffffff60e060020a60003504166306fdde0381146101745780630753c30c146101fe578063095ea7b31461021f5780630e136b19146102415780630ecb93c01461026857806318160ddd1461028757806323b872dd146102ac57806326976e3f146102d457806327e235e314610303578063313ce5671461032257806335390714146103355780633eaaf86b146103485780633f4ba83a1461035b57806359bf1abe1461036e5780635c6581651461038d5780635c975abb146103b257806370a08231146103c55780638456cb59146103e4578063893d20e8146103f75780638da5cb5b1461040a57806395d89b411461041d578063a9059cbb14610430578063c0324c7714610452578063db006a751461046b578063dd62ed3e14610481578063dd644f72146104a6578063e47d6060146104b9578063e4997dc5146104d8578063e5b5019a146104f7578063f2fde38b1461050a578063f3bdc22814610529575b600080fd5b341561017f57600080fd5b610187610548565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156101c35780820151838201526020016101ab565b50505050905090810190601f1680156101f05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561020957600080fd5b61021d600160a060020a03600435166105e6565b005b341561022a57600080fd5b61021d600160a060020a0360043516602435610689565b341561024c57600080fd5b610254610736565b604051901515815260200160405180910390f35b341561027357600080fd5b61021d600160a060020a0360043516610746565b341561029257600080fd5b61029a6107c6565b60405190815260200160405180910390f35b34156102b757600080fd5b61021d600160a060020a036004358116906024351660443561084d565b34156102df57600080fd5b6102e7610911565b604051600160a060020a03909116815260200160405180910390f35b341561030e57600080fd5b61029a600160a060020a0360043516610920565b341561032d57600080fd5b61029a610932565b341561034057600080fd5b61029a610938565b341561035357600080fd5b61029a61093e565b341561036657600080fd5b61021d610944565b341561037957600080fd5b610254600160a060020a03600435166109c3565b341561039857600080fd5b61029a600160a060020a03600435811690602435166109e5565b34156103bd57600080fd5b610254610a02565b34156103d057600080fd5b61029a600160a060020a0360043516610a12565b34156103ef57600080fd5b61021d610ab2565b341561040257600080fd5b6102e7610b36565b341561041557600080fd5b6102e7610b45565b341561042857600080fd5b610187610b54565b341561043b57600080fd5b61021d600160a060020a0360043516602435610bbf565b341561045d57600080fd5b61021d600435602435610c98565b341561047657600080fd5b61021d600435610d2e565b341561048c57600080fd5b61029a600160a060020a0360043581169060243516610ddf565b34156104b157600080fd5b61029a610e8a565b34156104c457600080fd5b610254600160a060020a0360043516610e90565b34156104e357600080fd5b61021d600160a060020a0360043516610ea5565b341561050257600080fd5b61029a610f22565b341561051557600080fd5b61021d600160a060020a0360043516610f28565b341561053457600080fd5b61021d600160a060020a0360043516610f7e565b60078054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105de5780601f106105b3576101008083540402835291602001916105de565b820191906000526020600020905b8154815290600101906020018083116105c157829003601f168201915b505050505081565b60005433600160a060020a0390811691161461060157600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790557fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e81604051600160a060020a03909116815260200160405180910390a150565b6040604436101561069957600080fd5b600a5460a060020a900460ff161561072757600a54600160a060020a031663aee92d3333858560405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b151561070e57600080fd5b6102c65a03f1151561071f57600080fd5b505050610731565b610731838361103c565b505050565b600a5460a060020a900460ff1681565b60005433600160a060020a0390811691161461076157600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191660011790557f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc90829051600160a060020a03909116815260200160405180910390a150565b600a5460009060a060020a900460ff161561084557600a54600160a060020a03166318160ddd6000604051602001526040518163ffffffff1660e060020a028152600401602060405180830381600087803b151561082357600080fd5b6102c65a03f1151561083457600080fd5b50505060405180519050905061084a565b506001545b90565b60005460a060020a900460ff161561086457600080fd5b600160a060020a03831660009081526006602052604090205460ff161561088a57600080fd5b600a5460a060020a900460ff161561090657600a54600160a060020a0316638b477adb3385858560405160e060020a63ffffffff8716028152600160a060020a0394851660048201529284166024840152921660448201526064810191909152608401600060405180830381600087803b151561070e57600080fd5b6107318383836110ee565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b60005433600160a060020a0390811691161461095f57600080fd5b60005460a060020a900460ff16151561097757600080fd5b6000805474ff0000000000000000000000000000000000000000191690557f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3360405160405180910390a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610aa257600a54600160a060020a03166370a082318360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b1515610a8057600080fd5b6102c65a03f11515610a9157600080fd5b5050506040518051905090506109e0565b610aab826112ed565b90506109e0565b60005433600160a060020a03908116911614610acd57600080fd5b60005460a060020a900460ff1615610ae457600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1790557f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62560405160405180910390a1565b600054600160a060020a031690565b600054600160a060020a031681565b60088054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156105de5780601f106105b3576101008083540402835291602001916105de565b60005460a060020a900460ff1615610bd657600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610bfc57600080fd5b600a5460a060020a900460ff1615610c8a57600a54600160a060020a0316636e18980a33848460405160e060020a63ffffffff8616028152600160a060020a0393841660048201529190921660248201526044810191909152606401600060405180830381600087803b1515610c7157600080fd5b6102c65a03f11515610c8257600080fd5b505050610c94565b610c948282611308565b5050565b60005433600160a060020a03908116911614610cb357600080fd5b60148210610cc057600080fd5b60328110610ccd57600080fd5b6003829055600954610ce9908290600a0a63ffffffff61148c16565b60048190556003547fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e9160405191825260208201526040908101905180910390a15050565b60005433600160a060020a03908116911614610d4957600080fd5b60015481901015610d5957600080fd5b60008054600160a060020a031681526002602052604090205481901015610d7f57600080fd5b60018054829003905560008054600160a060020a031681526002602052604090819020805483900390557f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449082905190815260200160405180910390a150565b600a5460009060a060020a900460ff1615610e7757600a54600160a060020a031663dd62ed3e848460006040516020015260405160e060020a63ffffffff8516028152600160a060020a03928316600482015291166024820152604401602060405180830381600087803b1515610e5557600080fd5b6102c65a03f11515610e6657600080fd5b505050604051805190509050610e84565b610e8183836114c2565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b60005433600160a060020a03908116911614610ec057600080fd5b600160a060020a03811660009081526006602052604090819020805460ff191690557fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c90829051600160a060020a03909116815260200160405180910390a150565b60001981565b60005433600160a060020a03908116911614610f4357600080fd5b600160a060020a03811615610f7b576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000805433600160a060020a03908116911614610f9a57600080fd5b600160a060020a03821660009081526006602052604090205460ff161515610fc157600080fd5b610fca82610a12565b600160a060020a038316600090815260026020526040808220919091556001805483900390559091507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6908390839051600160a060020a03909216825260208201526040908101905180910390a15050565b6040604436101561104c57600080fd5b811580159061107f5750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b1561108957600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a3505050565b600080806060606436101561110257600080fd5b600160a060020a0380881660009081526005602090815260408083203390941683529290522054600354909450611154906127109061114890889063ffffffff61148c16565b9063ffffffff6114ed16565b92506004548311156111665760045492505b6000198410156111a857611180848663ffffffff61150416565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b6111b8858463ffffffff61150416565b600160a060020a0388166000908152600260205260409020549092506111e4908663ffffffff61150416565b600160a060020a038089166000908152600260205260408082209390935590881681522054611219908363ffffffff61151616565b600160a060020a0387166000908152600260205260408120919091558311156112af5760008054600160a060020a0316815260026020526040902054611265908463ffffffff61151616565b60008054600160a060020a03908116825260026020526040808320939093559054811691908916906000805160206115268339815191529086905190815260200160405180910390a35b85600160a060020a031687600160a060020a03166000805160206115268339815191528460405190815260200160405180910390a350505050505050565b600160a060020a031660009081526002602052604090205490565b6000806040604436101561131b57600080fd5b6113366127106111486003548761148c90919063ffffffff16565b92506004548311156113485760045492505b611358848463ffffffff61150416565b600160a060020a033316600090815260026020526040902054909250611384908563ffffffff61150416565b600160a060020a0333811660009081526002602052604080822093909355908716815220546113b9908363ffffffff61151616565b600160a060020a0386166000908152600260205260408120919091558311156114505760008054600160a060020a0316815260026020526040902054611405908463ffffffff61151616565b60008054600160a060020a0390811682526002602052604080832093909355905481169133909116906000805160206115268339815191529086905190815260200160405180910390a35b84600160a060020a031633600160a060020a03166000805160206115268339815191528460405190815260200160405180910390a35050505050565b60008083151561149f57600091506114bb565b508282028284828115156114af57fe5b04146114b757fe5b8091505b5092915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b60008082848115156114fb57fe5b04949350505050565b60008282111561151057fe5b50900390565b6000828201838110156114b757fe00ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a723058201145bbd7bcfccec9c21a58053207afc066db60696b6c15d34e47befad8f890700029
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000048cab98f1671af58000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000941545520436861696e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034154550000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 88000000000000000000000000
Arg [1] : _name (string): ATU Chain
Arg [2] : _symbol (string): ATU
Arg [3] : _decimals (uint256): 18
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000048cab98f1671af58000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 41545520436861696e0000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4154550000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
9996:4408:0:-;;;;;;;;-1:-1:-1;;;9996:4408:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10062:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:2;8:100;;;99:1;94:3;90;84:5;71:3;;;64:6;52:2;45:3;8:100;;;12:14;3:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12815:181:0;;;;;;;;;;-1:-1:-1;;;;;12815:181:0;;;;;;;12069:302;;;;;;;;;;-1:-1:-1;;;;;12069:302:0;;;;;;;10178:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8739:145;;;;;;;;;;-1:-1:-1;;;;;8739:145:0;;;;;13062:218;;;;;;;;;;;;;;;;;;;;;;;;;;;11293:362;;;;;;;;;;-1:-1:-1;;;;;11293:362:0;;;;;;;;;;;;10141:30;;;;;;;;;;;;;;;-1:-1:-1;;;;;10141:30:0;;;;;;;;;;;;;;2980:40;;;;;;;;;;-1:-1:-1;;;;;2980:40:0;;;;;10114:20;;;;;;;;;;;;3146:26;;;;;;;;;;;;2082:24;;;;;;;;;;;;8189:90;;;;;;;;;;;;8457:124;;;;;;;;;;-1:-1:-1;;;;;8457:124:0;;;;;4770:61;;;;;;;;;;-1:-1:-1;;;;;4770:61:0;;;;;;;;;;7573:26;;;;;;;;;;;;11740:244;;;;;;;;;;-1:-1:-1;;;;;11740:244:0;;;;;8014:88;;;;;;;;;;;;8589:87;;;;;;;;;;;;1191:20;;;;;;;;;;;;10087;;;;;;;;;;;;10882:326;;;;;;;;;;-1:-1:-1;;;;;10882:326:0;;;;;;;13756:387;;;;;;;;;;;;;;;;13511:237;;;;;;;;;;;;;;12456:293;;;;;;;;;;-1:-1:-1;;;;;12456:293:0;;;;;;;;;;3108:31;;;;;;;;;;;;8684:46;;;;;;;;;;-1:-1:-1;;;;;8684:46:0;;;;;8892:160;;;;;;;;;;-1:-1:-1;;;;;8892:160:0;;;;;4840:42;;;;;;;;;;;;1763:151;;;;;;;;;;-1:-1:-1;;;;;1763:151:0;;;;;9060:324;;;;;;;;;;-1:-1:-1;;;;;9060:324:0;;;;;10062:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12815:181::-;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;12888:10;:17;;-1:-1:-1;;;;;12888:17:0;;;;-1:-1:-1;;12916:34:0;-1:-1:-1;;;;;12916:34:0;;;;;12961:27;12916:34;12961:27;;-1:-1:-1;;;;;12961:27:0;;;;;;;;;;;;;;12815:181;:::o;12069:302::-;12140:6;3325:8;3307;:26;3305:29;3297:38;;;;;;12163:10;;-1:-1:-1;;;12163:10:0;;;;12159:205;;;12219:15;;-1:-1:-1;;;;;12219:15:0;12197:54;12252:10;12264:8;12274:6;12197:84;;-1:-1:-1;;;12197:84:0;;;;;;-1:-1:-1;;;;;12197:84:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12197:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12190:91;;12159:205;12321:31;12335:8;12345:6;12321:13;:31::i;:::-;12069:302;;;:::o;10178:22::-;;;-1:-1:-1;;;10178:22:0;;;;;:::o;8739:145::-;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;-1:-1:-1;;;;;8809:24:0;;;;;;:13;:24;;;;;;;:31;;-1:-1:-1;;8809:31:0;8836:4;8809:31;;;8851:25;;8823:9;;8851:25;-1:-1:-1;;;;;8851:25:0;;;;;;;;;;;;;;8739:145;:::o;13062:218::-;13131:10;;13110:4;;-1:-1:-1;;;13131:10:0;;;;13127:146;;;13179:15;;-1:-1:-1;;;;;13179:15:0;13165:42;13179:15;13165:44;;;;;;;;;;-1:-1:-1;;;13165:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13158:51;;;;13127:146;-1:-1:-1;13249:12:0;;13127:146;13062:218;:::o;11293:362::-;7749:6;;-1:-1:-1;;;7749:6:0;;;;7748:7;7740:16;;;;;;-1:-1:-1;;;;;11397:20:0;;;;;;:13;:20;;;;;;;;11396:21;11388:30;;;;;;11433:10;;-1:-1:-1;;;11433:10:0;;;;11429:219;;;11489:15;;-1:-1:-1;;;;;11489:15:0;11467:59;11527:10;11539:5;11546:3;11551:6;11467:91;;-1:-1:-1;;;11467:91:0;;;;;;-1:-1:-1;;;;;11467:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11467:91:0;;;;;;;;;;;;;;;;;11429:219;11598:38;11617:5;11624:3;11629:6;11598:18;:38::i;10141:30::-;;;-1:-1:-1;;;;;10141:30:0;;:::o;2980:40::-;;;;;;;;;;;;;:::o;10114:20::-;;;;:::o;3146:26::-;;;;:::o;2082:24::-;;;;:::o;8189:90::-;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;7909:6;;-1:-1:-1;;;7909:6:0;;;;7901:15;;;;;;;;8252:5;8243:14;;-1:-1:-1;;8243:14:0;;;8264:9;;;;;;;;;;8189:90::o;8457:124::-;-1:-1:-1;;;;;8552:21:0;;8528:4;8552:21;;;:13;:21;;;;;;;;8457:124;;;;:::o;4770:61::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;7573:26::-;;;-1:-1:-1;;;7573:26:0;;;;;:::o;11740:244::-;11818:10;;11797:4;;-1:-1:-1;;;11818:10:0;;;;11814:163;;;11874:15;;-1:-1:-1;;;;;11874:15:0;11852:48;11901:3;11874:15;11852:53;;;;;;;-1:-1:-1;;;11852:53:0;;;;;;-1:-1:-1;;;;;11852:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11845:60;;;;11814:163;11945:20;11961:3;11945:15;:20::i;:::-;11938:27;;;;8014:88;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;7749:6;;-1:-1:-1;;;7749:6:0;;;;7748:7;7740:16;;;;;;8069:6;:13;;-1:-1:-1;;8069:13:0;-1:-1:-1;;;8069:13:0;;;8089:7;;;;;;;;;;8014:88::o;8589:87::-;8636:7;8663:5;-1:-1:-1;;;;;8663:5:0;8589:87;:::o;1191:20::-;;;-1:-1:-1;;;;;1191:20:0;;:::o;10087:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10882:326;7749:6;;-1:-1:-1;;;7749:6:0;;;;7748:7;7740:16;;;;;;-1:-1:-1;;;;;10981:10:0;10967:25;;;;;:13;:25;;;;;;;;10966:26;10958:35;;;;;;11008:10;;-1:-1:-1;;;11008:10:0;;;;11004:197;;;11064:15;;-1:-1:-1;;;;;11064:15:0;11042:55;11098:10;11110:3;11115:6;11042:80;;-1:-1:-1;;;11042:80:0;;;;;;-1:-1:-1;;;;;11042:80:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11042:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11035:87;;11004:197;11162:27;11177:3;11182:6;11162:14;:27::i;:::-;10882:326;;:::o;13756:387::-;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;13954:2;13937:19;;13929:28;;;;;;13988:2;13976:14;;13968:23;;;;;;14004:15;:32;;;14078:8;;14060:27;;:9;;14074:2;:12;14060:27;:13;:27;:::i;:::-;14047:10;:40;;;14107:15;;14100:35;;;;;;;;;;;;;;;;;;;;;;13756:387;;:::o;13511:237::-;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;13576:12;;:22;;;;13568:31;;;;;;13618:15;13627:5;;-1:-1:-1;;;;;13627:5:0;13618:15;;:8;:15;;;;;;:25;;;;13610:34;;;;;;13657:12;:22;;;;;;;:12;13699:5;;-1:-1:-1;;;;;13699:5:0;13690:15;;:8;:15;;;;;;;:25;;;;;;;13726:14;;13673:6;;13726:14;;;;;;;;;;;;;13511:237;:::o;12456:293::-;12565:10;;12534:14;;-1:-1:-1;;;12565:10:0;;;;12561:181;;;12613:15;;-1:-1:-1;;;;;12613:15:0;12599:40;12640:6;12648:8;12613:15;12599:58;;;;;;;-1:-1:-1;;;12599:58:0;;;;;;-1:-1:-1;;;;;12599:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12592:65;;;;12561:181;12697:33;12713:6;12721:8;12697:15;:33::i;:::-;12690:40;;12561:181;12456:293;;;;:::o;3108:31::-;;;;:::o;8684:46::-;;;;;;;;;;;;;;;:::o;8892:160::-;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;-1:-1:-1;;;;;8968:27:0;;8998:5;8968:27;;;:13;:27;;;;;;;:35;;-1:-1:-1;;8968:35:0;;;9014:30;;8982:12;;9014:30;-1:-1:-1;;;;;9014:30:0;;;;;;;;;;;;;;8892:160;:::o;4840:42::-;-1:-1:-1;;4840:42:0;:::o;1763:151::-;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;-1:-1:-1;;;;;1840:22:0;;;1836:71;;1879:5;:16;;-1:-1:-1;;1879:16:0;-1:-1:-1;;;;;1879:16:0;;;;;1836:71;1763:151;:::o;9060:324::-;9193:15;1563:5;;1549:10;-1:-1:-1;;;;;1549:19:0;;;1563:5;;1549:19;1541:28;;;;;;-1:-1:-1;;;;;9150:31:0;;;;;;:13;:31;;;;;;;;9142:40;;;;;;;;9211:27;9221:16;9211:9;:27::i;:::-;-1:-1:-1;;;;;9249:26:0;;9278:1;9249:26;;;:8;:26;;;;;;:30;;;;9290:12;:26;;;;;;;9193:45;;-1:-1:-1;9327:49:0;;9258:16;;9193:45;;9327:49;-1:-1:-1;;;;;9327:49:0;;;;;;;;;;;;;;;;;;;;9060:324;;:::o;6320:573::-;6391:6;3325:8;3307;:26;3305:29;3297:38;;;;;;6731:11;;;;;6730:53;;-1:-1:-1;;;;;;6756:10:0;6748:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;:34;;6730:53;6728:56;6720:65;;;;;;-1:-1:-1;;;;;6806:10:0;6798:19;;;;;;:7;:19;;;;;;;;:29;;;;;;;;;;;;;;:38;;;6847;;6830:6;;6847:38;;;;;;;;;;;;;6320:573;;;:::o;5172:901::-;5277:14;;;5258:6;3325:8;3307;:26;3305:29;3297:38;;;;;;-1:-1:-1;;;;;5294:14:0;;;;;;;:7;:14;;;;;;;;5309:10;5294:26;;;;;;;;;;5514:15;;5294:26;;-1:-1:-1;5502:40:0;;5536:5;;5503:27;;:6;;:27;:10;:27;:::i;:::-;5502:33;:40;:33;:40;:::i;:::-;5491:51;;5563:10;;5557:3;:16;5553:65;;;5596:10;;5590:16;;5553:65;-1:-1:-1;;5632:10:0;:21;5628:105;;;5699:22;:10;5714:6;5699:22;:14;:22;:::i;:::-;-1:-1:-1;;;;;5670:14:0;;;;;;;:7;:14;;;;;;;;5685:10;5670:26;;;;;;;;;:51;5628:105;5761:15;:6;5772:3;5761:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;5805:15:0;;;;;;:8;:15;;;;;;5743:33;;-1:-1:-1;5805:27:0;;5825:6;5805:27;:19;:27;:::i;:::-;-1:-1:-1;;;;;5787:15:0;;;;;;;:8;:15;;;;;;:45;;;;5859:13;;;;;;;:29;;5877:10;5859:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;5843:13:0;;;;;;:8;:13;;;;;:45;;;;5903:7;;5899:124;;;5945:15;5954:5;;-1:-1:-1;;;;;5954:5:0;5945:15;;:8;:15;;;;;;:24;;5965:3;5945:24;:19;:24;:::i;:::-;5927:15;5936:5;;-1:-1:-1;;;;;5936:5:0;;;5927:15;;:8;:15;;;;;;:42;;;;6000:5;;;;;5984:27;;;;-1:-1:-1;;;;;;;;;;;5984:27:0;6007:3;;5984:27;;;;;;;;;;;;;5899:124;6049:3;-1:-1:-1;;;;;6033:32:0;6042:5;-1:-1:-1;;;;;6033:32:0;-1:-1:-1;;;;;;;;;;;6054:10:0;6033:32;;;;;;;;;;;;;;5172:901;;;;;;;:::o;4319:116::-;-1:-1:-1;;;;;4411:16:0;4379:12;4411:16;;;:8;:16;;;;;;;4319:116::o;3528:573::-;3614:8;;3595:6;3325:8;3307;:26;3305:29;3297:38;;;;;;3625:40;3659:5;3626:27;3637:15;;3626:6;:10;;:27;;;;:::i;3625:40::-;3614:51;;3686:10;;3680:3;:16;3676:65;;;3719:10;;3713:16;;3676:65;3769:15;:6;3780:3;3769:15;:10;:15;:::i;:::-;-1:-1:-1;;;;;3827:10:0;3818:20;;;;;:8;:20;;;;;;3751:33;;-1:-1:-1;3818:32:0;;3843:6;3818:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;3804:10:0;3795:20;;;;;;:8;:20;;;;;;:55;;;;3877:13;;;;;;;:29;;3895:10;3877:29;:17;:29;:::i;:::-;-1:-1:-1;;;;;3861:13:0;;;;;;:8;:13;;;;;:45;;;;3921:7;;3917:129;;;3963:15;3972:5;;-1:-1:-1;;;;;3972:5:0;3963:15;;:8;:15;;;;;;:24;;3983:3;3963:24;:19;:24;:::i;:::-;3945:15;3954:5;;-1:-1:-1;;;;;3954:5:0;;;3945:15;;:8;:15;;;;;;:42;;;;4023:5;;;;;4011:10;4002:32;;;;-1:-1:-1;;;;;;;;;;;4002:32:0;4030:3;;4002:32;;;;;;;;;;;;;3917:129;4077:3;-1:-1:-1;;;;;4056:37:0;4065:10;-1:-1:-1;;;;;4056:37:0;-1:-1:-1;;;;;;;;;;;4082:10:0;4056:37;;;;;;;;;;;;;;3528:573;;;;;:::o;175:208::-;233:7;;257:6;;253:47;;;287:1;280:8;;;;253:47;-1:-1:-1;322:5:0;;;326:1;322;:5;345;;;;;;;;:10;338:18;;;;374:1;367:8;;175:208;;;;;;:::o;7226:145::-;-1:-1:-1;;;;;7338:15:0;;;7304:14;7338:15;;;:7;:15;;;;;;;;:25;;;;;;;;;;;;;7226:145::o;391:288::-;449:7;548:9;564:1;560;:5;;;;;;;;;391:288;-1:-1:-1;;;;391:288:0:o;687:123::-;745:7;772:6;;;;765:14;;;;-1:-1:-1;797:5:0;;;687:123::o;818:147::-;876:7;908:5;;;931:6;;;;924:14;;
Swarm Source
bzzr://1145bbd7bcfccec9c21a58053207afc066db60696b6c15d34e47befad8f89070
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.