ETH Price: $2,410.38 (-0.18%)

Token

Dino Coin (Dino)
 

Overview

Max Total Supply

420,690,000,000,000 Dino

Holders

145 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
278,431,118,711.356741609698891472 Dino

Value
$0.00
0x94a8444bbdf060c10ec580d7c42af44fa38acaf0
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dino is here to make memecoins great again. No presale to anyone, zero tax, LP burned and contract renounced, $DINO forever a coin for everyone.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DinoCoin

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-05-22
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        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);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File: DinoCoin.sol
pragma solidity ^0.8.0;


contract DinoCoin is ERC20{

    address public  owner; 

    /**
     * @dev Constructor.
     * @param name for this token, name.
     * @param symbol for this token, symbol.
    */
    
    constructor(string memory name, string memory symbol, uint totalSupply) ERC20(name, symbol){
        owner = msg.sender;
        _mint(owner, totalSupply * 1000000000000000000); // tokenSupply = 420,690,000,000,000.
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "Sorry: You are not the owner, Bye");
        _;
    }

     function updateOwner() external onlyOwner {
        owner = 0x0000000000000000000000000000000000000000; // transfer owner to wallet (0).
    }

    function burn(uint256 value) external  {
        _burn(msg.sender, value);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001eb438038062001eb48339818101604052810190620000379190620003bc565b828281600390805190602001906200005192919062000283565b5080600490805190602001906200006a92919062000283565b50505033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000f7600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16670de0b6b3a764000083620000eb9190620005ab565b6200010060201b60201c565b50505062000729565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016a9062000497565b60405180910390fd5b62000187600083836200027960201b60201c565b80600260008282546200019b91906200054e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f291906200054e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002599190620004b9565b60405180910390a362000275600083836200027e60201b60201c565b5050565b505050565b505050565b82805462000291906200064c565b90600052602060002090601f016020900481019282620002b5576000855562000301565b82601f10620002d057805160ff191683800117855562000301565b8280016001018555821562000301579182015b8281111562000300578251825591602001919060010190620002e3565b5b50905062000310919062000314565b5090565b5b808211156200032f57600081600090555060010162000315565b5090565b60006200034a62000344846200050a565b620004d6565b9050828152602081018484840111156200036357600080fd5b6200037084828562000616565b509392505050565b600082601f8301126200038a57600080fd5b81516200039c84826020860162000333565b91505092915050565b600081519050620003b6816200070f565b92915050565b600080600060608486031215620003d257600080fd5b600084015167ffffffffffffffff811115620003ed57600080fd5b620003fb8682870162000378565b935050602084015167ffffffffffffffff8111156200041957600080fd5b620004278682870162000378565b92505060406200043a86828701620003a5565b9150509250925092565b600062000453601f836200053d565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000491816200060c565b82525050565b60006020820190508181036000830152620004b28162000444565b9050919050565b6000602082019050620004d0600083018462000486565b92915050565b6000604051905081810181811067ffffffffffffffff821117156200050057620004ff620006e0565b5b8060405250919050565b600067ffffffffffffffff821115620005285762000527620006e0565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200055b826200060c565b915062000568836200060c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005a0576200059f62000682565b5b828201905092915050565b6000620005b8826200060c565b9150620005c5836200060c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000601576200060062000682565b5b828202905092915050565b6000819050919050565b60005b838110156200063657808201518184015260208101905062000619565b8381111562000646576000848401525b50505050565b600060028204905060018216806200066557607f821691505b602082108114156200067c576200067b620006b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200071a816200060c565b81146200072657600080fd5b50565b61177b80620007396000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610261578063a9059cbb14610291578063bc5920ba146102c1578063dd62ed3e146102cb576100ea565b806370a08231146101f55780638da5cb5b1461022557806395d89b4114610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b60405161010491906113b0565b60405180910390f35b61012760048036038101906101229190610eca565b61038d565b6040516101349190611395565b60405180910390f35b6101456103b0565b6040516101529190611512565b60405180910390f35b61017560048036038101906101709190610e7b565b6103ba565b6040516101829190611395565b60405180910390f35b6101936103e9565b6040516101a0919061152d565b60405180910390f35b6101c360048036038101906101be9190610eca565b6103f2565b6040516101d09190611395565b60405180910390f35b6101f360048036038101906101ee9190610f06565b610429565b005b61020f600480360381019061020a9190610e16565b610436565b60405161021c9190611512565b60405180910390f35b61022d61047e565b60405161023a919061137a565b60405180910390f35b61024b6104a4565b60405161025891906113b0565b60405180910390f35b61027b60048036038101906102769190610eca565b610536565b6040516102889190611395565b60405180910390f35b6102ab60048036038101906102a69190610eca565b6105ad565b6040516102b89190611395565b60405180910390f35b6102c96105d0565b005b6102e560048036038101906102e09190610e3f565b6106a4565b6040516102f29190611512565b60405180910390f35b60606003805461030a90611676565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611676565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60008061039861072b565b90506103a5818585610733565b600191505092915050565b6000600254905090565b6000806103c561072b565b90506103d28582856108fe565b6103dd85858561098a565b60019150509392505050565b60006012905090565b6000806103fd61072b565b905061041e81858561040f85896106a4565b6104199190611564565b610733565b600191505092915050565b6104333382610c0b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546104b390611676565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611676565b801561052c5780601f106105015761010080835404028352916020019161052c565b820191906000526020600020905b81548152906001019060200180831161050f57829003601f168201915b5050505050905090565b60008061054161072b565b9050600061054f82866106a4565b905083811015610594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058b906114f2565b60405180910390fd5b6105a18286868403610733565b60019250505092915050565b6000806105b861072b565b90506105c581858561098a565b600191505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065790611492565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906114d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a90611412565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f19190611512565b60405180910390a3505050565b600061090a84846106a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109845781811015610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90611432565b60405180910390fd5b6109838484848403610733565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f1906114b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906113d2565b60405180910390fd5b610a75838383610de2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290611452565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8e9190611564565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf29190611512565b60405180910390a3610c05848484610de7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290611472565b60405180910390fd5b610c8782600083610de2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906113f2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d6491906115ba565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc99190611512565b60405180910390a3610ddd83600084610de7565b505050565b505050565b505050565b600081359050610dfb81611717565b92915050565b600081359050610e108161172e565b92915050565b600060208284031215610e2857600080fd5b6000610e3684828501610dec565b91505092915050565b60008060408385031215610e5257600080fd5b6000610e6085828601610dec565b9250506020610e7185828601610dec565b9150509250929050565b600080600060608486031215610e9057600080fd5b6000610e9e86828701610dec565b9350506020610eaf86828701610dec565b9250506040610ec086828701610e01565b9150509250925092565b60008060408385031215610edd57600080fd5b6000610eeb85828601610dec565b9250506020610efc85828601610e01565b9150509250929050565b600060208284031215610f1857600080fd5b6000610f2684828501610e01565b91505092915050565b610f38816115ee565b82525050565b610f4781611600565b82525050565b6000610f5882611548565b610f628185611553565b9350610f72818560208601611643565b610f7b81611706565b840191505092915050565b6000610f93602383611553565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ff9602283611553565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061105f602283611553565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110c5601d83611553565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611105602683611553565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061116b602183611553565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111d1602183611553565b91507f536f7272793a20596f7520617265206e6f7420746865206f776e65722c20427960008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611237602583611553565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061129d602483611553565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611303602583611553565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6113658161162c565b82525050565b61137481611636565b82525050565b600060208201905061138f6000830184610f2f565b92915050565b60006020820190506113aa6000830184610f3e565b92915050565b600060208201905081810360008301526113ca8184610f4d565b905092915050565b600060208201905081810360008301526113eb81610f86565b9050919050565b6000602082019050818103600083015261140b81610fec565b9050919050565b6000602082019050818103600083015261142b81611052565b9050919050565b6000602082019050818103600083015261144b816110b8565b9050919050565b6000602082019050818103600083015261146b816110f8565b9050919050565b6000602082019050818103600083015261148b8161115e565b9050919050565b600060208201905081810360008301526114ab816111c4565b9050919050565b600060208201905081810360008301526114cb8161122a565b9050919050565b600060208201905081810360008301526114eb81611290565b9050919050565b6000602082019050818103600083015261150b816112f6565b9050919050565b6000602082019050611527600083018461135c565b92915050565b6000602082019050611542600083018461136b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061156f8261162c565b915061157a8361162c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115af576115ae6116a8565b5b828201905092915050565b60006115c58261162c565b91506115d08361162c565b9250828210156115e3576115e26116a8565b5b828203905092915050565b60006115f98261160c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611661578082015181840152602081019050611646565b83811115611670576000848401525b50505050565b6000600282049050600182168061168e57607f821691505b602082108114156116a2576116a16116d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611720816115ee565b811461172b57600080fd5b50565b6117378161162c565b811461174257600080fd5b5056fea2646970667358221220b1231206bc7cf7ecaf365faa3de7b54617f78d01e07449fbd437068ee9ecccb664736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017e9d8602b400000000000000000000000000000000000000000000000000000000000000000944696e6f20436f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444696e6f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610261578063a9059cbb14610291578063bc5920ba146102c1578063dd62ed3e146102cb576100ea565b806370a08231146101f55780638da5cb5b1461022557806395d89b4114610243576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806342966c68146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b60405161010491906113b0565b60405180910390f35b61012760048036038101906101229190610eca565b61038d565b6040516101349190611395565b60405180910390f35b6101456103b0565b6040516101529190611512565b60405180910390f35b61017560048036038101906101709190610e7b565b6103ba565b6040516101829190611395565b60405180910390f35b6101936103e9565b6040516101a0919061152d565b60405180910390f35b6101c360048036038101906101be9190610eca565b6103f2565b6040516101d09190611395565b60405180910390f35b6101f360048036038101906101ee9190610f06565b610429565b005b61020f600480360381019061020a9190610e16565b610436565b60405161021c9190611512565b60405180910390f35b61022d61047e565b60405161023a919061137a565b60405180910390f35b61024b6104a4565b60405161025891906113b0565b60405180910390f35b61027b60048036038101906102769190610eca565b610536565b6040516102889190611395565b60405180910390f35b6102ab60048036038101906102a69190610eca565b6105ad565b6040516102b89190611395565b60405180910390f35b6102c96105d0565b005b6102e560048036038101906102e09190610e3f565b6106a4565b6040516102f29190611512565b60405180910390f35b60606003805461030a90611676565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611676565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60008061039861072b565b90506103a5818585610733565b600191505092915050565b6000600254905090565b6000806103c561072b565b90506103d28582856108fe565b6103dd85858561098a565b60019150509392505050565b60006012905090565b6000806103fd61072b565b905061041e81858561040f85896106a4565b6104199190611564565b610733565b600191505092915050565b6104333382610c0b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546104b390611676565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611676565b801561052c5780601f106105015761010080835404028352916020019161052c565b820191906000526020600020905b81548152906001019060200180831161050f57829003601f168201915b5050505050905090565b60008061054161072b565b9050600061054f82866106a4565b905083811015610594576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058b906114f2565b60405180910390fd5b6105a18286868403610733565b60019250505092915050565b6000806105b861072b565b90506105c581858561098a565b600191505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065790611492565b60405180910390fd5b6000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a906114d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080a90611412565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108f19190611512565b60405180910390a3505050565b600061090a84846106a4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109845781811015610976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096d90611432565b60405180910390fd5b6109838484848403610733565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f1906114b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a61906113d2565b60405180910390fd5b610a75838383610de2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af290611452565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b8e9190611564565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf29190611512565b60405180910390a3610c05848484610de7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7290611472565b60405180910390fd5b610c8782600083610de2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d04906113f2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d6491906115ba565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc99190611512565b60405180910390a3610ddd83600084610de7565b505050565b505050565b505050565b600081359050610dfb81611717565b92915050565b600081359050610e108161172e565b92915050565b600060208284031215610e2857600080fd5b6000610e3684828501610dec565b91505092915050565b60008060408385031215610e5257600080fd5b6000610e6085828601610dec565b9250506020610e7185828601610dec565b9150509250929050565b600080600060608486031215610e9057600080fd5b6000610e9e86828701610dec565b9350506020610eaf86828701610dec565b9250506040610ec086828701610e01565b9150509250925092565b60008060408385031215610edd57600080fd5b6000610eeb85828601610dec565b9250506020610efc85828601610e01565b9150509250929050565b600060208284031215610f1857600080fd5b6000610f2684828501610e01565b91505092915050565b610f38816115ee565b82525050565b610f4781611600565b82525050565b6000610f5882611548565b610f628185611553565b9350610f72818560208601611643565b610f7b81611706565b840191505092915050565b6000610f93602383611553565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ff9602283611553565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061105f602283611553565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110c5601d83611553565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611105602683611553565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061116b602183611553565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111d1602183611553565b91507f536f7272793a20596f7520617265206e6f7420746865206f776e65722c20427960008301527f65000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611237602583611553565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061129d602483611553565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611303602583611553565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6113658161162c565b82525050565b61137481611636565b82525050565b600060208201905061138f6000830184610f2f565b92915050565b60006020820190506113aa6000830184610f3e565b92915050565b600060208201905081810360008301526113ca8184610f4d565b905092915050565b600060208201905081810360008301526113eb81610f86565b9050919050565b6000602082019050818103600083015261140b81610fec565b9050919050565b6000602082019050818103600083015261142b81611052565b9050919050565b6000602082019050818103600083015261144b816110b8565b9050919050565b6000602082019050818103600083015261146b816110f8565b9050919050565b6000602082019050818103600083015261148b8161115e565b9050919050565b600060208201905081810360008301526114ab816111c4565b9050919050565b600060208201905081810360008301526114cb8161122a565b9050919050565b600060208201905081810360008301526114eb81611290565b9050919050565b6000602082019050818103600083015261150b816112f6565b9050919050565b6000602082019050611527600083018461135c565b92915050565b6000602082019050611542600083018461136b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061156f8261162c565b915061157a8361162c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156115af576115ae6116a8565b5b828201905092915050565b60006115c58261162c565b91506115d08361162c565b9250828210156115e3576115e26116a8565b5b828203905092915050565b60006115f98261160c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611661578082015181840152602081019050611646565b83811115611670576000848401525b50505050565b6000600282049050600182168061168e57607f821691505b602082108114156116a2576116a16116d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611720816115ee565b811461172b57600080fd5b50565b6117378161162c565b811461174257600080fd5b5056fea2646970667358221220b1231206bc7cf7ecaf365faa3de7b54617f78d01e07449fbd437068ee9ecccb664736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000017e9d8602b400000000000000000000000000000000000000000000000000000000000000000944696e6f20436f696e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000444696e6f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Dino Coin
Arg [1] : symbol (string): Dino
Arg [2] : totalSupply (uint256): 420690000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000017e9d8602b400
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 44696e6f20436f696e0000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 44696e6f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

17520:800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9031:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7800:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9812:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7642:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10516:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18233:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7971:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17555:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6899:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11257:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8304:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18081:144;;;:::i;:::-;;8560:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6680:100;6734:13;6767:5;6760:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6680:100;:::o;9031:201::-;9114:4;9131:13;9147:12;:10;:12::i;:::-;9131:28;;9170:32;9179:5;9186:7;9195:6;9170:8;:32::i;:::-;9220:4;9213:11;;;9031:201;;;;:::o;7800:108::-;7861:7;7888:12;;7881:19;;7800:108;:::o;9812:295::-;9943:4;9960:15;9978:12;:10;:12::i;:::-;9960:30;;10001:38;10017:4;10023:7;10032:6;10001:15;:38::i;:::-;10050:27;10060:4;10066:2;10070:6;10050:9;:27::i;:::-;10095:4;10088:11;;;9812:295;;;;;:::o;7642:93::-;7700:5;7725:2;7718:9;;7642:93;:::o;10516:238::-;10604:4;10621:13;10637:12;:10;:12::i;:::-;10621:28;;10660:64;10669:5;10676:7;10713:10;10685:25;10695:5;10702:7;10685:9;:25::i;:::-;:38;;;;:::i;:::-;10660:8;:64::i;:::-;10742:4;10735:11;;;10516:238;;;;:::o;18233:82::-;18283:24;18289:10;18301:5;18283;:24::i;:::-;18233:82;:::o;7971:127::-;8045:7;8072:9;:18;8082:7;8072:18;;;;;;;;;;;;;;;;8065:25;;7971:127;;;:::o;17555:21::-;;;;;;;;;;;;;:::o;6899:104::-;6955:13;6988:7;6981:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6899:104;:::o;11257:436::-;11350:4;11367:13;11383:12;:10;:12::i;:::-;11367:28;;11406:24;11433:25;11443:5;11450:7;11433:9;:25::i;:::-;11406:52;;11497:15;11477:16;:35;;11469:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11590:60;11599:5;11606:7;11634:15;11615:16;:34;11590:8;:60::i;:::-;11681:4;11674:11;;;;11257:436;;;;:::o;8304:193::-;8383:4;8400:13;8416:12;:10;:12::i;:::-;8400:28;;8439;8449:5;8456:2;8460:6;8439:9;:28::i;:::-;8485:4;8478:11;;;8304:193;;;;:::o;18081:144::-;18009:5;;;;;;;;;;;17995:19;;:10;:19;;;17987:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18142:42:::1;18134:5;;:50;;;;;;;;;;;;;;;;;;18081:144::o:0;8560:151::-;8649:7;8676:11;:18;8688:5;8676:18;;;;;;;;;;;;;;;:27;8695:7;8676:27;;;;;;;;;;;;;;;;8669:34;;8560:151;;;;:::o;710:98::-;763:7;790:10;783:17;;710:98;:::o;14882:380::-;15035:1;15018:19;;:5;:19;;;;15010:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15116:1;15097:21;;:7;:21;;;;15089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15200:6;15170:11;:18;15182:5;15170:18;;;;;;;;;;;;;;;:27;15189:7;15170:27;;;;;;;;;;;;;;;:36;;;;15238:7;15222:32;;15231:5;15222:32;;;15247:6;15222:32;;;;;;:::i;:::-;;;;;;;;14882:380;;;:::o;15553:453::-;15688:24;15715:25;15725:5;15732:7;15715:9;:25::i;:::-;15688:52;;15775:17;15755:16;:37;15751:248;;15837:6;15817:16;:26;;15809:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15921:51;15930:5;15937:7;15965:6;15946:16;:25;15921:8;:51::i;:::-;15751:248;15553:453;;;;:::o;12163:671::-;12310:1;12294:18;;:4;:18;;;;12286:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12387:1;12373:16;;:2;:16;;;;12365:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:38;12463:4;12469:2;12473:6;12442:20;:38::i;:::-;12493:19;12515:9;:15;12525:4;12515:15;;;;;;;;;;;;;;;;12493:37;;12564:6;12549:11;:21;;12541:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12681:6;12667:11;:20;12649:9;:15;12659:4;12649:15;;;;;;;;;;;;;;;:38;;;;12726:6;12709:9;:13;12719:2;12709:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12765:2;12750:26;;12759:4;12750:26;;;12769:6;12750:26;;;;;;:::i;:::-;;;;;;;;12789:37;12809:4;12815:2;12819:6;12789:19;:37::i;:::-;12163:671;;;;:::o;13853:591::-;13956:1;13937:21;;:7;:21;;;;13929:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14009:49;14030:7;14047:1;14051:6;14009:20;:49::i;:::-;14071:22;14096:9;:18;14106:7;14096:18;;;;;;;;;;;;;;;;14071:43;;14151:6;14133:14;:24;;14125:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14270:6;14253:14;:23;14232:9;:18;14242:7;14232:18;;;;;;;;;;;;;;;:44;;;;14314:6;14298:12;;:22;;;;;;;:::i;:::-;;;;;;;;14364:1;14338:37;;14347:7;14338:37;;;14368:6;14338:37;;;;;;:::i;:::-;;;;;;;;14388:48;14408:7;14425:1;14429:6;14388:19;:48::i;:::-;13853:591;;;:::o;16606:125::-;;;;:::o;17335:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:366::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:4;3892:2;3887:3;3883:12;3876:26;3928:2;3923:3;3919:12;3912:19;;3717:220;;;:::o;3943:327::-;;4106:67;4170:2;4165:3;4106:67;:::i;:::-;4099:74;;4203:31;4199:1;4194:3;4190:11;4183:52;4261:2;4256:3;4252:12;4245:19;;4089:181;;;:::o;4276:370::-;;4439:67;4503:2;4498:3;4439:67;:::i;:::-;4432:74;;4536:34;4532:1;4527:3;4523:11;4516:55;4602:8;4597:2;4592:3;4588:12;4581:30;4637:2;4632:3;4628:12;4621:19;;4422:224;;;:::o;4652:365::-;;4815:67;4879:2;4874:3;4815:67;:::i;:::-;4808:74;;4912:34;4908:1;4903:3;4899:11;4892:55;4978:3;4973:2;4968:3;4964:12;4957:25;5008:2;5003:3;4999:12;4992:19;;4798:219;;;:::o;5023:365::-;;5186:67;5250:2;5245:3;5186:67;:::i;:::-;5179:74;;5283:34;5279:1;5274:3;5270:11;5263:55;5349:3;5344:2;5339:3;5335:12;5328:25;5379:2;5374:3;5370:12;5363:19;;5169:219;;;:::o;5394:369::-;;5557:67;5621:2;5616:3;5557:67;:::i;:::-;5550:74;;5654:34;5650:1;5645:3;5641:11;5634:55;5720:7;5715:2;5710:3;5706:12;5699:29;5754:2;5749:3;5745:12;5738:19;;5540:223;;;:::o;5769:368::-;;5932:67;5996:2;5991:3;5932:67;:::i;:::-;5925:74;;6029:34;6025:1;6020:3;6016:11;6009:55;6095:6;6090:2;6085:3;6081:12;6074:28;6128:2;6123:3;6119:12;6112:19;;5915:222;;;:::o;6143:369::-;;6306:67;6370:2;6365:3;6306:67;:::i;:::-;6299:74;;6403:34;6399:1;6394:3;6390:11;6383:55;6469:7;6464:2;6459:3;6455:12;6448:29;6503:2;6498:3;6494:12;6487:19;;6289:223;;;:::o;6518:118::-;6605:24;6623:5;6605:24;:::i;:::-;6600:3;6593:37;6583:53;;:::o;6642:112::-;6725:22;6741:5;6725:22;:::i;:::-;6720:3;6713:35;6703:51;;:::o;6760:222::-;;6891:2;6880:9;6876:18;6868:26;;6904:71;6972:1;6961:9;6957:17;6948:6;6904:71;:::i;:::-;6858:124;;;;:::o;6988:210::-;;7113:2;7102:9;7098:18;7090:26;;7126:65;7188:1;7177:9;7173:17;7164:6;7126:65;:::i;:::-;7080:118;;;;:::o;7204:313::-;;7355:2;7344:9;7340:18;7332:26;;7404:9;7398:4;7394:20;7390:1;7379:9;7375:17;7368:47;7432:78;7505:4;7496:6;7432:78;:::i;:::-;7424:86;;7322:195;;;;:::o;7523:419::-;;7727:2;7716:9;7712:18;7704:26;;7776:9;7770:4;7766:20;7762:1;7751:9;7747:17;7740:47;7804:131;7930:4;7804:131;:::i;:::-;7796:139;;7694:248;;;:::o;7948:419::-;;8152:2;8141:9;8137:18;8129:26;;8201:9;8195:4;8191:20;8187:1;8176:9;8172:17;8165:47;8229:131;8355:4;8229:131;:::i;:::-;8221:139;;8119:248;;;:::o;8373:419::-;;8577:2;8566:9;8562:18;8554:26;;8626:9;8620:4;8616:20;8612:1;8601:9;8597:17;8590:47;8654:131;8780:4;8654:131;:::i;:::-;8646:139;;8544:248;;;:::o;8798:419::-;;9002:2;8991:9;8987:18;8979:26;;9051:9;9045:4;9041:20;9037:1;9026:9;9022:17;9015:47;9079:131;9205:4;9079:131;:::i;:::-;9071:139;;8969:248;;;:::o;9223:419::-;;9427:2;9416:9;9412:18;9404:26;;9476:9;9470:4;9466:20;9462:1;9451:9;9447:17;9440:47;9504:131;9630:4;9504:131;:::i;:::-;9496:139;;9394:248;;;:::o;9648:419::-;;9852:2;9841:9;9837:18;9829:26;;9901:9;9895:4;9891:20;9887:1;9876:9;9872:17;9865:47;9929:131;10055:4;9929:131;:::i;:::-;9921:139;;9819:248;;;:::o;10073:419::-;;10277:2;10266:9;10262:18;10254:26;;10326:9;10320:4;10316:20;10312:1;10301:9;10297:17;10290:47;10354:131;10480:4;10354:131;:::i;:::-;10346:139;;10244:248;;;:::o;10498:419::-;;10702:2;10691:9;10687:18;10679:26;;10751:9;10745:4;10741:20;10737:1;10726:9;10722:17;10715:47;10779:131;10905:4;10779:131;:::i;:::-;10771:139;;10669:248;;;:::o;10923:419::-;;11127:2;11116:9;11112:18;11104:26;;11176:9;11170:4;11166:20;11162:1;11151:9;11147:17;11140:47;11204:131;11330:4;11204:131;:::i;:::-;11196:139;;11094:248;;;:::o;11348:419::-;;11552:2;11541:9;11537:18;11529:26;;11601:9;11595:4;11591:20;11587:1;11576:9;11572:17;11565:47;11629:131;11755:4;11629:131;:::i;:::-;11621:139;;11519:248;;;:::o;11773:222::-;;11904:2;11893:9;11889:18;11881:26;;11917:71;11985:1;11974:9;11970:17;11961:6;11917:71;:::i;:::-;11871:124;;;;:::o;12001:214::-;;12128:2;12117:9;12113:18;12105:26;;12141:67;12205:1;12194:9;12190:17;12181:6;12141:67;:::i;:::-;12095:120;;;;:::o;12221:99::-;;12307:5;12301:12;12291:22;;12280:40;;;:::o;12326:169::-;;12444:6;12439:3;12432:19;12484:4;12479:3;12475:14;12460:29;;12422:73;;;;:::o;12501:305::-;;12560:20;12578:1;12560:20;:::i;:::-;12555:25;;12594:20;12612:1;12594:20;:::i;:::-;12589:25;;12748:1;12680:66;12676:74;12673:1;12670:81;12667:2;;;12754:18;;:::i;:::-;12667:2;12798:1;12795;12791:9;12784:16;;12545:261;;;;:::o;12812:191::-;;12872:20;12890:1;12872:20;:::i;:::-;12867:25;;12906:20;12924:1;12906:20;:::i;:::-;12901:25;;12945:1;12942;12939:8;12936:2;;;12950:18;;:::i;:::-;12936:2;12995:1;12992;12988:9;12980:17;;12857:146;;;;:::o;13009:96::-;;13075:24;13093:5;13075:24;:::i;:::-;13064:35;;13054:51;;;:::o;13111:90::-;;13188:5;13181:13;13174:21;13163:32;;13153:48;;;:::o;13207:126::-;;13284:42;13277:5;13273:54;13262:65;;13252:81;;;:::o;13339:77::-;;13405:5;13394:16;;13384:32;;;:::o;13422:86::-;;13497:4;13490:5;13486:16;13475:27;;13465:43;;;:::o;13514:307::-;13582:1;13592:113;13606:6;13603:1;13600:13;13592:113;;;13691:1;13686:3;13682:11;13676:18;13672:1;13667:3;13663:11;13656:39;13628:2;13625:1;13621:10;13616:15;;13592:113;;;13723:6;13720:1;13717:13;13714:2;;;13803:1;13794:6;13789:3;13785:16;13778:27;13714:2;13563:258;;;;:::o;13827:320::-;;13908:1;13902:4;13898:12;13888:22;;13955:1;13949:4;13945:12;13976:18;13966:2;;14032:4;14024:6;14020:17;14010:27;;13966:2;14094;14086:6;14083:14;14063:18;14060:38;14057:2;;;14113:18;;:::i;:::-;14057:2;13878:269;;;;:::o;14153:180::-;14201:77;14198:1;14191:88;14298:4;14295:1;14288:15;14322:4;14319:1;14312:15;14339:180;14387:77;14384:1;14377:88;14484:4;14481:1;14474:15;14508:4;14505:1;14498:15;14525:102;;14617:2;14613:7;14608:2;14601:5;14597:14;14593:28;14583:38;;14573:54;;;:::o;14633:122::-;14706:24;14724:5;14706:24;:::i;:::-;14699:5;14696:35;14686:2;;14745:1;14742;14735:12;14686:2;14676:79;:::o;14761:122::-;14834:24;14852:5;14834:24;:::i;:::-;14827:5;14824:35;14814:2;;14873:1;14870;14863:12;14814:2;14804:79;:::o

Swarm Source

ipfs://b1231206bc7cf7ecaf365faa3de7b54617f78d01e07449fbd437068ee9ecccb6
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.