ETH Price: $2,525.15 (-0.37%)

Token

FOMOZero (FZ)
 

Overview

Max Total Supply

2,623,272.062992095947265625 FZ

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,984.381037230118866726 FZ

Value
$0.00
0x56Ea4859cDeC6Bbb6D77011f22B13E647b0c3ddA
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:
FOMOZero

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : fomozero.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

contract FOMOZero is ERC20, ReentrancyGuard, Ownable {
    uint256 public constant TOTAL_SUPPLY = 21000000 * (10 ** 18);
    
    uint256 public constant CYCLE = 10 seconds;

    uint256 public constant PRIZE_CYCLE = 86400 seconds;
    uint256 public constant MAX_CLAIMS = 10240 * (10 ** 18);
    
    uint256 public  RATE = 1024 * (10 ** 18);

    uint256 public mintAmount;

    uint256 public nextMintRate;

    uint256 public resetTime;
    
    mapping(address => uint256) public totalClaimed;

    uint256 public totalMinted;

    address public lastMinter;

    uint256 public lastMinteTime;

    constructor() ERC20("FOMOZero", "FZ") {
        _mint(msg.sender, TOTAL_SUPPLY / 10); // Mint 10% of total supply to deployer to add Liquidity
        resetTime = block.timestamp + CYCLE;
        totalMinted = TOTAL_SUPPLY / 10;
    }

    function getPrize() public {
        require(msg.sender == lastMinter,"NOT LAST MINTER"); 
        require(totalMinted < TOTAL_SUPPLY,"Exceeds total supply"); 
        //if no one mint for morethen 1 day
        require(block.timestamp >= lastMinteTime + PRIZE_CYCLE,"NOT PRIZE TIME"); 
        mintAmount = TOTAL_SUPPLY - totalMinted ;
        _mint(msg.sender, mintAmount);
        totalMinted = TOTAL_SUPPLY;
   }



function halving() public onlyOwner {
        if(totalMinted >= 10500000 * (10 ** 18) && totalMinted < 15750000 * (10 ** 18)){
            RATE = 512 * (10 ** 18);
        }else if(totalMinted >= 15750000 * (10 ** 18) && totalMinted < 18375000 * (10 ** 18)){
            RATE = 256 * (10 ** 18);
        }else if(totalMinted >= 18375000 * (10 ** 18)){
            RATE = 128 * (10 ** 18);
        }
   }



    receive() external payable nonReentrant {
        require(totalClaimed[msg.sender] < MAX_CLAIMS, "Maximum number of claims reached");
        require(address(msg.sender) == address(tx.origin), "It can't be a contract");
        if(block.timestamp >= resetTime){
          //reset every 10 seconds
          nextMintRate = 1 ;
          mintAmount =RATE;
        }
        mintAmount = mintAmount/nextMintRate ;
        require(totalMinted + mintAmount <= TOTAL_SUPPLY, "Exceeds total supply");
        _mint(msg.sender, mintAmount);

        nextMintRate = nextMintRate*2;
        resetTime = block.timestamp + CYCLE;
        totalClaimed[msg.sender] += mintAmount;
        totalMinted += mintAmount; 
        lastMinter=msg.sender;
        lastMinteTime =block.timestamp;
    }


    function renounceOwnership() public onlyOwner override {
        super.renounceOwnership();
    }
}

File 2 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 3 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 7 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

File 5 of 7 : 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 7 : 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 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"CYCLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CLAIMS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRIZE_CYCLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"getPrize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"halving","outputs":[],"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":"lastMinteTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMinter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052683782dace9d900000006007553480156200001e57600080fd5b506040518060400160405280600881526020017f464f4d4f5a65726f0000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f465a00000000000000000000000000000000000000000000000000000000000081525081600390816200009c9190620005fe565b508060049081620000ae9190620005fe565b5050506001600581905550620000d9620000cd6200013f60201b60201c565b6200014760201b60201c565b6200010433600a6a115eec47f6cf7e35000000620000f8919062000743565b6200020d60201b60201c565b600a426200011391906200077b565b600a81905550600a6a115eec47f6cf7e3500000062000133919062000743565b600c8190555062000867565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200027f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002769062000817565b60405180910390fd5b62000293600083836200037a60201b60201c565b8060026000828254620002a791906200077b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035a91906200084a565b60405180910390a362000376600083836200037f60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200040657607f821691505b6020821081036200041c576200041b620003be565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000447565b62000492868362000447565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004df620004d9620004d384620004aa565b620004b4565b620004aa565b9050919050565b6000819050919050565b620004fb83620004be565b620005136200050a82620004e6565b84845462000454565b825550505050565b600090565b6200052a6200051b565b62000537818484620004f0565b505050565b5b818110156200055f576200055360008262000520565b6001810190506200053d565b5050565b601f821115620005ae57620005788162000422565b620005838462000437565b8101602085101562000593578190505b620005ab620005a28562000437565b8301826200053c565b50505b505050565b600082821c905092915050565b6000620005d360001984600802620005b3565b1980831691505092915050565b6000620005ee8383620005c0565b9150826002028217905092915050565b620006098262000384565b67ffffffffffffffff8111156200062557620006246200038f565b5b620006318254620003ed565b6200063e82828562000563565b600060209050601f83116001811462000676576000841562000661578287015190505b6200066d8582620005e0565b865550620006dd565b601f198416620006868662000422565b60005b82811015620006b05784890151825560018201915060208501945060208101905062000689565b86831015620006d05784890151620006cc601f891682620005c0565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200075082620004aa565b91506200075d83620004aa565b92508262000770576200076f620006e5565b5b828204905092915050565b60006200078882620004aa565b91506200079583620004aa565b9250828201905080821115620007b057620007af62000714565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007ff601f83620007b6565b91506200080c82620007c7565b602082019050919050565b600060208201905081810360008301526200083281620007f0565b9050919050565b6200084481620004aa565b82525050565b600060208201905062000861600083018462000839565b92915050565b61246280620008776000396000f3fe6080604052600436106101bb5760003560e01c806395d89b41116100ec578063c34f6b0d1161008a578063dd62ed3e11610064578063dd62ed3e146108c9578063ea1354bd14610906578063ef5d9ae814610931578063f2fde38b1461096e5761048c565b8063c34f6b0d14610870578063c8df245a14610887578063cf62ba921461089e5761048c565b8063a457c2d7116100c6578063a457c2d7146107a0578063a9059cbb146107dd578063bf972a8a1461081a578063c31ef0c2146108455761048c565b806395d89b411461071f5780639e8d48d01461074a578063a2309ff8146107755761048c565b80635a2bcc181161015957806370a082311161013357806370a0823114610675578063715018a6146106b25780638da5cb5b146106c9578063902d55a5146106f45761048c565b80635a2bcc18146105f457806365a114f11461061f578063664e97041461064a5761048c565b806323b872dd1161019557806323b872dd14610524578063313ce56714610561578063395093511461058c5780634cd609bc146105c95761048c565b806306fdde0314610491578063095ea7b3146104bc57806318160ddd146104f95761048c565b3661048c57600260055403610205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101fc9061181a565b60405180910390fd5b600260058190555069022b1c8c1227a0000000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028f90611886565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102fd906118f2565b60405180910390fd5b600a5442106103215760016009819055506007546008819055505b600954600854610331919061197a565b6008819055506a115eec47f6cf7e35000000600854600c5461035391906119ab565b1115610394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161038b90611a2b565b60405180910390fd5b6103a033600854610997565b60026009546103af9190611a4b565b600981905550600a426103c291906119ab565b600a81905550600854600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461041991906119ab565b92505081905550600854600c600082825461043491906119ab565b9250508190555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600e8190555060016005819055005b600080fd5b34801561049d57600080fd5b506104a6610aed565b6040516104b39190611b0c565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190611bbd565b610b7f565b6040516104f09190611c18565b60405180910390f35b34801561050557600080fd5b5061050e610ba2565b60405161051b9190611c42565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190611c5d565b610bac565b6040516105589190611c18565b60405180910390f35b34801561056d57600080fd5b50610576610bdb565b6040516105839190611ccc565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190611bbd565b610be4565b6040516105c09190611c18565b60405180910390f35b3480156105d557600080fd5b506105de610c1b565b6040516105eb9190611cf6565b60405180910390f35b34801561060057600080fd5b50610609610c41565b6040516106169190611c42565b60405180910390f35b34801561062b57600080fd5b50610634610c47565b6040516106419190611c42565b60405180910390f35b34801561065657600080fd5b5061065f610c4d565b60405161066c9190611c42565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190611d11565b610c53565b6040516106a99190611c42565b60405180910390f35b3480156106be57600080fd5b506106c7610c9b565b005b3480156106d557600080fd5b506106de610cad565b6040516106eb9190611cf6565b60405180910390f35b34801561070057600080fd5b50610709610cd7565b6040516107169190611c42565b60405180910390f35b34801561072b57600080fd5b50610734610ce6565b6040516107419190611b0c565b60405180910390f35b34801561075657600080fd5b5061075f610d78565b60405161076c9190611c42565b60405180910390f35b34801561078157600080fd5b5061078a610d7d565b6040516107979190611c42565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190611bbd565b610d83565b6040516107d49190611c18565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190611bbd565b610dfa565b6040516108119190611c18565b60405180910390f35b34801561082657600080fd5b5061082f610e1d565b60405161083c9190611c42565b60405180910390f35b34801561085157600080fd5b5061085a610e23565b6040516108679190611c42565b60405180910390f35b34801561087c57600080fd5b50610885610e2a565b005b34801561089357600080fd5b5061089c610f9b565b005b3480156108aa57600080fd5b506108b3611052565b6040516108c09190611c42565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190611d3e565b611060565b6040516108fd9190611c42565b60405180910390f35b34801561091257600080fd5b5061091b6110e7565b6040516109289190611c42565b60405180910390f35b34801561093d57600080fd5b5061095860048036038101906109539190611d11565b6110ed565b6040516109659190611c42565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190611d11565b611105565b005b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90611dca565b60405180910390fd5b610a1260008383611188565b8060026000828254610a2491906119ab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ad59190611c42565b60405180910390a3610ae96000838361118d565b5050565b606060038054610afc90611e19565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2890611e19565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b5050505050905090565b600080610b8a611192565b9050610b9781858561119a565b600191505092915050565b6000600254905090565b600080610bb7611192565b9050610bc4858285611363565b610bcf8585856113ef565b60019150509392505050565b60006012905090565b600080610bef611192565b9050610c10818585610c018589611060565b610c0b91906119ab565b61119a565b600191505092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b600a5481565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ca3611665565b610cab6116e3565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a115eec47f6cf7e3500000081565b606060048054610cf590611e19565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2190611e19565b8015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b5050505050905090565b600a81565b600c5481565b600080610d8e611192565b90506000610d9c8286611060565b905083811015610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890611ebc565b60405180910390fd5b610dee828686840361119a565b60019250505092915050565b600080610e05611192565b9050610e128185856113ef565b600191505092915050565b60095481565b6201518081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190611f28565b60405180910390fd5b6a115eec47f6cf7e35000000600c5410610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090611a2b565b60405180910390fd5b62015180600e54610f1a91906119ab565b421015610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390611f94565b60405180910390fd5b600c546a115eec47f6cf7e35000000610f759190611fb4565b600881905550610f8733600854610997565b6a115eec47f6cf7e35000000600c81905550565b610fa3611665565b6a08af7623fb67bf1a800000600c5410158015610fcc57506a0d073135f91b9ea7c00000600c54105b15610fe657681bc16d674ec8000000600781905550611050565b6a0d073135f91b9ea7c00000600c541015801561100f57506a0f330ebef7f58e6e600000600c54105b1561102957680de0b6b3a76400000060078190555061104f565b6a0f330ebef7f58e6e600000600c541061104e576806f05b59d3b20000006007819055505b5b5b565b69022b1c8c1227a000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b600b6020528060005260406000206000915090505481565b61110d611665565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061205a565b60405180910390fd5b611185816116f7565b50565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611200906120ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f9061217e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113569190611c42565b60405180910390a3505050565b600061136f8484611060565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113e957818110156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906121ea565b60405180910390fd5b6113e8848484840361119a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114559061227c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c49061230e565b60405180910390fd5b6114d8838383611188565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561155e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611555906123a0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161164c9190611c42565b60405180910390a361165f84848461118d565b50505050565b61166d611192565b73ffffffffffffffffffffffffffffffffffffffff1661168b610cad565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d89061240c565b60405180910390fd5b565b6116eb611665565b6116f560006116f7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082825260208201905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611804601f836117bd565b915061180f826117ce565b602082019050919050565b60006020820190508181036000830152611833816117f7565b9050919050565b7f4d6178696d756d206e756d626572206f6620636c61696d732072656163686564600082015250565b60006118706020836117bd565b915061187b8261183a565b602082019050919050565b6000602082019050818103600083015261189f81611863565b9050919050565b7f49742063616e2774206265206120636f6e747261637400000000000000000000600082015250565b60006118dc6016836117bd565b91506118e7826118a6565b602082019050919050565b6000602082019050818103600083015261190b816118cf565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061198582611912565b915061199083611912565b9250826119a05761199f61191c565b5b828204905092915050565b60006119b682611912565b91506119c183611912565b92508282019050808211156119d9576119d861194b565b5b92915050565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b6000611a156014836117bd565b9150611a20826119df565b602082019050919050565b60006020820190508181036000830152611a4481611a08565b9050919050565b6000611a5682611912565b9150611a6183611912565b9250828202611a6f81611912565b91508282048414831517611a8657611a8561194b565b5b5092915050565b600081519050919050565b60005b83811015611ab6578082015181840152602081019050611a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ade82611a8d565b611ae881856117bd565b9350611af8818560208601611a98565b611b0181611ac2565b840191505092915050565b60006020820190508181036000830152611b268184611ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b5e82611b33565b9050919050565b611b6e81611b53565b8114611b7957600080fd5b50565b600081359050611b8b81611b65565b92915050565b611b9a81611912565b8114611ba557600080fd5b50565b600081359050611bb781611b91565b92915050565b60008060408385031215611bd457611bd3611b2e565b5b6000611be285828601611b7c565b9250506020611bf385828601611ba8565b9150509250929050565b60008115159050919050565b611c1281611bfd565b82525050565b6000602082019050611c2d6000830184611c09565b92915050565b611c3c81611912565b82525050565b6000602082019050611c576000830184611c33565b92915050565b600080600060608486031215611c7657611c75611b2e565b5b6000611c8486828701611b7c565b9350506020611c9586828701611b7c565b9250506040611ca686828701611ba8565b9150509250925092565b600060ff82169050919050565b611cc681611cb0565b82525050565b6000602082019050611ce16000830184611cbd565b92915050565b611cf081611b53565b82525050565b6000602082019050611d0b6000830184611ce7565b92915050565b600060208284031215611d2757611d26611b2e565b5b6000611d3584828501611b7c565b91505092915050565b60008060408385031215611d5557611d54611b2e565b5b6000611d6385828601611b7c565b9250506020611d7485828601611b7c565b9150509250929050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611db4601f836117bd565b9150611dbf82611d7e565b602082019050919050565b60006020820190508181036000830152611de381611da7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e3157607f821691505b602082108103611e4457611e43611dea565b5b50919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ea66025836117bd565b9150611eb182611e4a565b604082019050919050565b60006020820190508181036000830152611ed581611e99565b9050919050565b7f4e4f54204c415354204d494e5445520000000000000000000000000000000000600082015250565b6000611f12600f836117bd565b9150611f1d82611edc565b602082019050919050565b60006020820190508181036000830152611f4181611f05565b9050919050565b7f4e4f54205052495a452054494d45000000000000000000000000000000000000600082015250565b6000611f7e600e836117bd565b9150611f8982611f48565b602082019050919050565b60006020820190508181036000830152611fad81611f71565b9050919050565b6000611fbf82611912565b9150611fca83611912565b9250828203905081811115611fe257611fe161194b565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006120446026836117bd565b915061204f82611fe8565b604082019050919050565b6000602082019050818103600083015261207381612037565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120d66024836117bd565b91506120e18261207a565b604082019050919050565b60006020820190508181036000830152612105816120c9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121686022836117bd565b91506121738261210c565b604082019050919050565b600060208201905081810360008301526121978161215b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006121d4601d836117bd565b91506121df8261219e565b602082019050919050565b60006020820190508181036000830152612203816121c7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122666025836117bd565b91506122718261220a565b604082019050919050565b6000602082019050818103600083015261229581612259565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122f86023836117bd565b91506123038261229c565b604082019050919050565b60006020820190508181036000830152612327816122eb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061238a6026836117bd565b91506123958261232e565b604082019050919050565b600060208201905081810360008301526123b98161237d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123f66020836117bd565b9150612401826123c0565b602082019050919050565b60006020820190508181036000830152612425816123e9565b905091905056fea26469706673582212202e65e621ca3b1d692f8040412090c7b71b7ab09f563e061cd9e9b22b0681e7ea64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c806395d89b41116100ec578063c34f6b0d1161008a578063dd62ed3e11610064578063dd62ed3e146108c9578063ea1354bd14610906578063ef5d9ae814610931578063f2fde38b1461096e5761048c565b8063c34f6b0d14610870578063c8df245a14610887578063cf62ba921461089e5761048c565b8063a457c2d7116100c6578063a457c2d7146107a0578063a9059cbb146107dd578063bf972a8a1461081a578063c31ef0c2146108455761048c565b806395d89b411461071f5780639e8d48d01461074a578063a2309ff8146107755761048c565b80635a2bcc181161015957806370a082311161013357806370a0823114610675578063715018a6146106b25780638da5cb5b146106c9578063902d55a5146106f45761048c565b80635a2bcc18146105f457806365a114f11461061f578063664e97041461064a5761048c565b806323b872dd1161019557806323b872dd14610524578063313ce56714610561578063395093511461058c5780634cd609bc146105c95761048c565b806306fdde0314610491578063095ea7b3146104bc57806318160ddd146104f95761048c565b3661048c57600260055403610205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101fc9061181a565b60405180910390fd5b600260058190555069022b1c8c1227a0000000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410610298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028f90611886565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102fd906118f2565b60405180910390fd5b600a5442106103215760016009819055506007546008819055505b600954600854610331919061197a565b6008819055506a115eec47f6cf7e35000000600854600c5461035391906119ab565b1115610394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161038b90611a2b565b60405180910390fd5b6103a033600854610997565b60026009546103af9190611a4b565b600981905550600a426103c291906119ab565b600a81905550600854600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461041991906119ab565b92505081905550600854600c600082825461043491906119ab565b9250508190555033600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555042600e8190555060016005819055005b600080fd5b34801561049d57600080fd5b506104a6610aed565b6040516104b39190611b0c565b60405180910390f35b3480156104c857600080fd5b506104e360048036038101906104de9190611bbd565b610b7f565b6040516104f09190611c18565b60405180910390f35b34801561050557600080fd5b5061050e610ba2565b60405161051b9190611c42565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190611c5d565b610bac565b6040516105589190611c18565b60405180910390f35b34801561056d57600080fd5b50610576610bdb565b6040516105839190611ccc565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190611bbd565b610be4565b6040516105c09190611c18565b60405180910390f35b3480156105d557600080fd5b506105de610c1b565b6040516105eb9190611cf6565b60405180910390f35b34801561060057600080fd5b50610609610c41565b6040516106169190611c42565b60405180910390f35b34801561062b57600080fd5b50610634610c47565b6040516106419190611c42565b60405180910390f35b34801561065657600080fd5b5061065f610c4d565b60405161066c9190611c42565b60405180910390f35b34801561068157600080fd5b5061069c60048036038101906106979190611d11565b610c53565b6040516106a99190611c42565b60405180910390f35b3480156106be57600080fd5b506106c7610c9b565b005b3480156106d557600080fd5b506106de610cad565b6040516106eb9190611cf6565b60405180910390f35b34801561070057600080fd5b50610709610cd7565b6040516107169190611c42565b60405180910390f35b34801561072b57600080fd5b50610734610ce6565b6040516107419190611b0c565b60405180910390f35b34801561075657600080fd5b5061075f610d78565b60405161076c9190611c42565b60405180910390f35b34801561078157600080fd5b5061078a610d7d565b6040516107979190611c42565b60405180910390f35b3480156107ac57600080fd5b506107c760048036038101906107c29190611bbd565b610d83565b6040516107d49190611c18565b60405180910390f35b3480156107e957600080fd5b5061080460048036038101906107ff9190611bbd565b610dfa565b6040516108119190611c18565b60405180910390f35b34801561082657600080fd5b5061082f610e1d565b60405161083c9190611c42565b60405180910390f35b34801561085157600080fd5b5061085a610e23565b6040516108679190611c42565b60405180910390f35b34801561087c57600080fd5b50610885610e2a565b005b34801561089357600080fd5b5061089c610f9b565b005b3480156108aa57600080fd5b506108b3611052565b6040516108c09190611c42565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190611d3e565b611060565b6040516108fd9190611c42565b60405180910390f35b34801561091257600080fd5b5061091b6110e7565b6040516109289190611c42565b60405180910390f35b34801561093d57600080fd5b5061095860048036038101906109539190611d11565b6110ed565b6040516109659190611c42565b60405180910390f35b34801561097a57600080fd5b5061099560048036038101906109909190611d11565b611105565b005b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd90611dca565b60405180910390fd5b610a1260008383611188565b8060026000828254610a2491906119ab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ad59190611c42565b60405180910390a3610ae96000838361118d565b5050565b606060038054610afc90611e19565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2890611e19565b8015610b755780601f10610b4a57610100808354040283529160200191610b75565b820191906000526020600020905b815481529060010190602001808311610b5857829003601f168201915b5050505050905090565b600080610b8a611192565b9050610b9781858561119a565b600191505092915050565b6000600254905090565b600080610bb7611192565b9050610bc4858285611363565b610bcf8585856113ef565b60019150509392505050565b60006012905090565b600080610bef611192565b9050610c10818585610c018589611060565b610c0b91906119ab565b61119a565b600191505092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b600a5481565b60075481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ca3611665565b610cab6116e3565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6a115eec47f6cf7e3500000081565b606060048054610cf590611e19565b80601f0160208091040260200160405190810160405280929190818152602001828054610d2190611e19565b8015610d6e5780601f10610d4357610100808354040283529160200191610d6e565b820191906000526020600020905b815481529060010190602001808311610d5157829003601f168201915b5050505050905090565b600a81565b600c5481565b600080610d8e611192565b90506000610d9c8286611060565b905083811015610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd890611ebc565b60405180910390fd5b610dee828686840361119a565b60019250505092915050565b600080610e05611192565b9050610e128185856113ef565b600191505092915050565b60095481565b6201518081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190611f28565b60405180910390fd5b6a115eec47f6cf7e35000000600c5410610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090611a2b565b60405180910390fd5b62015180600e54610f1a91906119ab565b421015610f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5390611f94565b60405180910390fd5b600c546a115eec47f6cf7e35000000610f759190611fb4565b600881905550610f8733600854610997565b6a115eec47f6cf7e35000000600c81905550565b610fa3611665565b6a08af7623fb67bf1a800000600c5410158015610fcc57506a0d073135f91b9ea7c00000600c54105b15610fe657681bc16d674ec8000000600781905550611050565b6a0d073135f91b9ea7c00000600c541015801561100f57506a0f330ebef7f58e6e600000600c54105b1561102957680de0b6b3a76400000060078190555061104f565b6a0f330ebef7f58e6e600000600c541061104e576806f05b59d3b20000006007819055505b5b5b565b69022b1c8c1227a000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e5481565b600b6020528060005260406000206000915090505481565b61110d611665565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111739061205a565b60405180910390fd5b611185816116f7565b50565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611200906120ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f9061217e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113569190611c42565b60405180910390a3505050565b600061136f8484611060565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113e957818110156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906121ea565b60405180910390fd5b6113e8848484840361119a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361145e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114559061227c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c49061230e565b60405180910390fd5b6114d8838383611188565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561155e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611555906123a0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161164c9190611c42565b60405180910390a361165f84848461118d565b50505050565b61166d611192565b73ffffffffffffffffffffffffffffffffffffffff1661168b610cad565b73ffffffffffffffffffffffffffffffffffffffff16146116e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d89061240c565b60405180910390fd5b565b6116eb611665565b6116f560006116f7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082825260208201905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611804601f836117bd565b915061180f826117ce565b602082019050919050565b60006020820190508181036000830152611833816117f7565b9050919050565b7f4d6178696d756d206e756d626572206f6620636c61696d732072656163686564600082015250565b60006118706020836117bd565b915061187b8261183a565b602082019050919050565b6000602082019050818103600083015261189f81611863565b9050919050565b7f49742063616e2774206265206120636f6e747261637400000000000000000000600082015250565b60006118dc6016836117bd565b91506118e7826118a6565b602082019050919050565b6000602082019050818103600083015261190b816118cf565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061198582611912565b915061199083611912565b9250826119a05761199f61191c565b5b828204905092915050565b60006119b682611912565b91506119c183611912565b92508282019050808211156119d9576119d861194b565b5b92915050565b7f4578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b6000611a156014836117bd565b9150611a20826119df565b602082019050919050565b60006020820190508181036000830152611a4481611a08565b9050919050565b6000611a5682611912565b9150611a6183611912565b9250828202611a6f81611912565b91508282048414831517611a8657611a8561194b565b5b5092915050565b600081519050919050565b60005b83811015611ab6578082015181840152602081019050611a9b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611ade82611a8d565b611ae881856117bd565b9350611af8818560208601611a98565b611b0181611ac2565b840191505092915050565b60006020820190508181036000830152611b268184611ad3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b5e82611b33565b9050919050565b611b6e81611b53565b8114611b7957600080fd5b50565b600081359050611b8b81611b65565b92915050565b611b9a81611912565b8114611ba557600080fd5b50565b600081359050611bb781611b91565b92915050565b60008060408385031215611bd457611bd3611b2e565b5b6000611be285828601611b7c565b9250506020611bf385828601611ba8565b9150509250929050565b60008115159050919050565b611c1281611bfd565b82525050565b6000602082019050611c2d6000830184611c09565b92915050565b611c3c81611912565b82525050565b6000602082019050611c576000830184611c33565b92915050565b600080600060608486031215611c7657611c75611b2e565b5b6000611c8486828701611b7c565b9350506020611c9586828701611b7c565b9250506040611ca686828701611ba8565b9150509250925092565b600060ff82169050919050565b611cc681611cb0565b82525050565b6000602082019050611ce16000830184611cbd565b92915050565b611cf081611b53565b82525050565b6000602082019050611d0b6000830184611ce7565b92915050565b600060208284031215611d2757611d26611b2e565b5b6000611d3584828501611b7c565b91505092915050565b60008060408385031215611d5557611d54611b2e565b5b6000611d6385828601611b7c565b9250506020611d7485828601611b7c565b9150509250929050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611db4601f836117bd565b9150611dbf82611d7e565b602082019050919050565b60006020820190508181036000830152611de381611da7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e3157607f821691505b602082108103611e4457611e43611dea565b5b50919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611ea66025836117bd565b9150611eb182611e4a565b604082019050919050565b60006020820190508181036000830152611ed581611e99565b9050919050565b7f4e4f54204c415354204d494e5445520000000000000000000000000000000000600082015250565b6000611f12600f836117bd565b9150611f1d82611edc565b602082019050919050565b60006020820190508181036000830152611f4181611f05565b9050919050565b7f4e4f54205052495a452054494d45000000000000000000000000000000000000600082015250565b6000611f7e600e836117bd565b9150611f8982611f48565b602082019050919050565b60006020820190508181036000830152611fad81611f71565b9050919050565b6000611fbf82611912565b9150611fca83611912565b9250828203905081811115611fe257611fe161194b565b5b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006120446026836117bd565b915061204f82611fe8565b604082019050919050565b6000602082019050818103600083015261207381612037565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006120d66024836117bd565b91506120e18261207a565b604082019050919050565b60006020820190508181036000830152612105816120c9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006121686022836117bd565b91506121738261210c565b604082019050919050565b600060208201905081810360008301526121978161215b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006121d4601d836117bd565b91506121df8261219e565b602082019050919050565b60006020820190508181036000830152612203816121c7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006122666025836117bd565b91506122718261220a565b604082019050919050565b6000602082019050818103600083015261229581612259565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122f86023836117bd565b91506123038261229c565b604082019050919050565b60006020820190508181036000830152612327816122eb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061238a6026836117bd565b91506123958261232e565b604082019050919050565b600060208201905081810360008301526123b98161237d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006123f66020836117bd565b9150612401826123c0565b602082019050919050565b60006020820190508181036000830152612425816123e9565b905091905056fea26469706673582212202e65e621ca3b1d692f8040412090c7b71b7ab09f563e061cd9e9b22b0681e7ea64736f6c63430008120033

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.