ETH Price: $2,418.35 (+0.69%)

Token

Moon3D Token (M3D)
 

Overview

Max Total Supply

1,000,000,000 M3D

Holders

354

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
77,393.27 M3D

Value
$0.00
0xd018fd50b1f486ccfc9b1588d6bc0e74f1636c3e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.5.8+commit.23d335f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-10-29
*/

// File: contracts/Context.sol

pragma solidity ^0.5.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: contracts/IERC20.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.

     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: contracts/ERC20.sol

pragma solidity ^0.5.0;





contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    address private _owner;
    mapping (address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    
    uint256 private _trancheOne;
    
    uint256 private _trancheTwo;
    uint256 private _trancheTwoUnlock;
    bool private _isTrancheTwoMinted;

    uint256 private _trancheThree;
    uint256 private _trancheThreeUnlock;
    bool private _isTrancheThreeMinted;

    constructor (string memory name, string memory symbol, uint8 decimals, uint256 totalSupply, uint256 trancheOne, uint256 trancheTwo, uint256 trancheTwoUnlock, uint256 trancheThree, uint256 trancheThreeUnlock ) public {
        _owner = _msgSender();
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
        _totalSupply = totalSupply;
        _trancheOne = trancheOne;

        _trancheTwo = trancheTwo;
        _trancheTwoUnlock = trancheTwoUnlock;
        _isTrancheTwoMinted = false;

        _trancheThreeUnlock = trancheThreeUnlock;
        _trancheThree = trancheThree;
        _isTrancheThreeMinted = false;

        _mint(_owner, _trancheOne);
    }
    function name() public view returns (string memory) {
        return _name;
    }
    function symbol() public view returns (string memory) {
        return _symbol;
    }
    function decimals() public view returns (uint8) {
        return _decimals;
    }
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }
    function balanceOf(address account) public view returns (uint256) {
        return _balances[account];
    }
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowances[owner][spender];
    }
    function approve(address spender, uint256 amount) public returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }
    function mintTrancheTwo(address owner) public onlyOwner {
        require(now < _trancheTwoUnlock, "Tranche Two Unlocks After Tranche Two Unlock Period");
        require(_isTrancheTwoMinted == false, "Tranche Two Has Already Been Minted");
        _mint(owner, _trancheTwo);
        _isTrancheTwoMinted = true;
    }
    function mintTrancheThree(address owner) public onlyOwner {
        require(now < _trancheThreeUnlock, "Tranche Three Unlocks After Tranche Three Unlock Period");
        require(_isTrancheThreeMinted == false, "Tranche Three Has Already Been Minted");
        _mint(owner, _trancheThree);
        _isTrancheThreeMinted = true;
    }
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }
    function _approve(address owner, address spender, uint256 amount) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
    modifier onlyOwner {
        require(_msgSender() == _owner, "Only owner can call this function.");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","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":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","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":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"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":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"mintTrancheThree","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"mintTrancheTwo","outputs":[],"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"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"},{"name":"totalSupply","type":"uint256"},{"name":"trancheOne","type":"uint256"},{"name":"trancheTwo","type":"uint256"},{"name":"trancheTwoUnlock","type":"uint256"},{"name":"trancheThree","type":"uint256"},{"name":"trancheThreeUnlock","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

60806040523480156200001157600080fd5b5060405162001c9b38038062001c9b83398101806040526101208110156200003857600080fd5b8101908080516401000000008111156200005157600080fd5b828101905060208101848111156200006857600080fd5b81518560018202830111640100000000821117156200008657600080fd5b50509291906020018051640100000000811115620000a357600080fd5b82810190506020810184811115620000ba57600080fd5b8151856001820283011164010000000082111715620000d857600080fd5b505092919060200180519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291908051906020019092919080519060200190929190505050620001396200026960201b60201c565b6000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550886004908051906020019062000190929190620004a4565b508760059080519060200190620001a9929190620004a4565b5086600660006101000a81548160ff021916908360ff160217905550856003819055508460078190555083600881905550826009819055506000600a60006101000a81548160ff02191690831515021790555080600c8190555081600b819055506000600d60006101000a81548160ff0219169083151502179055506200025a6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007546200027160201b60201c565b50505050505050505062000553565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000315576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6200036e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200041b60201b6200130d1790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808284019050838110156200049a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004e757805160ff191683800117855562000518565b8280016001018555821562000518579182015b8281111562000517578251825591602001919060010190620004fa565b5b5090506200052791906200052b565b5090565b6200055091905b808211156200054c57600081600090555060010162000532565b5090565b90565b61173880620005636000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb1461042c578063c240db9b14610492578063d084059b146104d6578063dd62ed3e1461051a576100cf565b806370a08231146102eb57806395d89b4114610343578063a457c2d7146103c6576100cf565b806306fdde03146100d4578063095ea7b31461015757806318160ddd146101bd57806323b872dd146101db578063313ce567146102615780633950935114610285575b600080fd5b6100dc610592565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561011c578082015181840152602081019050610101565b50505050905090810190601f1680156101495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561016d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610634565b604051808215151515815260200191505060405180910390f35b6101c5610652565b6040518082815260200191505060405180910390f35b610247600480360360608110156101f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061065c565b604051808215151515815260200191505060405180910390f35b610269610735565b604051808260ff1660ff16815260200191505060405180910390f35b6102d16004803603604081101561029b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061074c565b604051808215151515815260200191505060405180910390f35b61032d6004803603602081101561030157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107ff565b6040518082815260200191505060405180910390f35b61034b610848565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038b578082015181840152602081019050610370565b50505050905090810190601f1680156103b85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610412600480360360408110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108ea565b604051808215151515815260200191505060405180910390f35b6104786004803603604081101561044257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109b7565b604051808215151515815260200191505060405180910390f35b6104d4600480360360208110156104a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109d5565b005b610518600480360360208110156104ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b71565b005b61057c6004803603604081101561053057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d0d565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561062a5780601f106105ff5761010080835404028352916020019161062a565b820191906000526020600020905b81548152906001019060200180831161060d57829003601f168201915b5050505050905090565b6000610648610641610d94565b8484610d9c565b6001905092915050565b6000600354905090565b6000610669848484610f93565b61072a84610675610d94565b6107258560405180606001604052806028815260200161164060289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106db610d94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124d9092919063ffffffff16565b610d9c565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006107f5610759610d94565b846107f0856002600061076a610d94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130d90919063ffffffff16565b610d9c565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006109ad6108f7610d94565b846109a8856040518060600160405280602581526020016116e86025913960026000610921610d94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124d9092919063ffffffff16565b610d9c565b6001905092915050565b60006109cb6109c4610d94565b8484610f93565b6001905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a15610d94565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061155b6022913960400191505060405180910390fd5b600c544210610adb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806116b16037913960400191505060405180910390fd5b60001515600d60009054906101000a900460ff16151514610b47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806115a06025913960400191505060405180910390fd5b610b5381600b54611395565b6001600d60006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bb1610d94565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061155b6022913960400191505060405180910390fd5b6009544210610c77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018061160d6033913960400191505060405180910390fd5b60001515600a60009054906101000a900460ff16151514610ce3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061157d6023913960400191505060405180910390fd5b610cef81600854611395565b6001600a60006101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061168d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806115c56022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806116686025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806115386023913960400191505060405180910390fd5b61110b816040518060600160405280602681526020016115e760269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124d9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111a081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130d90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112bf5780820151818401526020810190506112a4565b50505050905090810190601f1680156112ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61148a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130d90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6e2e5472616e6368652054776f2048617320416c7265616479204265656e204d696e7465645472616e6368652054687265652048617320416c7265616479204265656e204d696e74656445524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655472616e6368652054776f20556e6c6f636b73204166746572205472616e6368652054776f20556e6c6f636b20506572696f6445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735472616e63686520546872656520556e6c6f636b73204166746572205472616e63686520546872656520556e6c6f636b20506572696f6445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa165627a7a7230582003efa2f8277aead43bc784019de58869f39d330cdae406d073d0cb82be057ca700290000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000014adf4b7320334b9000000000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000001756a24d4800000000000000000000000000000000000000000019d971e4fe8401e740000000000000000000000000000000000000000000000000000000000017cc1d60080000000000000000000000000000000000000000000000000000000000000000c4d6f6f6e334420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d33440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb1461042c578063c240db9b14610492578063d084059b146104d6578063dd62ed3e1461051a576100cf565b806370a08231146102eb57806395d89b4114610343578063a457c2d7146103c6576100cf565b806306fdde03146100d4578063095ea7b31461015757806318160ddd146101bd57806323b872dd146101db578063313ce567146102615780633950935114610285575b600080fd5b6100dc610592565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561011c578082015181840152602081019050610101565b50505050905090810190601f1680156101495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a36004803603604081101561016d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610634565b604051808215151515815260200191505060405180910390f35b6101c5610652565b6040518082815260200191505060405180910390f35b610247600480360360608110156101f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061065c565b604051808215151515815260200191505060405180910390f35b610269610735565b604051808260ff1660ff16815260200191505060405180910390f35b6102d16004803603604081101561029b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061074c565b604051808215151515815260200191505060405180910390f35b61032d6004803603602081101561030157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506107ff565b6040518082815260200191505060405180910390f35b61034b610848565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038b578082015181840152602081019050610370565b50505050905090810190601f1680156103b85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610412600480360360408110156103dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108ea565b604051808215151515815260200191505060405180910390f35b6104786004803603604081101561044257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109b7565b604051808215151515815260200191505060405180910390f35b6104d4600480360360208110156104a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506109d5565b005b610518600480360360208110156104ec57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b71565b005b61057c6004803603604081101561053057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d0d565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561062a5780601f106105ff5761010080835404028352916020019161062a565b820191906000526020600020905b81548152906001019060200180831161060d57829003601f168201915b5050505050905090565b6000610648610641610d94565b8484610d9c565b6001905092915050565b6000600354905090565b6000610669848484610f93565b61072a84610675610d94565b6107258560405180606001604052806028815260200161164060289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106db610d94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124d9092919063ffffffff16565b610d9c565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006107f5610759610d94565b846107f0856002600061076a610d94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130d90919063ffffffff16565b610d9c565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006109ad6108f7610d94565b846109a8856040518060600160405280602581526020016116e86025913960026000610921610d94565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124d9092919063ffffffff16565b610d9c565b6001905092915050565b60006109cb6109c4610d94565b8484610f93565b6001905092915050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a15610d94565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061155b6022913960400191505060405180910390fd5b600c544210610adb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806116b16037913960400191505060405180910390fd5b60001515600d60009054906101000a900460ff16151514610b47576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806115a06025913960400191505060405180910390fd5b610b5381600b54611395565b6001600d60006101000a81548160ff02191690831515021790555050565b6000809054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610bb1610d94565b73ffffffffffffffffffffffffffffffffffffffff1614610c1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061155b6022913960400191505060405180910390fd5b6009544210610c77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603381526020018061160d6033913960400191505060405180910390fd5b60001515600a60009054906101000a900460ff16151514610ce3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061157d6023913960400191505060405180910390fd5b610cef81600854611395565b6001600a60006101000a81548160ff02191690831515021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e22576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061168d6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806115c56022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806116686025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806115386023913960400191505060405180910390fd5b61110b816040518060600160405280602681526020016115e760269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461124d9092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506111a081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130d90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008383111582906112fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112bf5780820151818401526020810190506112a4565b50505050905090810190601f1680156112ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61148a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130d90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f6e6c79206f776e65722063616e2063616c6c20746869732066756e6374696f6e2e5472616e6368652054776f2048617320416c7265616479204265656e204d696e7465645472616e6368652054687265652048617320416c7265616479204265656e204d696e74656445524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655472616e6368652054776f20556e6c6f636b73204166746572205472616e6368652054776f20556e6c6f636b20506572696f6445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735472616e63686520546872656520556e6c6f636b73204166746572205472616e63686520546872656520556e6c6f636b20506572696f6445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa165627a7a7230582003efa2f8277aead43bc784019de58869f39d330cdae406d073d0cb82be057ca70029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000014adf4b7320334b9000000000000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000000000000000000000000000000001756a24d4800000000000000000000000000000000000000000019d971e4fe8401e740000000000000000000000000000000000000000000000000000000000017cc1d60080000000000000000000000000000000000000000000000000000000000000000c4d6f6f6e334420546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d33440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Moon3D Token
Arg [1] : symbol (string): M3D
Arg [2] : decimals (uint8): 18
Arg [3] : totalSupply (uint256): 1000000000000000000000000000
Arg [4] : trancheOne (uint256): 400000000000000000000000000
Arg [5] : trancheTwo (uint256): 100000000000000000000000000
Arg [6] : trancheTwoUnlock (uint256): 1603803600000
Arg [7] : trancheThree (uint256): 500000000000000000000000000
Arg [8] : trancheThreeUnlock (uint256): 1635339600000

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [4] : 0000000000000000000000000000000000000000014adf4b7320334b90000000
Arg [5] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [6] : 000000000000000000000000000000000000000000000000000001756a24d480
Arg [7] : 0000000000000000000000000000000000000000019d971e4fe8401e74000000
Arg [8] : 0000000000000000000000000000000000000000000000000000017cc1d60080
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [10] : 4d6f6f6e334420546f6b656e0000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [12] : 4d33440000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

9923:4963:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9923:4963:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11268:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11268:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12056:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12056:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11539:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12214:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12214:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11450:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12524:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12524:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11636:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11636:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11357:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;11357:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12740:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12740:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11752:158;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11752:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13335:338;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13335:338:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13007:322;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13007:322:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11916:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11916:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11268:83;11305:13;11338:5;11331:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11268:83;:::o;12056:152::-;12122:4;12139:39;12148:12;:10;:12::i;:::-;12162:7;12171:6;12139:8;:39::i;:::-;12196:4;12189:11;;12056:152;;;;:::o;11539:91::-;11583:7;11610:12;;11603:19;;11539:91;:::o;12214:304::-;12303:4;12320:36;12330:6;12338:9;12349:6;12320:9;:36::i;:::-;12367:121;12376:6;12384:12;:10;:12::i;:::-;12398:89;12436:6;12398:89;;;;;;;;;;;;;;;;;:11;:19;12410:6;12398:19;;;;;;;;;;;;;;;:33;12418:12;:10;:12::i;:::-;12398:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;12367:8;:121::i;:::-;12506:4;12499:11;;12214:304;;;;;:::o;11450:83::-;11491:5;11516:9;;;;;;;;;;;11509:16;;11450:83;:::o;12524:210::-;12604:4;12621:83;12630:12;:10;:12::i;:::-;12644:7;12653:50;12692:10;12653:11;:25;12665:12;:10;:12::i;:::-;12653:25;;;;;;;;;;;;;;;:34;12679:7;12653:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;12621:8;:83::i;:::-;12722:4;12715:11;;12524:210;;;;:::o;11636:110::-;11693:7;11720:9;:18;11730:7;11720:18;;;;;;;;;;;;;;;;11713:25;;11636:110;;;:::o;11357:87::-;11396:13;11429:7;11422:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11357:87;:::o;12740:261::-;12825:4;12842:129;12851:12;:10;:12::i;:::-;12865:7;12874:96;12913:15;12874:96;;;;;;;;;;;;;;;;;:11;:25;12886:12;:10;:12::i;:::-;12874:25;;;;;;;;;;;;;;;:34;12900:7;12874:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;12842:8;:129::i;:::-;12989:4;12982:11;;12740:261;;;;:::o;11752:158::-;11821:4;11838:42;11848:12;:10;:12::i;:::-;11862:9;11873:6;11838:9;:42::i;:::-;11898:4;11891:11;;11752:158;;;;:::o;13335:338::-;14818:6;;;;;;;;;;;14802:22;;:12;:10;:12::i;:::-;:22;;;14794:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13418:19;;13412:3;:25;13404:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13541:5;13516:30;;:21;;;;;;;;;;;:30;;;13508:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13599:27;13605:5;13612:13;;13599:5;:27::i;:::-;13661:4;13637:21;;:28;;;;;;;;;;;;;;;;;;13335:338;:::o;13007:322::-;14818:6;;;;;;;;;;;14802:22;;:12;:10;:12::i;:::-;:22;;;14794:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13088:17;;13082:3;:23;13074:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13203:5;13180:28;;:19;;;;;;;;;;;:28;;;13172:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13259:25;13265:5;13272:11;;13259:5;:25::i;:::-;13317:4;13295:19;;:26;;;;;;;;;;;;;;;;;;13007:322;:::o;11916:134::-;11988:7;12015:11;:18;12027:5;12015:18;;;;;;;;;;;;;;;:27;12034:7;12015:27;;;;;;;;;;;;;;;;12008:34;;11916:134;;;;:::o;840:98::-;885:15;920:10;913:17;;840:98;:::o;14420:338::-;14531:1;14514:19;;:5;:19;;;;14506:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14612:1;14593:21;;:7;:21;;;;14585:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14696:6;14666:11;:18;14678:5;14666:18;;;;;;;;;;;;;;;:27;14685:7;14666:27;;;;;;;;;;;;;;;:36;;;;14734:7;14718:32;;14727:5;14718:32;;;14743:6;14718:32;;;;;;;;;;;;;;;;;;14420:338;;;:::o;13943:471::-;14059:1;14041:20;;:6;:20;;;;14033:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14143:1;14122:23;;:9;:23;;;;14114:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14218;14240:6;14218:71;;;;;;;;;;;;;;;;;:9;:17;14228:6;14218:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;14198:9;:17;14208:6;14198:17;;;;;;;;;;;;;;;:91;;;;14323:32;14348:6;14323:9;:20;14333:9;14323:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;14300:9;:20;14310:9;14300:20;;;;;;;;;;;;;;;:55;;;;14388:9;14371:35;;14380:6;14371:35;;;14399:6;14371:35;;;;;;;;;;;;;;;;;;13943:471;;;:::o;5968:192::-;6054:7;6087:1;6082;:6;;6090:12;6074:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6074:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6114:9;6130:1;6126;:5;6114:17;;6151:1;6144:8;;;5968:192;;;;;:::o;4926:181::-;4984:7;5004:9;5020:1;5016;:5;5004:17;;5045:1;5040;:6;;5032:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5098:1;5091:8;;;4926:181;;;;:::o;13679:258::-;13774:1;13755:21;;:7;:21;;;;13747:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13846:30;13869:6;13846:9;:18;13856:7;13846:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;13825:9;:18;13835:7;13825:18;;;;;;;;;;;;;;;:51;;;;13913:7;13892:37;;13909:1;13892:37;;;13922:6;13892:37;;;;;;;;;;;;;;;;;;13679:258;;:::o

Swarm Source

bzzr://03efa2f8277aead43bc784019de58869f39d330cdae406d073d0cb82be057ca7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.