ETH Price: $3,446.26 (-2.50%)
Gas: 4 Gwei

Token

Everyworld (EVERY)
 

Overview

Max Total Supply

10,000,000,000 EVERY

Holders

666 ( 0.150%)

Market

Price

$0.01 @ 0.000001 ETH (-4.81%)

Onchain Market Cap

$50,533,400.00

Circulating Supply Market Cap

$4,221,975.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,966.385779 EVERY

Value
$25.10 ( ~0.00728326289770834 Eth) [0.0000%]
0x15fad699fa878e90d58af37eede74ebbc7b82a33
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:
Token

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 2 of 6 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 3 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// 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 6 of 6 : Token.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.18;
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";

contract Token is ERC20Capped {
    uint8 private immutable customDecimals;

    error Token_InvalidMintParams();
    error Token_InvalidSupply();

    constructor(
        string memory _erc20Name,
        string memory _erc20Symbol,
        uint8 _decimals,
        uint256 _cap,
        address[] memory _mintAddresses,
        uint256[] memory _mintAmounts
    ) ERC20(_erc20Name, _erc20Symbol) ERC20Capped(_cap) {
        uint256 _mintAddressesLength = _mintAddresses.length;
        if (_mintAddressesLength != _mintAmounts.length) {
            revert Token_InvalidMintParams();
        }

        customDecimals = _decimals;

        for (uint256 i; i < _mintAddressesLength; ++i) {
            ERC20._mint(_mintAddresses[i], _mintAmounts[i]);
        }

        if (_cap < totalSupply()) {
            revert Token_InvalidSupply();
        }
    }

    function decimals() public view override returns (uint8) {
        return customDecimals;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_erc20Name","type":"string"},{"internalType":"string","name":"_erc20Symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"},{"internalType":"uint256","name":"_cap","type":"uint256"},{"internalType":"address[]","name":"_mintAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Token_InvalidMintParams","type":"error"},{"inputs":[],"name":"Token_InvalidSupply","type":"error"},{"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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"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"}]

60c06040523480156200001157600080fd5b506040516200223a3803806200223a83398181016040528101906200003791906200076a565b82868681600390816200004b919062000ac3565b5080600490816200005d919062000ac3565b50505060008111620000a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200009d9062000c0b565b60405180910390fd5b80608081815250505060008251905081518114620000f0576040517fa7b9790400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8460ff1660a08160ff168152505060005b818110156200016f576200015b84828151811062000124576200012362000c2d565b5b602002602001015184838151811062000142576200014162000c2d565b5b6020026020010151620001c760201b6200060f1760201c565b80620001679062000c8b565b905062000101565b50620001806200033460201b60201c565b841015620001ba576040517fec27720200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050505062000db3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000239576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002309062000d28565b60405180910390fd5b6200024d600083836200033e60201b60201c565b806002600082825462000261919062000d4a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000314919062000d96565b60405180910390a362000330600083836200034360201b60201c565b5050565b6000600254905090565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003b18262000366565b810181811067ffffffffffffffff82111715620003d357620003d262000377565b5b80604052505050565b6000620003e862000348565b9050620003f68282620003a6565b919050565b600067ffffffffffffffff82111562000419576200041862000377565b5b620004248262000366565b9050602081019050919050565b60005b838110156200045157808201518184015260208101905062000434565b60008484015250505050565b6000620004746200046e84620003fb565b620003dc565b90508281526020810184848401111562000493576200049262000361565b5b620004a084828562000431565b509392505050565b600082601f830112620004c057620004bf6200035c565b5b8151620004d28482602086016200045d565b91505092915050565b600060ff82169050919050565b620004f381620004db565b8114620004ff57600080fd5b50565b6000815190506200051381620004e8565b92915050565b6000819050919050565b6200052e8162000519565b81146200053a57600080fd5b50565b6000815190506200054e8162000523565b92915050565b600067ffffffffffffffff82111562000572576200057162000377565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005b58262000588565b9050919050565b620005c781620005a8565b8114620005d357600080fd5b50565b600081519050620005e781620005bc565b92915050565b600062000604620005fe8462000554565b620003dc565b905080838252602082019050602084028301858111156200062a576200062962000583565b5b835b81811015620006575780620006428882620005d6565b8452602084019350506020810190506200062c565b5050509392505050565b600082601f8301126200067957620006786200035c565b5b81516200068b848260208601620005ed565b91505092915050565b600067ffffffffffffffff821115620006b257620006b162000377565b5b602082029050602081019050919050565b6000620006da620006d48462000694565b620003dc565b905080838252602082019050602084028301858111156200070057620006ff62000583565b5b835b818110156200072d57806200071888826200053d565b84526020840193505060208101905062000702565b5050509392505050565b600082601f8301126200074f576200074e6200035c565b5b815162000761848260208601620006c3565b91505092915050565b60008060008060008060c087890312156200078a576200078962000352565b5b600087015167ffffffffffffffff811115620007ab57620007aa62000357565b5b620007b989828a01620004a8565b965050602087015167ffffffffffffffff811115620007dd57620007dc62000357565b5b620007eb89828a01620004a8565b9550506040620007fe89828a0162000502565b94505060606200081189828a016200053d565b935050608087015167ffffffffffffffff81111562000835576200083462000357565b5b6200084389828a0162000661565b92505060a087015167ffffffffffffffff81111562000867576200086662000357565b5b6200087589828a0162000737565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008d557607f821691505b602082108103620008eb57620008ea6200088d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000916565b62000961868362000916565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009a46200099e620009988462000519565b62000979565b62000519565b9050919050565b6000819050919050565b620009c08362000983565b620009d8620009cf82620009ab565b84845462000923565b825550505050565b600090565b620009ef620009e0565b620009fc818484620009b5565b505050565b5b8181101562000a245762000a18600082620009e5565b60018101905062000a02565b5050565b601f82111562000a735762000a3d81620008f1565b62000a488462000906565b8101602085101562000a58578190505b62000a7062000a678562000906565b83018262000a01565b50505b505050565b600082821c905092915050565b600062000a986000198460080262000a78565b1980831691505092915050565b600062000ab3838362000a85565b9150826002028217905092915050565b62000ace8262000882565b67ffffffffffffffff81111562000aea5762000ae962000377565b5b62000af68254620008bc565b62000b0382828562000a28565b600060209050601f83116001811462000b3b576000841562000b26578287015190505b62000b32858262000aa5565b86555062000ba2565b601f19841662000b4b86620008f1565b60005b8281101562000b755784890151825560018201915060208501945060208101905062000b4e565b8683101562000b95578489015162000b91601f89168262000a85565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000bf360158362000baa565b915062000c008262000bbb565b602082019050919050565b6000602082019050818103600083015262000c268162000be4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c988262000519565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000ccd5762000ccc62000c5c565b5b600182019050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d10601f8362000baa565b915062000d1d8262000cd8565b602082019050919050565b6000602082019050818103600083015262000d438162000d01565b9050919050565b600062000d578262000519565b915062000d648362000519565b925082820190508082111562000d7f5762000d7e62000c5c565b5b92915050565b62000d908162000519565b82525050565b600060208201905062000dad600083018462000d85565b92915050565b60805160a05161146162000dd96000396000610391015260006103b901526114616000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461019157806370a08231146101c157806395d89b41146101f1578063a457c2d71461020f578063a9059cbb1461023f578063dd62ed3e1461026f576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce56714610155578063355274ea14610173575b600080fd5b6100c161029f565b6040516100ce9190610cd2565b60405180910390f35b6100f160048036038101906100ec9190610d8d565b610331565b6040516100fe9190610de8565b60405180910390f35b61010f610354565b60405161011c9190610e12565b60405180910390f35b61013f600480360381019061013a9190610e2d565b61035e565b60405161014c9190610de8565b60405180910390f35b61015d61038d565b60405161016a9190610e9c565b60405180910390f35b61017b6103b5565b6040516101889190610e12565b60405180910390f35b6101ab60048036038101906101a69190610d8d565b6103dd565b6040516101b89190610de8565b60405180910390f35b6101db60048036038101906101d69190610eb7565b610414565b6040516101e89190610e12565b60405180910390f35b6101f961045c565b6040516102069190610cd2565b60405180910390f35b61022960048036038101906102249190610d8d565b6104ee565b6040516102369190610de8565b60405180910390f35b61025960048036038101906102549190610d8d565b610565565b6040516102669190610de8565b60405180910390f35b61028960048036038101906102849190610ee4565b610588565b6040516102969190610e12565b60405180910390f35b6060600380546102ae90610f53565b80601f01602080910402602001604051908101604052809291908181526020018280546102da90610f53565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b60008061033c610765565b905061034981858561076d565b600191505092915050565b6000600254905090565b600080610369610765565b9050610376858285610936565b6103818585856109c2565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000806103e8610765565b90506104098185856103fa8589610588565b6104049190610fb3565b61076d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461046b90610f53565b80601f016020809104026020016040519081016040528092919081815260200182805461049790610f53565b80156104e45780601f106104b9576101008083540402835291602001916104e4565b820191906000526020600020905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b6000806104f9610765565b905060006105078286610588565b90508381101561054c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054390611059565b60405180910390fd5b610559828686840361076d565b60019250505092915050565b600080610570610765565b905061057d8185856109c2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361067e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610675906110c5565b60405180910390fd5b61068a60008383610c38565b806002600082825461069c9190610fb3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161074d9190610e12565b60405180910390a361076160008383610c3d565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390611157565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610842906111e9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109299190610e12565b60405180910390a3505050565b60006109428484610588565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109bc57818110156109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590611255565b60405180910390fd5b6109bb848484840361076d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906112e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611379565b60405180910390fd5b610aab838383610c38565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061140b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c1f9190610e12565b60405180910390a3610c32848484610c3d565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c7c578082015181840152602081019050610c61565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ca482610c42565b610cae8185610c4d565b9350610cbe818560208601610c5e565b610cc781610c88565b840191505092915050565b60006020820190508181036000830152610cec8184610c99565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d2482610cf9565b9050919050565b610d3481610d19565b8114610d3f57600080fd5b50565b600081359050610d5181610d2b565b92915050565b6000819050919050565b610d6a81610d57565b8114610d7557600080fd5b50565b600081359050610d8781610d61565b92915050565b60008060408385031215610da457610da3610cf4565b5b6000610db285828601610d42565b9250506020610dc385828601610d78565b9150509250929050565b60008115159050919050565b610de281610dcd565b82525050565b6000602082019050610dfd6000830184610dd9565b92915050565b610e0c81610d57565b82525050565b6000602082019050610e276000830184610e03565b92915050565b600080600060608486031215610e4657610e45610cf4565b5b6000610e5486828701610d42565b9350506020610e6586828701610d42565b9250506040610e7686828701610d78565b9150509250925092565b600060ff82169050919050565b610e9681610e80565b82525050565b6000602082019050610eb16000830184610e8d565b92915050565b600060208284031215610ecd57610ecc610cf4565b5b6000610edb84828501610d42565b91505092915050565b60008060408385031215610efb57610efa610cf4565b5b6000610f0985828601610d42565b9250506020610f1a85828601610d42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f6b57607f821691505b602082108103610f7e57610f7d610f24565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610fbe82610d57565b9150610fc983610d57565b9250828201905080821115610fe157610fe0610f84565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611043602583610c4d565b915061104e82610fe7565b604082019050919050565b6000602082019050818103600083015261107281611036565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006110af601f83610c4d565b91506110ba82611079565b602082019050919050565b600060208201905081810360008301526110de816110a2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611141602483610c4d565b915061114c826110e5565b604082019050919050565b6000602082019050818103600083015261117081611134565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006111d3602283610c4d565b91506111de82611177565b604082019050919050565b60006020820190508181036000830152611202816111c6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061123f601d83610c4d565b915061124a82611209565b602082019050919050565b6000602082019050818103600083015261126e81611232565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006112d1602583610c4d565b91506112dc82611275565b604082019050919050565b60006020820190508181036000830152611300816112c4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611363602383610c4d565b915061136e82611307565b604082019050919050565b6000602082019050818103600083015261139281611356565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006113f5602683610c4d565b915061140082611399565b604082019050919050565b60006020820190508181036000830152611424816113e8565b905091905056fea2646970667358221220e322a828898402920c3bc93b7152b91036397ef4825627d68425a3321619267c64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000204fce5e3e2502611000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000a4576657279776f726c640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054556455259000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000074028f2a75dd29e131f169dc8cd871b113559d2300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000204fce5e3e25026110000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633950935111610071578063395093511461019157806370a08231146101c157806395d89b41146101f1578063a457c2d71461020f578063a9059cbb1461023f578063dd62ed3e1461026f576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce56714610155578063355274ea14610173575b600080fd5b6100c161029f565b6040516100ce9190610cd2565b60405180910390f35b6100f160048036038101906100ec9190610d8d565b610331565b6040516100fe9190610de8565b60405180910390f35b61010f610354565b60405161011c9190610e12565b60405180910390f35b61013f600480360381019061013a9190610e2d565b61035e565b60405161014c9190610de8565b60405180910390f35b61015d61038d565b60405161016a9190610e9c565b60405180910390f35b61017b6103b5565b6040516101889190610e12565b60405180910390f35b6101ab60048036038101906101a69190610d8d565b6103dd565b6040516101b89190610de8565b60405180910390f35b6101db60048036038101906101d69190610eb7565b610414565b6040516101e89190610e12565b60405180910390f35b6101f961045c565b6040516102069190610cd2565b60405180910390f35b61022960048036038101906102249190610d8d565b6104ee565b6040516102369190610de8565b60405180910390f35b61025960048036038101906102549190610d8d565b610565565b6040516102669190610de8565b60405180910390f35b61028960048036038101906102849190610ee4565b610588565b6040516102969190610e12565b60405180910390f35b6060600380546102ae90610f53565b80601f01602080910402602001604051908101604052809291908181526020018280546102da90610f53565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b60008061033c610765565b905061034981858561076d565b600191505092915050565b6000600254905090565b600080610369610765565b9050610376858285610936565b6103818585856109c2565b60019150509392505050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b60007f0000000000000000000000000000000000000000204fce5e3e25026110000000905090565b6000806103e8610765565b90506104098185856103fa8589610588565b6104049190610fb3565b61076d565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461046b90610f53565b80601f016020809104026020016040519081016040528092919081815260200182805461049790610f53565b80156104e45780601f106104b9576101008083540402835291602001916104e4565b820191906000526020600020905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b6000806104f9610765565b905060006105078286610588565b90508381101561054c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054390611059565b60405180910390fd5b610559828686840361076d565b60019250505092915050565b600080610570610765565b905061057d8185856109c2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361067e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610675906110c5565b60405180910390fd5b61068a60008383610c38565b806002600082825461069c9190610fb3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161074d9190610e12565b60405180910390a361076160008383610c3d565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390611157565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361084b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610842906111e9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109299190610e12565b60405180910390a3505050565b60006109428484610588565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109bc57818110156109ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a590611255565b60405180910390fd5b6109bb848484840361076d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906112e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611379565b60405180910390fd5b610aab838383610c38565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061140b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c1f9190610e12565b60405180910390a3610c32848484610c3d565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c7c578082015181840152602081019050610c61565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ca482610c42565b610cae8185610c4d565b9350610cbe818560208601610c5e565b610cc781610c88565b840191505092915050565b60006020820190508181036000830152610cec8184610c99565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d2482610cf9565b9050919050565b610d3481610d19565b8114610d3f57600080fd5b50565b600081359050610d5181610d2b565b92915050565b6000819050919050565b610d6a81610d57565b8114610d7557600080fd5b50565b600081359050610d8781610d61565b92915050565b60008060408385031215610da457610da3610cf4565b5b6000610db285828601610d42565b9250506020610dc385828601610d78565b9150509250929050565b60008115159050919050565b610de281610dcd565b82525050565b6000602082019050610dfd6000830184610dd9565b92915050565b610e0c81610d57565b82525050565b6000602082019050610e276000830184610e03565b92915050565b600080600060608486031215610e4657610e45610cf4565b5b6000610e5486828701610d42565b9350506020610e6586828701610d42565b9250506040610e7686828701610d78565b9150509250925092565b600060ff82169050919050565b610e9681610e80565b82525050565b6000602082019050610eb16000830184610e8d565b92915050565b600060208284031215610ecd57610ecc610cf4565b5b6000610edb84828501610d42565b91505092915050565b60008060408385031215610efb57610efa610cf4565b5b6000610f0985828601610d42565b9250506020610f1a85828601610d42565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f6b57607f821691505b602082108103610f7e57610f7d610f24565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610fbe82610d57565b9150610fc983610d57565b9250828201905080821115610fe157610fe0610f84565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611043602583610c4d565b915061104e82610fe7565b604082019050919050565b6000602082019050818103600083015261107281611036565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006110af601f83610c4d565b91506110ba82611079565b602082019050919050565b600060208201905081810360008301526110de816110a2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611141602483610c4d565b915061114c826110e5565b604082019050919050565b6000602082019050818103600083015261117081611134565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006111d3602283610c4d565b91506111de82611177565b604082019050919050565b60006020820190508181036000830152611202816111c6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061123f601d83610c4d565b915061124a82611209565b602082019050919050565b6000602082019050818103600083015261126e81611232565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006112d1602583610c4d565b91506112dc82611275565b604082019050919050565b60006020820190508181036000830152611300816112c4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611363602383610c4d565b915061136e82611307565b604082019050919050565b6000602082019050818103600083015261139281611356565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006113f5602683610c4d565b915061140082611399565b604082019050919050565b60006020820190508181036000830152611424816113e8565b905091905056fea2646970667358221220e322a828898402920c3bc93b7152b91036397ef4825627d68425a3321619267c64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000204fce5e3e2502611000000000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000a4576657279776f726c640000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054556455259000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000074028f2a75dd29e131f169dc8cd871b113559d2300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000204fce5e3e25026110000000

-----Decoded View---------------
Arg [0] : _erc20Name (string): Everyworld
Arg [1] : _erc20Symbol (string): EVERY
Arg [2] : _decimals (uint8): 18
Arg [3] : _cap (uint256): 10000000000000000000000000000
Arg [4] : _mintAddresses (address[]): 0x74028F2A75dD29e131f169dC8cD871b113559D23
Arg [5] : _mintAmounts (uint256[]): 10000000000000000000000000000

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 4576657279776f726c6400000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 4556455259000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 00000000000000000000000074028f2a75dd29e131f169dc8cd871b113559d23
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 0000000000000000000000000000000000000000204fce5e3e25026110000000


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.