ETH Price: $2,392.40 (+0.85%)

Token

Yacht Coin (YACHT)
 

Overview

Max Total Supply

10,000,000,000 YACHT

Holders

68

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ikigai99.eth
Balance
5,000,000 YACHT

Value
$0.00
0xcabc8491816d5fa9f141c722fd8a08f2fd538333
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:
YachtCoin

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : YachtCoin.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract YachtCoin is ERC20, ReentrancyGuard {
    constructor() ERC20("Yacht Coin", "YACHT") {
        _mint(msg.sender, 10000000000 * 10 ** decimals());
    }

    function airdrop(address[] calldata recipients, uint256[] calldata quantity) external nonReentrant {
        require(recipients.length == quantity.length, "UNEQUAL_ARRAY: length of recipients and quantity not equal!");

        uint256 cumulativeQuantity = 0;
        for( uint256 i = 0; i < recipients.length; ++i ){
            cumulativeQuantity += quantity[i];
        }
        uint256 existingTokenBalance = this.balanceOf(msg.sender);

        require(cumulativeQuantity <= existingTokenBalance, "NOT_ENOUGH_TOKEN_BALANCE: Not enough token held!");

        for( uint256 i = 0; i < recipients.length; ++i ){
            this.transferFrom(msg.sender, recipients[i], quantity[i]);
        }
    }
}

File 2 of 6 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 3 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 4 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 5 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 6 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f596163687420436f696e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f594143485400000000000000000000000000000000000000000000000000000081525081600390816200008f9190620004ed565b508060049081620000a19190620004ed565b5050506001600581905550620000ed33620000c1620000f360201b60201c565b600a620000cf919062000764565b6402540be400620000e19190620007b5565b620000fc60201b60201c565b620008ec565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200016e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001659062000861565b60405180910390fd5b62000182600083836200026960201b60201c565b806002600082825462000196919062000883565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002499190620008cf565b60405180910390a362000265600083836200026e60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002f557607f821691505b6020821081036200030b576200030a620002ad565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000336565b62000381868362000336565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003ce620003c8620003c28462000399565b620003a3565b62000399565b9050919050565b6000819050919050565b620003ea83620003ad565b62000402620003f982620003d5565b84845462000343565b825550505050565b600090565b620004196200040a565b62000426818484620003df565b505050565b5b818110156200044e57620004426000826200040f565b6001810190506200042c565b5050565b601f8211156200049d57620004678162000311565b620004728462000326565b8101602085101562000482578190505b6200049a620004918562000326565b8301826200042b565b50505b505050565b600082821c905092915050565b6000620004c260001984600802620004a2565b1980831691505092915050565b6000620004dd8383620004af565b9150826002028217905092915050565b620004f88262000273565b67ffffffffffffffff8111156200051457620005136200027e565b5b620005208254620002dc565b6200052d82828562000452565b600060209050601f83116001811462000565576000841562000550578287015190505b6200055c8582620004cf565b865550620005cc565b601f198416620005758662000311565b60005b828110156200059f5784890151825560018201915060208501945060208101905062000578565b86831015620005bf5784890151620005bb601f891682620004af565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000662578086048111156200063a5762000639620005d4565b5b60018516156200064a5780820291505b80810290506200065a8562000603565b94506200061a565b94509492505050565b6000826200067d576001905062000750565b816200068d576000905062000750565b8160018114620006a65760028114620006b157620006e7565b600191505062000750565b60ff841115620006c657620006c5620005d4565b5b8360020a915084821115620006e057620006df620005d4565b5b5062000750565b5060208310610133831016604e8410600b8410161715620007215782820a9050838111156200071b576200071a620005d4565b5b62000750565b62000730848484600162000610565b925090508184048111156200074a5762000749620005d4565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007718262000399565b91506200077e8362000757565b9250620007ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200066b565b905092915050565b6000620007c28262000399565b9150620007cf8362000399565b9250828202620007df8162000399565b91508282048414831517620007f957620007f8620005d4565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000849601f8362000800565b9150620008568262000811565b602082019050919050565b600060208201905081810360008301526200087c816200083a565b9050919050565b6000620008908262000399565b91506200089d8362000399565b9250828201905080821115620008b857620008b7620005d4565b5b92915050565b620008c98162000399565b82525050565b6000602082019050620008e66000830184620008be565b92915050565b61193d80620008fc6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c8063672434821161007157806367243482146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610dd6565b60405180910390f35b6100f160048036038101906100ec9190610e96565b61032f565b6040516100fe9190610ef1565b60405180910390f35b61010f610352565b60405161011c9190610f1b565b60405180910390f35b61013f600480360381019061013a9190610f36565b61035c565b60405161014c9190610ef1565b60405180910390f35b61015d61038b565b60405161016a9190610fa5565b60405180910390f35b61018d60048036038101906101889190610e96565b610394565b60405161019a9190610ef1565b60405180910390f35b6101bd60048036038101906101b8919061107b565b6103cb565b005b6101d960048036038101906101d491906110fc565b610615565b6040516101e69190610f1b565b60405180910390f35b6101f761065d565b6040516102049190610dd6565b60405180910390f35b61022760048036038101906102229190610e96565b6106ef565b6040516102349190610ef1565b60405180910390f35b61025760048036038101906102529190610e96565b610766565b6040516102649190610ef1565b60405180910390f35b61028760048036038101906102829190611129565b610789565b6040516102949190610f1b565b60405180910390f35b6060600380546102ac90611198565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890611198565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a610810565b9050610347818585610818565b600191505092915050565b6000600254905090565b600080610367610810565b90506103748582856109e1565b61037f858585610a6d565b60019150509392505050565b60006012905090565b60008061039f610810565b90506103c08185856103b18589610789565b6103bb91906111f8565b610818565b600191505092915050565b6103d3610ce3565b81819050848490501461041b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104129061129e565b60405180910390fd5b6000805b858590508110156104625783838281811061043d5761043c6112be565b5b905060200201358261044f91906111f8565b91508061045b906112ed565b905061041f565b5060003073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161049e9190611344565b602060405180830381865afa1580156104bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104df9190611374565b905080821115610524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051b90611413565b60405180910390fd5b60005b86869050811015610604573073ffffffffffffffffffffffffffffffffffffffff166323b872dd33898985818110610562576105616112be565b5b905060200201602081019061057791906110fc565b88888681811061058a576105896112be565b5b905060200201356040518463ffffffff1660e01b81526004016105af93929190611433565b6020604051808303816000875af11580156105ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f29190611496565b50806105fd906112ed565b9050610527565b50505061060f610d32565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461066c90611198565b80601f016020809104026020016040519081016040528092919081815260200182805461069890611198565b80156106e55780601f106106ba576101008083540402835291602001916106e5565b820191906000526020600020905b8154815290600101906020018083116106c857829003601f168201915b5050505050905090565b6000806106fa610810565b905060006107088286610789565b90508381101561074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490611535565b60405180910390fd5b61075a8286868403610818565b60019250505092915050565b600080610771610810565b905061077e818585610a6d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e906115c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90611659565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109d49190610f1b565b60405180910390a3505050565b60006109ed8484610789565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a675781811015610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906116c5565b60405180910390fd5b610a668484848403610818565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390611757565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b42906117e9565b60405180910390fd5b610b56838383610d3c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd39061187b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cca9190610f1b565b60405180910390a3610cdd848484610d41565b50505050565b600260055403610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f906118e7565b60405180910390fd5b6002600581905550565b6001600581905550565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d80578082015181840152602081019050610d65565b60008484015250505050565b6000601f19601f8301169050919050565b6000610da882610d46565b610db28185610d51565b9350610dc2818560208601610d62565b610dcb81610d8c565b840191505092915050565b60006020820190508181036000830152610df08184610d9d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e2d82610e02565b9050919050565b610e3d81610e22565b8114610e4857600080fd5b50565b600081359050610e5a81610e34565b92915050565b6000819050919050565b610e7381610e60565b8114610e7e57600080fd5b50565b600081359050610e9081610e6a565b92915050565b60008060408385031215610ead57610eac610df8565b5b6000610ebb85828601610e4b565b9250506020610ecc85828601610e81565b9150509250929050565b60008115159050919050565b610eeb81610ed6565b82525050565b6000602082019050610f066000830184610ee2565b92915050565b610f1581610e60565b82525050565b6000602082019050610f306000830184610f0c565b92915050565b600080600060608486031215610f4f57610f4e610df8565b5b6000610f5d86828701610e4b565b9350506020610f6e86828701610e4b565b9250506040610f7f86828701610e81565b9150509250925092565b600060ff82169050919050565b610f9f81610f89565b82525050565b6000602082019050610fba6000830184610f96565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610fe557610fe4610fc0565b5b8235905067ffffffffffffffff81111561100257611001610fc5565b5b60208301915083602082028301111561101e5761101d610fca565b5b9250929050565b60008083601f84011261103b5761103a610fc0565b5b8235905067ffffffffffffffff81111561105857611057610fc5565b5b60208301915083602082028301111561107457611073610fca565b5b9250929050565b6000806000806040858703121561109557611094610df8565b5b600085013567ffffffffffffffff8111156110b3576110b2610dfd565b5b6110bf87828801610fcf565b9450945050602085013567ffffffffffffffff8111156110e2576110e1610dfd565b5b6110ee87828801611025565b925092505092959194509250565b60006020828403121561111257611111610df8565b5b600061112084828501610e4b565b91505092915050565b600080604083850312156111405761113f610df8565b5b600061114e85828601610e4b565b925050602061115f85828601610e4b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b057607f821691505b6020821081036111c3576111c2611169565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061120382610e60565b915061120e83610e60565b9250828201905080821115611226576112256111c9565b5b92915050565b7f554e455155414c5f41525241593a206c656e677468206f66207265636970696560008201527f6e747320616e64207175616e74697479206e6f7420657175616c210000000000602082015250565b6000611288603b83610d51565b91506112938261122c565b604082019050919050565b600060208201905081810360008301526112b78161127b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006112f882610e60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361132a576113296111c9565b5b600182019050919050565b61133e81610e22565b82525050565b60006020820190506113596000830184611335565b92915050565b60008151905061136e81610e6a565b92915050565b60006020828403121561138a57611389610df8565b5b60006113988482850161135f565b91505092915050565b7f4e4f545f454e4f5547485f544f4b454e5f42414c414e43453a204e6f7420656e60008201527f6f75676820746f6b656e2068656c642100000000000000000000000000000000602082015250565b60006113fd603083610d51565b9150611408826113a1565b604082019050919050565b6000602082019050818103600083015261142c816113f0565b9050919050565b60006060820190506114486000830186611335565b6114556020830185611335565b6114626040830184610f0c565b949350505050565b61147381610ed6565b811461147e57600080fd5b50565b6000815190506114908161146a565b92915050565b6000602082840312156114ac576114ab610df8565b5b60006114ba84828501611481565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061151f602583610d51565b915061152a826114c3565b604082019050919050565b6000602082019050818103600083015261154e81611512565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115b1602483610d51565b91506115bc82611555565b604082019050919050565b600060208201905081810360008301526115e0816115a4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611643602283610d51565b915061164e826115e7565b604082019050919050565b6000602082019050818103600083015261167281611636565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116af601d83610d51565b91506116ba82611679565b602082019050919050565b600060208201905081810360008301526116de816116a2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611741602583610d51565b915061174c826116e5565b604082019050919050565b6000602082019050818103600083015261177081611734565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006117d3602383610d51565b91506117de82611777565b604082019050919050565b60006020820190508181036000830152611802816117c6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611865602683610d51565b915061187082611809565b604082019050919050565b6000602082019050818103600083015261189481611858565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006118d1601f83610d51565b91506118dc8261189b565b602082019050919050565b60006020820190508181036000830152611900816118c4565b905091905056fea2646970667358221220e595a275e3c349beb799226e5792417c2f846cf8adb56f8ace4eec2aa7798f4464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c8063672434821161007157806367243482146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610dd6565b60405180910390f35b6100f160048036038101906100ec9190610e96565b61032f565b6040516100fe9190610ef1565b60405180910390f35b61010f610352565b60405161011c9190610f1b565b60405180910390f35b61013f600480360381019061013a9190610f36565b61035c565b60405161014c9190610ef1565b60405180910390f35b61015d61038b565b60405161016a9190610fa5565b60405180910390f35b61018d60048036038101906101889190610e96565b610394565b60405161019a9190610ef1565b60405180910390f35b6101bd60048036038101906101b8919061107b565b6103cb565b005b6101d960048036038101906101d491906110fc565b610615565b6040516101e69190610f1b565b60405180910390f35b6101f761065d565b6040516102049190610dd6565b60405180910390f35b61022760048036038101906102229190610e96565b6106ef565b6040516102349190610ef1565b60405180910390f35b61025760048036038101906102529190610e96565b610766565b6040516102649190610ef1565b60405180910390f35b61028760048036038101906102829190611129565b610789565b6040516102949190610f1b565b60405180910390f35b6060600380546102ac90611198565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890611198565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a610810565b9050610347818585610818565b600191505092915050565b6000600254905090565b600080610367610810565b90506103748582856109e1565b61037f858585610a6d565b60019150509392505050565b60006012905090565b60008061039f610810565b90506103c08185856103b18589610789565b6103bb91906111f8565b610818565b600191505092915050565b6103d3610ce3565b81819050848490501461041b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104129061129e565b60405180910390fd5b6000805b858590508110156104625783838281811061043d5761043c6112be565b5b905060200201358261044f91906111f8565b91508061045b906112ed565b905061041f565b5060003073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161049e9190611344565b602060405180830381865afa1580156104bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104df9190611374565b905080821115610524576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051b90611413565b60405180910390fd5b60005b86869050811015610604573073ffffffffffffffffffffffffffffffffffffffff166323b872dd33898985818110610562576105616112be565b5b905060200201602081019061057791906110fc565b88888681811061058a576105896112be565b5b905060200201356040518463ffffffff1660e01b81526004016105af93929190611433565b6020604051808303816000875af11580156105ce573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f29190611496565b50806105fd906112ed565b9050610527565b50505061060f610d32565b50505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461066c90611198565b80601f016020809104026020016040519081016040528092919081815260200182805461069890611198565b80156106e55780601f106106ba576101008083540402835291602001916106e5565b820191906000526020600020905b8154815290600101906020018083116106c857829003601f168201915b5050505050905090565b6000806106fa610810565b905060006107088286610789565b90508381101561074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490611535565b60405180910390fd5b61075a8286868403610818565b60019250505092915050565b600080610771610810565b905061077e818585610a6d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087e906115c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90611659565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109d49190610f1b565b60405180910390a3505050565b60006109ed8484610789565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a675781811015610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a50906116c5565b60405180910390fd5b610a668484848403610818565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390611757565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b42906117e9565b60405180910390fd5b610b56838383610d3c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd39061187b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cca9190610f1b565b60405180910390a3610cdd848484610d41565b50505050565b600260055403610d28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1f906118e7565b60405180910390fd5b6002600581905550565b6001600581905550565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d80578082015181840152602081019050610d65565b60008484015250505050565b6000601f19601f8301169050919050565b6000610da882610d46565b610db28185610d51565b9350610dc2818560208601610d62565b610dcb81610d8c565b840191505092915050565b60006020820190508181036000830152610df08184610d9d565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e2d82610e02565b9050919050565b610e3d81610e22565b8114610e4857600080fd5b50565b600081359050610e5a81610e34565b92915050565b6000819050919050565b610e7381610e60565b8114610e7e57600080fd5b50565b600081359050610e9081610e6a565b92915050565b60008060408385031215610ead57610eac610df8565b5b6000610ebb85828601610e4b565b9250506020610ecc85828601610e81565b9150509250929050565b60008115159050919050565b610eeb81610ed6565b82525050565b6000602082019050610f066000830184610ee2565b92915050565b610f1581610e60565b82525050565b6000602082019050610f306000830184610f0c565b92915050565b600080600060608486031215610f4f57610f4e610df8565b5b6000610f5d86828701610e4b565b9350506020610f6e86828701610e4b565b9250506040610f7f86828701610e81565b9150509250925092565b600060ff82169050919050565b610f9f81610f89565b82525050565b6000602082019050610fba6000830184610f96565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112610fe557610fe4610fc0565b5b8235905067ffffffffffffffff81111561100257611001610fc5565b5b60208301915083602082028301111561101e5761101d610fca565b5b9250929050565b60008083601f84011261103b5761103a610fc0565b5b8235905067ffffffffffffffff81111561105857611057610fc5565b5b60208301915083602082028301111561107457611073610fca565b5b9250929050565b6000806000806040858703121561109557611094610df8565b5b600085013567ffffffffffffffff8111156110b3576110b2610dfd565b5b6110bf87828801610fcf565b9450945050602085013567ffffffffffffffff8111156110e2576110e1610dfd565b5b6110ee87828801611025565b925092505092959194509250565b60006020828403121561111257611111610df8565b5b600061112084828501610e4b565b91505092915050565b600080604083850312156111405761113f610df8565b5b600061114e85828601610e4b565b925050602061115f85828601610e4b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111b057607f821691505b6020821081036111c3576111c2611169565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061120382610e60565b915061120e83610e60565b9250828201905080821115611226576112256111c9565b5b92915050565b7f554e455155414c5f41525241593a206c656e677468206f66207265636970696560008201527f6e747320616e64207175616e74697479206e6f7420657175616c210000000000602082015250565b6000611288603b83610d51565b91506112938261122c565b604082019050919050565b600060208201905081810360008301526112b78161127b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006112f882610e60565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361132a576113296111c9565b5b600182019050919050565b61133e81610e22565b82525050565b60006020820190506113596000830184611335565b92915050565b60008151905061136e81610e6a565b92915050565b60006020828403121561138a57611389610df8565b5b60006113988482850161135f565b91505092915050565b7f4e4f545f454e4f5547485f544f4b454e5f42414c414e43453a204e6f7420656e60008201527f6f75676820746f6b656e2068656c642100000000000000000000000000000000602082015250565b60006113fd603083610d51565b9150611408826113a1565b604082019050919050565b6000602082019050818103600083015261142c816113f0565b9050919050565b60006060820190506114486000830186611335565b6114556020830185611335565b6114626040830184610f0c565b949350505050565b61147381610ed6565b811461147e57600080fd5b50565b6000815190506114908161146a565b92915050565b6000602082840312156114ac576114ab610df8565b5b60006114ba84828501611481565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061151f602583610d51565b915061152a826114c3565b604082019050919050565b6000602082019050818103600083015261154e81611512565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115b1602483610d51565b91506115bc82611555565b604082019050919050565b600060208201905081810360008301526115e0816115a4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611643602283610d51565b915061164e826115e7565b604082019050919050565b6000602082019050818103600083015261167281611636565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116af601d83610d51565b91506116ba82611679565b602082019050919050565b600060208201905081810360008301526116de816116a2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611741602583610d51565b915061174c826116e5565b604082019050919050565b6000602082019050818103600083015261177081611734565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006117d3602383610d51565b91506117de82611777565b604082019050919050565b60006020820190508181036000830152611802816117c6565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611865602683610d51565b915061187082611809565b604082019050919050565b6000602082019050818103600083015261189481611858565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006118d1601f83610d51565b91506118dc8261189b565b602082019050919050565b60006020820190508181036000830152611900816118c4565b905091905056fea2646970667358221220e595a275e3c349beb799226e5792417c2f846cf8adb56f8ace4eec2aa7798f4464736f6c63430008120033

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.