ETH Price: $2,338.34 (+2.88%)
Gas: 3.62 Gwei

Token

One Goku Club (GOKU)
 

Overview

Max Total Supply

407 GOKU

Holders

177

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 GOKU
0xaa6b0374f89b06df9dd40d1844f7ec3cb13a2e8a
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:
OneGokuClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : OneGokuClub.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Peach.sol";

 contract OneGokuClub is ERC721, Ownable {
    using Address for address;
    using Strings for uint256;
    
    string public baseURI;

    Peach public peach;

    uint256 public constant EMISSION_RATE = uint256(40 * 1e18) / 86400;
    // 40 PEACH / Goku / 86400 / 24 hrs

    uint256 public constant MAX_GOKU = 1111;
    uint256 public constant TEAM_SUPPLY = 4;
    uint256 public constant MAX_WHITELIST = 2;
    uint256 public constant MAX_PUBLIC = 3;
    uint256 public totalSupply;
    uint256 public freeMintCount;

    string public constant BASE_EXTENSION = ".json";

    uint256 public PRICE = 0.06 ether;

    bool public presaleActive = false;
    bool public saleActive = false;
    bool public teamClaimed = false;

    mapping (address => uint256) public freeWhitelist;
    mapping (address => uint256) public presaleWhitelist;
    mapping (uint256 => uint256) public claimTime;

    constructor() ERC721("One Goku Club", "GOKU") { 
    }
    
    /*
        Goku minting contract requirements
        1. Free mints for certain members (Could be 1 or 2, max 55 only)
        2. Admin mint
        3. Whitelist mint (All max 2)
        4. Public sale (All max 3)
     */

    function adminMint() public onlyOwner {
        require(totalSupply + TEAM_SUPPLY <= MAX_GOKU,      "You have missed your chance");
        require(!teamClaimed,                               "Only once, even for you");
        for (uint256 i = 0; i < TEAM_SUPPLY; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        totalSupply += TEAM_SUPPLY;
        teamClaimed = true;
    }

    function freeMint(uint256 numberOfMints) public {
        uint256 reserved = freeWhitelist[msg.sender];
        require(presaleActive || saleActive,                        "A sale period must be active to mint");
        require(numberOfMints <= reserved,                          "Can't mint more than reserved");
        require(totalSupply + numberOfMints <= MAX_GOKU,            "Claim would exceed max supply of tokens");
        freeWhitelist[msg.sender] = reserved - numberOfMints;

        for(uint256 i; i < numberOfMints; i++){
            _safeMint( msg.sender, totalSupply + i );
        }

        freeMintCount -= numberOfMints;
        totalSupply += numberOfMints;
    }
    
    function presaleMint(uint256 numberOfMints) public payable {
        uint256 reserved = presaleWhitelist[msg.sender];
        require(presaleActive || saleActive,                                    "A sale period must be active to mint");
        require(numberOfMints <= reserved,                                      "Can't mint more than reserved");
        require(totalSupply + numberOfMints + freeMintCount <= MAX_GOKU,        "Purchase would exceed max supply of tokens");
        require(PRICE * numberOfMints == msg.value,                             "Ether value sent is not correct");
        presaleWhitelist[msg.sender] = reserved - numberOfMints;

        for(uint256 i; i < numberOfMints; i++){
            _safeMint( msg.sender, totalSupply + i );
        }

        totalSupply += numberOfMints;
    }
    
    function mint(uint256 numberOfMints) public payable {
        require(saleActive,                                                     "Sale must be active to mint");
        require(numberOfMints > 0 && numberOfMints <= MAX_PUBLIC,               "Invalid purchase amount");
        require(totalSupply + numberOfMints + freeMintCount <= MAX_GOKU,        "Purchase would exceed max supply of tokens");
        require(PRICE * numberOfMints == msg.value,                             "Ether value sent is not correct");
        
        for(uint256 i; i < numberOfMints; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        totalSupply += numberOfMints;
    }

    function editPeach(Peach _peach) public onlyOwner {
        peach = _peach;
    }

    function editFreeList(address[] calldata freeAddresses, uint256[] calldata amount) public onlyOwner {
        for(uint256 i; i < freeAddresses.length; i++){
            freeWhitelist[freeAddresses[i]] = amount[i];
            freeMintCount += amount[i];
        }
    }
    
    function editPresaleList(address[] calldata presaleAddresses) public onlyOwner {
        for(uint256 i; i < presaleAddresses.length; i++){
            presaleWhitelist[presaleAddresses[i]] = MAX_WHITELIST;
        }
    }

    function togglePresale() public onlyOwner {
        presaleActive = !presaleActive;
    }

    function toggleSale() public onlyOwner {
        presaleActive = false;
        saleActive = !saleActive;
        PRICE = 0.07 ether;
    }
    
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }
    
    function _safeMint(address to, uint256 tokenId) internal override {
        claimTime[tokenId] = block.timestamp;
        _safeMint(to, tokenId, "");
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function tokenURI(uint256 _id) public view virtual override returns (string memory) {
         require(
            _exists(_id),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI, _id.toString(), BASE_EXTENSION))
            : "";
    }

    function resetFreeMintCount() public onlyOwner {
        freeMintCount = 0;
    }

    function claim(uint256[] calldata tokenIds) public {
        require(tx.origin == msg.sender, "What you doing?");
        uint256 total = 0;
        for(uint256 i; i < tokenIds.length; i++){
            require(ownerOf(tokenIds[i]) == msg.sender, "Not owner");
            total += (block.timestamp - claimTime[tokenIds[i]]) * EMISSION_RATE;
            claimTime[tokenIds[i]] = block.timestamp;
        }
        peach.mintToken(msg.sender, total);
    }    

    function withdraw(address _address) public onlyOwner {
        uint256 balance = address(this).balance;
        payable(_address).transfer(balance);
    }    
}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

File 3 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 15 : Peach.sol
// contracts/Cheeth.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract Peach is ERC20, Ownable {

    uint256 public constant TREASURY_SUPPLY = 10000000 * 1e18;

    address public clubAddress;

    //Mapping of draco to timestamp
    mapping(uint256 => uint256) internal tokenIdToTimeStamp;

    //Mapping of draco to staker
    mapping(uint256 => address) internal tokenIdToStaker;

    modifier onlyClubAddress() {
        require(msg.sender == clubAddress, "Not club address");
        _;
    }
    
    constructor() ERC20("Peach", "PEACH") {
        _mint(msg.sender, TREASURY_SUPPLY);
    }

    function setClubAddress(address _clubAddress) public onlyOwner {
        clubAddress = _clubAddress;
    }

    function mintToken(address _claimer, uint256 _amount) public onlyClubAddress {
        _mint(_claimer, _amount);
    }
}

File 5 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 6 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 7 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 8 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 15 : Context.sol
// SPDX-License-Identifier: MIT

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 10 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 11 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 12 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 13 of 15 : ERC20.sol
// SPDX-License-Identifier: MIT

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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev 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 14 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

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

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

File 15 of 15 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

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);
}

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

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GOKU","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"freeAddresses","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"editFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Peach","name":"_peach","type":"address"}],"name":"editPeach","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"}],"name":"editPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"peach","outputs":[{"internalType":"contract Peach","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266d529ae9e860000600b556000600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280600d81526020017f4f6e6520476f6b7520436c7562000000000000000000000000000000000000008152506040518060400160405280600481526020017f474f4b55000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f292919062000202565b5080600190805190602001906200010b92919062000202565b5050506200012e620001226200013460201b60201c565b6200013c60201b60201c565b62000317565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021090620002b2565b90600052602060002090601f01602090048101928262000234576000855562000280565b82601f106200024f57805160ff191683800117855562000280565b8280016001018555821562000280579182015b828111156200027f57825182559160200191906001019062000262565b5b5090506200028f919062000293565b5090565b5b80821115620002ae57600081600090555060010162000294565b5090565b60006002820490506001821680620002cb57607f821691505b60208210811415620002e257620002e1620002e8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614edf80620003276000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063a22cb465116100c1578063cd6f10251161007a578063cd6f102514610920578063df3fdf0014610949578063e55f58bb14610974578063e985e9c51461099f578063eb8835ab146109dc578063f2fde38b14610a195761027d565b8063a22cb4651461081f578063b88d4fde14610848578063b9c3a81814610871578063c87b56dd1461089c578063c9b298f1146108d9578063cb578cd9146108f55761027d565b80638d859f3e116101135780638d859f3e1461072c5780638da5cb5b1461075757806395d89b411461078257806395f61c48146107ad5780639753eac0146107d8578063a0712d68146108035761027d565b806370a0823114610681578063715018a6146106be5780637c928fe9146106d55780637d8966e4146106fe578063895fc788146107155761027d565b806337d0c26a116101f35780635b737da2116101ac5780635b737da21461055d5780635c1154b0146105885780636352211e146105c557806368428a1b146106025780636ba4c1381461062d5780636c0360eb146106565761027d565b806337d0c26a1461047757806342842e0e1461048e5780634ad91b2c146104b757806351cff8d9146104e057806353135ca01461050957806355f804b3146105345761027d565b80630f4ed54d116102455780630f4ed54d1461037b57806318160ddd146103b857806319b639bc146103e357806323b872dd1461040c5780632f3346521461043557806334393743146104605761027d565b806301b8199a1461028257806301ffc9a7146102ad57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b50610297610a42565b6040516102a49190614319565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf919061392b565b610a5d565b6040516102e19190613f61565b60405180910390f35b3480156102f657600080fd5b506102ff610b3f565b60405161030c9190613f97565b60405180910390f35b34801561032157600080fd5b5061033c600480360381019061033791906139e7565b610bd1565b6040516103499190613ed1565b60405180910390f35b34801561035e57600080fd5b50610379600480360381019061037491906137f0565b610c56565b005b34801561038757600080fd5b506103a2600480360381019061039d9190613685565b610d6e565b6040516103af9190614319565b60405180910390f35b3480156103c457600080fd5b506103cd610d86565b6040516103da9190614319565b60405180910390f35b3480156103ef57600080fd5b5061040a6004803603810190610405919061382c565b610d8c565b005b34801561041857600080fd5b50610433600480360381019061042e91906136ea565b610ec0565b005b34801561044157600080fd5b5061044a610f20565b6040516104579190613f61565b60405180910390f35b34801561046c57600080fd5b50610475610f33565b005b34801561048357600080fd5b5061048c610fdb565b005b34801561049a57600080fd5b506104b560048036038101906104b091906136ea565b611061565b005b3480156104c357600080fd5b506104de60048036038101906104d9919061397d565b611081565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613685565b611141565b005b34801561051557600080fd5b5061051e61120d565b60405161052b9190613f61565b60405180910390f35b34801561054057600080fd5b5061055b600480360381019061055691906139a6565b611220565b005b34801561056957600080fd5b506105726112b6565b60405161057f9190613f7c565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906139e7565b6112dc565b6040516105bc9190614319565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e791906139e7565b6112f4565b6040516105f99190613ed1565b60405180910390f35b34801561060e57600080fd5b506106176113a6565b6040516106249190613f61565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f91906138e6565b6113b9565b005b34801561066257600080fd5b5061066b611677565b6040516106789190613f97565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613685565b611705565b6040516106b59190614319565b60405180910390f35b3480156106ca57600080fd5b506106d36117bd565b005b3480156106e157600080fd5b506106fc60048036038101906106f791906139e7565b611845565b005b34801561070a57600080fd5b50610713611a3f565b005b34801561072157600080fd5b5061072a611b10565b005b34801561073857600080fd5b50610741611c9d565b60405161074e9190614319565b60405180910390f35b34801561076357600080fd5b5061076c611ca3565b6040516107799190613ed1565b60405180910390f35b34801561078e57600080fd5b50610797611ccd565b6040516107a49190613f97565b60405180910390f35b3480156107b957600080fd5b506107c2611d5f565b6040516107cf9190614319565b60405180910390f35b3480156107e457600080fd5b506107ed611d64565b6040516107fa9190614319565b60405180910390f35b61081d600480360381019061081891906139e7565b611d69565b005b34801561082b57600080fd5b50610846600480360381019061084191906137b4565b611f08565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613739565b612089565b005b34801561087d57600080fd5b506108866120eb565b6040516108939190614319565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be91906139e7565b6120f0565b6040516108d09190613f97565b60405180910390f35b6108f360048036038101906108ee91906139e7565b6121ce565b005b34801561090157600080fd5b5061090a61240b565b6040516109179190614319565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613871565b612411565b005b34801561095557600080fd5b5061095e6125dd565b60405161096b9190613f97565b60405180910390f35b34801561098057600080fd5b50610989612616565b6040516109969190614319565b60405180910390f35b3480156109ab57600080fd5b506109c660048036038101906109c191906136ae565b61261c565b6040516109d39190613f61565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190613685565b6126b0565b604051610a109190614319565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b9190613685565b6126c8565b005b6201518068022b1c8c1227a00000610a5a9190614454565b81565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b385750610b37826127c0565b5b9050919050565b606060008054610b4e906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7a906145ff565b8015610bc75780601f10610b9c57610100808354040283529160200191610bc7565b820191906000526020600020905b815481529060010190602001808311610baa57829003601f168201915b5050505050905090565b6000610bdc8261282a565b610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c12906141b9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c61826112f4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614279565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf1612896565b73ffffffffffffffffffffffffffffffffffffffff161480610d205750610d1f81610d1a612896565b61261c565b5b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906140f9565b60405180910390fd5b610d69838361289e565b505050565b600d6020528060005260406000206000915090505481565b60095481565b610d94612896565b73ffffffffffffffffffffffffffffffffffffffff16610db2611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff906141f9565b60405180910390fd5b60005b82829050811015610ebb576002600e6000858585818110610e55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610e6a9190613685565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610eb390614662565b915050610e0b565b505050565b610ed1610ecb612896565b82612957565b610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f07906142b9565b60405180910390fd5b610f1b838383612a35565b505050565b600c60029054906101000a900460ff1681565b610f3b612896565b73ffffffffffffffffffffffffffffffffffffffff16610f59611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa6906141f9565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610fe3612896565b73ffffffffffffffffffffffffffffffffffffffff16611001611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e906141f9565b60405180910390fd5b6000600a81905550565b61107c83838360405180602001604052806000815250612089565b505050565b611089612896565b73ffffffffffffffffffffffffffffffffffffffff166110a7611ca3565b73ffffffffffffffffffffffffffffffffffffffff16146110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906141f9565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611149612896565b73ffffffffffffffffffffffffffffffffffffffff16611167611ca3565b73ffffffffffffffffffffffffffffffffffffffff16146111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b4906141f9565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611208573d6000803e3d6000fd5b505050565b600c60009054906101000a900460ff1681565b611228612896565b73ffffffffffffffffffffffffffffffffffffffff16611246611ca3565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906141f9565b60405180910390fd5b80600790805190602001906112b2929190613400565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490614139565b60405180910390fd5b80915050919050565b600c60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90614259565b60405180910390fd5b6000805b838390508110156115e2573373ffffffffffffffffffffffffffffffffffffffff16611495858584818110611489577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356112f4565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290614299565b60405180910390fd5b6201518068022b1c8c1227a000006115039190614454565b600f6000868685818110611540577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020544261156191906144df565b61156b9190614485565b8261157691906143fe565b915042600f60008686858181106115b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581526020019081526020016000208190555080806115da90614662565b91505061142b565b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379c6506833836040518363ffffffff1660e01b8152600401611640929190613f38565b600060405180830381600087803b15801561165a57600080fd5b505af115801561166e573d6000803e3d6000fd5b50505050505050565b60078054611684906145ff565b80601f01602080910402602001604051908101604052809291908181526020018280546116b0906145ff565b80156116fd5780601f106116d2576101008083540402835291602001916116fd565b820191906000526020600020905b8154815290600101906020018083116116e057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d90614119565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117c5612896565b73ffffffffffffffffffffffffffffffffffffffff166117e3611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614611839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611830906141f9565b60405180910390fd5b6118436000612c91565b565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60009054906101000a900460ff16806118b05750600c60019054906101000a900460ff165b6118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690614039565b60405180910390fd5b80821115611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990613fb9565b60405180910390fd5b6104578260095461194391906143fe565b1115611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b906142d9565b60405180910390fd5b818161199091906144df565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b82811015611a08576119f533826009546119f091906143fe565b612d57565b8080611a0090614662565b9150506119d6565b5081600a6000828254611a1b91906144df565b925050819055508160096000828254611a3491906143fe565b925050819055505050565b611a47612896565b73ffffffffffffffffffffffffffffffffffffffff16611a65611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab2906141f9565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550600c60019054906101000a900460ff1615600c60016101000a81548160ff02191690831515021790555066f8b0a10e470000600b81905550565b611b18612896565b73ffffffffffffffffffffffffffffffffffffffff16611b36611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b83906141f9565b60405180910390fd5b6104576004600954611b9e91906143fe565b1115611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd690614199565b60405180910390fd5b600c60029054906101000a900460ff1615611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c26906141d9565b60405180910390fd5b60005b6004811015611c6557611c523382600954611c4d91906143fe565b612d57565b8080611c5d90614662565b915050611c32565b50600460096000828254611c7991906143fe565b925050819055506001600c60026101000a81548160ff021916908315150217905550565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611cdc906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611d08906145ff565b8015611d555780601f10611d2a57610100808354040283529160200191611d55565b820191906000526020600020905b815481529060010190602001808311611d3857829003601f168201915b5050505050905090565b600281565b600381565b600c60019054906101000a900460ff16611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf906140b9565b60405180910390fd5b600081118015611dc9575060038111155b611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff906142f9565b60405180910390fd5b610457600a5482600954611e1c91906143fe565b611e2691906143fe565b1115611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90614159565b60405180910390fd5b3481600b54611e769190614485565b14611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90614099565b60405180910390fd5b60005b81811015611eeb57611ed83382600954611ed391906143fe565b612d57565b8080611ee390614662565b915050611eb9565b508060096000828254611efe91906143fe565b9250508190555050565b611f10612896565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7590614079565b60405180910390fd5b8060056000611f8b612896565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612038612896565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161207d9190613f61565b60405180910390a35050565b61209a612094612896565b83612957565b6120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d0906142b9565b60405180910390fd5b6120e584848484612d8d565b50505050565b600481565b60606120fb8261282a565b61213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190614239565b60405180910390fd5b6000612144612de9565b9050600081511161216457604051806020016040528060008152506121c6565b8061216e84612e7b565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016121b693929190613ea0565b6040516020818303038152906040525b915050919050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60009054906101000a900460ff16806122395750600c60019054906101000a900460ff165b612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614039565b60405180910390fd5b808211156122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b290613fb9565b60405180910390fd5b610457600a54836009546122cf91906143fe565b6122d991906143fe565b111561231a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231190614159565b60405180910390fd5b3482600b546123299190614485565b14612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090614099565b60405180910390fd5b818161237591906144df565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156123ed576123da33826009546123d591906143fe565b612d57565b80806123e590614662565b9150506123bb565b50816009600082825461240091906143fe565b925050819055505050565b61045781565b612419612896565b73ffffffffffffffffffffffffffffffffffffffff16612437611ca3565b73ffffffffffffffffffffffffffffffffffffffff161461248d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612484906141f9565b60405180910390fd5b60005b848490508110156125d6578282828181106124d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600d6000878785818110612518577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061252d9190613685565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508282828181106125a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600a60008282546125bc91906143fe565b9250508190555080806125ce90614662565b915050612490565b5050505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b6126d0612896565b73ffffffffffffffffffffffffffffffffffffffff166126ee611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614612744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273b906141f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90613ff9565b60405180910390fd5b6127bd81612c91565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612911836112f4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006129628261282a565b6129a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612998906140d9565b60405180910390fd5b60006129ac836112f4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a1b57508373ffffffffffffffffffffffffffffffffffffffff16612a0384610bd1565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a2c5750612a2b818561261c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a55826112f4565b73ffffffffffffffffffffffffffffffffffffffff1614612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290614219565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1290614059565b60405180910390fd5b612b26838383613028565b612b3160008261289e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8191906144df565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bd891906143fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b42600f600083815260200190815260200160002081905550612d8982826040518060200160405280600081525061302d565b5050565b612d98848484612a35565b612da484848484613088565b612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda90613fd9565b60405180910390fd5b50505050565b606060078054612df8906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612e24906145ff565b8015612e715780601f10612e4657610100808354040283529160200191612e71565b820191906000526020600020905b815481529060010190602001808311612e5457829003601f168201915b5050505050905090565b60606000821415612ec3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613023565b600082905060005b60008214612ef5578080612ede90614662565b915050600a82612eee9190614454565b9150612ecb565b60008167ffffffffffffffff811115612f37577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f695781602001600182028036833780820191505090505b5090505b6000851461301c57600182612f8291906144df565b9150600a85612f9191906146ab565b6030612f9d91906143fe565b60f81b818381518110612fd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130159190614454565b9450612f6d565b8093505050505b919050565b505050565b613037838361321f565b6130446000848484613088565b613083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307a90613fd9565b60405180910390fd5b505050565b60006130a98473ffffffffffffffffffffffffffffffffffffffff166133ed565b15613212578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130d2612896565b8786866040518563ffffffff1660e01b81526004016130f49493929190613eec565b602060405180830381600087803b15801561310e57600080fd5b505af192505050801561313f57506040513d601f19601f8201168201806040525081019061313c9190613954565b60015b6131c2573d806000811461316f576040519150601f19603f3d011682016040523d82523d6000602084013e613174565b606091505b506000815114156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b190613fd9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613217565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328690614179565b60405180910390fd5b6132988161282a565b156132d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cf90614019565b60405180910390fd5b6132e460008383613028565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461333491906143fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461340c906145ff565b90600052602060002090601f01602090048101928261342e5760008555613475565b82601f1061344757805160ff1916838001178555613475565b82800160010185558215613475579182015b82811115613474578251825591602001919060010190613459565b5b5090506134829190613486565b5090565b5b8082111561349f576000816000905550600101613487565b5090565b60006134b66134b184614359565b614334565b9050828152602081018484840111156134ce57600080fd5b6134d98482856145bd565b509392505050565b60006134f46134ef8461438a565b614334565b90508281526020810184848401111561350c57600080fd5b6135178482856145bd565b509392505050565b60008135905061352e81614e36565b92915050565b60008083601f84011261354657600080fd5b8235905067ffffffffffffffff81111561355f57600080fd5b60208301915083602082028301111561357757600080fd5b9250929050565b60008083601f84011261359057600080fd5b8235905067ffffffffffffffff8111156135a957600080fd5b6020830191508360208202830111156135c157600080fd5b9250929050565b6000813590506135d781614e4d565b92915050565b6000813590506135ec81614e64565b92915050565b60008151905061360181614e64565b92915050565b600082601f83011261361857600080fd5b81356136288482602086016134a3565b91505092915050565b60008135905061364081614e7b565b92915050565b600082601f83011261365757600080fd5b81356136678482602086016134e1565b91505092915050565b60008135905061367f81614e92565b92915050565b60006020828403121561369757600080fd5b60006136a58482850161351f565b91505092915050565b600080604083850312156136c157600080fd5b60006136cf8582860161351f565b92505060206136e08582860161351f565b9150509250929050565b6000806000606084860312156136ff57600080fd5b600061370d8682870161351f565b935050602061371e8682870161351f565b925050604061372f86828701613670565b9150509250925092565b6000806000806080858703121561374f57600080fd5b600061375d8782880161351f565b945050602061376e8782880161351f565b935050604061377f87828801613670565b925050606085013567ffffffffffffffff81111561379c57600080fd5b6137a887828801613607565b91505092959194509250565b600080604083850312156137c757600080fd5b60006137d58582860161351f565b92505060206137e6858286016135c8565b9150509250929050565b6000806040838503121561380357600080fd5b60006138118582860161351f565b925050602061382285828601613670565b9150509250929050565b6000806020838503121561383f57600080fd5b600083013567ffffffffffffffff81111561385957600080fd5b61386585828601613534565b92509250509250929050565b6000806000806040858703121561388757600080fd5b600085013567ffffffffffffffff8111156138a157600080fd5b6138ad87828801613534565b9450945050602085013567ffffffffffffffff8111156138cc57600080fd5b6138d88782880161357e565b925092505092959194509250565b600080602083850312156138f957600080fd5b600083013567ffffffffffffffff81111561391357600080fd5b61391f8582860161357e565b92509250509250929050565b60006020828403121561393d57600080fd5b600061394b848285016135dd565b91505092915050565b60006020828403121561396657600080fd5b6000613974848285016135f2565b91505092915050565b60006020828403121561398f57600080fd5b600061399d84828501613631565b91505092915050565b6000602082840312156139b857600080fd5b600082013567ffffffffffffffff8111156139d257600080fd5b6139de84828501613646565b91505092915050565b6000602082840312156139f957600080fd5b6000613a0784828501613670565b91505092915050565b613a1981614513565b82525050565b613a2881614525565b82525050565b6000613a39826143bb565b613a4381856143d1565b9350613a538185602086016145cc565b613a5c81614798565b840191505092915050565b613a7081614599565b82525050565b6000613a81826143c6565b613a8b81856143e2565b9350613a9b8185602086016145cc565b613aa481614798565b840191505092915050565b6000613aba826143c6565b613ac481856143f3565b9350613ad48185602086016145cc565b80840191505092915050565b6000613aed601d836143e2565b9150613af8826147a9565b602082019050919050565b6000613b106032836143e2565b9150613b1b826147d2565b604082019050919050565b6000613b336026836143e2565b9150613b3e82614821565b604082019050919050565b6000613b56601c836143e2565b9150613b6182614870565b602082019050919050565b6000613b796024836143e2565b9150613b8482614899565b604082019050919050565b6000613b9c6024836143e2565b9150613ba7826148e8565b604082019050919050565b6000613bbf6019836143e2565b9150613bca82614937565b602082019050919050565b6000613be2601f836143e2565b9150613bed82614960565b602082019050919050565b6000613c05601b836143e2565b9150613c1082614989565b602082019050919050565b6000613c28602c836143e2565b9150613c33826149b2565b604082019050919050565b6000613c4b6038836143e2565b9150613c5682614a01565b604082019050919050565b6000613c6e602a836143e2565b9150613c7982614a50565b604082019050919050565b6000613c916029836143e2565b9150613c9c82614a9f565b604082019050919050565b6000613cb4602a836143e2565b9150613cbf82614aee565b604082019050919050565b6000613cd76020836143e2565b9150613ce282614b3d565b602082019050919050565b6000613cfa601b836143e2565b9150613d0582614b66565b602082019050919050565b6000613d1d602c836143e2565b9150613d2882614b8f565b604082019050919050565b6000613d406017836143e2565b9150613d4b82614bde565b602082019050919050565b6000613d636020836143e2565b9150613d6e82614c07565b602082019050919050565b6000613d866029836143e2565b9150613d9182614c30565b604082019050919050565b6000613da9602f836143e2565b9150613db482614c7f565b604082019050919050565b6000613dcc600f836143e2565b9150613dd782614cce565b602082019050919050565b6000613def6021836143e2565b9150613dfa82614cf7565b604082019050919050565b6000613e126009836143e2565b9150613e1d82614d46565b602082019050919050565b6000613e356031836143e2565b9150613e4082614d6f565b604082019050919050565b6000613e586027836143e2565b9150613e6382614dbe565b604082019050919050565b6000613e7b6017836143e2565b9150613e8682614e0d565b602082019050919050565b613e9a8161458f565b82525050565b6000613eac8286613aaf565b9150613eb88285613aaf565b9150613ec48284613aaf565b9150819050949350505050565b6000602082019050613ee66000830184613a10565b92915050565b6000608082019050613f016000830187613a10565b613f0e6020830186613a10565b613f1b6040830185613e91565b8181036060830152613f2d8184613a2e565b905095945050505050565b6000604082019050613f4d6000830185613a10565b613f5a6020830184613e91565b9392505050565b6000602082019050613f766000830184613a1f565b92915050565b6000602082019050613f916000830184613a67565b92915050565b60006020820190508181036000830152613fb18184613a76565b905092915050565b60006020820190508181036000830152613fd281613ae0565b9050919050565b60006020820190508181036000830152613ff281613b03565b9050919050565b6000602082019050818103600083015261401281613b26565b9050919050565b6000602082019050818103600083015261403281613b49565b9050919050565b6000602082019050818103600083015261405281613b6c565b9050919050565b6000602082019050818103600083015261407281613b8f565b9050919050565b6000602082019050818103600083015261409281613bb2565b9050919050565b600060208201905081810360008301526140b281613bd5565b9050919050565b600060208201905081810360008301526140d281613bf8565b9050919050565b600060208201905081810360008301526140f281613c1b565b9050919050565b6000602082019050818103600083015261411281613c3e565b9050919050565b6000602082019050818103600083015261413281613c61565b9050919050565b6000602082019050818103600083015261415281613c84565b9050919050565b6000602082019050818103600083015261417281613ca7565b9050919050565b6000602082019050818103600083015261419281613cca565b9050919050565b600060208201905081810360008301526141b281613ced565b9050919050565b600060208201905081810360008301526141d281613d10565b9050919050565b600060208201905081810360008301526141f281613d33565b9050919050565b6000602082019050818103600083015261421281613d56565b9050919050565b6000602082019050818103600083015261423281613d79565b9050919050565b6000602082019050818103600083015261425281613d9c565b9050919050565b6000602082019050818103600083015261427281613dbf565b9050919050565b6000602082019050818103600083015261429281613de2565b9050919050565b600060208201905081810360008301526142b281613e05565b9050919050565b600060208201905081810360008301526142d281613e28565b9050919050565b600060208201905081810360008301526142f281613e4b565b9050919050565b6000602082019050818103600083015261431281613e6e565b9050919050565b600060208201905061432e6000830184613e91565b92915050565b600061433e61434f565b905061434a8282614631565b919050565b6000604051905090565b600067ffffffffffffffff82111561437457614373614769565b5b61437d82614798565b9050602081019050919050565b600067ffffffffffffffff8211156143a5576143a4614769565b5b6143ae82614798565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144098261458f565b91506144148361458f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614449576144486146dc565b5b828201905092915050565b600061445f8261458f565b915061446a8361458f565b92508261447a5761447961470b565b5b828204905092915050565b60006144908261458f565b915061449b8361458f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d4576144d36146dc565b5b828202905092915050565b60006144ea8261458f565b91506144f58361458f565b925082821015614508576145076146dc565b5b828203905092915050565b600061451e8261456f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061456882614513565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006145a4826145ab565b9050919050565b60006145b68261456f565b9050919050565b82818337600083830152505050565b60005b838110156145ea5780820151818401526020810190506145cf565b838111156145f9576000848401525b50505050565b6000600282049050600182168061461757607f821691505b6020821081141561462b5761462a61473a565b5b50919050565b61463a82614798565b810181811067ffffffffffffffff8211171561465957614658614769565b5b80604052505050565b600061466d8261458f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146a05761469f6146dc565b5b600182019050919050565b60006146b68261458f565b91506146c18361458f565b9250826146d1576146d061470b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f412073616c6520706572696f64206d7573742062652061637469766520746f2060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752068617665206d697373656420796f7572206368616e63650000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f6e6c79206f6e63652c206576656e20666f7220796f75000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5768617420796f7520646f696e673f0000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f436c61696d20776f756c6420657863656564206d617820737570706c79206f6660008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b614e3f81614513565b8114614e4a57600080fd5b50565b614e5681614525565b8114614e6157600080fd5b50565b614e6d81614531565b8114614e7857600080fd5b50565b614e848161455d565b8114614e8f57600080fd5b50565b614e9b8161458f565b8114614ea657600080fd5b5056fea2646970667358221220351c2613af00578a43e565521cb469d97cf1a461ec6f95545bde3ba2ca02bfa464736f6c63430008040033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063a22cb465116100c1578063cd6f10251161007a578063cd6f102514610920578063df3fdf0014610949578063e55f58bb14610974578063e985e9c51461099f578063eb8835ab146109dc578063f2fde38b14610a195761027d565b8063a22cb4651461081f578063b88d4fde14610848578063b9c3a81814610871578063c87b56dd1461089c578063c9b298f1146108d9578063cb578cd9146108f55761027d565b80638d859f3e116101135780638d859f3e1461072c5780638da5cb5b1461075757806395d89b411461078257806395f61c48146107ad5780639753eac0146107d8578063a0712d68146108035761027d565b806370a0823114610681578063715018a6146106be5780637c928fe9146106d55780637d8966e4146106fe578063895fc788146107155761027d565b806337d0c26a116101f35780635b737da2116101ac5780635b737da21461055d5780635c1154b0146105885780636352211e146105c557806368428a1b146106025780636ba4c1381461062d5780636c0360eb146106565761027d565b806337d0c26a1461047757806342842e0e1461048e5780634ad91b2c146104b757806351cff8d9146104e057806353135ca01461050957806355f804b3146105345761027d565b80630f4ed54d116102455780630f4ed54d1461037b57806318160ddd146103b857806319b639bc146103e357806323b872dd1461040c5780632f3346521461043557806334393743146104605761027d565b806301b8199a1461028257806301ffc9a7146102ad57806306fdde03146102ea578063081812fc14610315578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b50610297610a42565b6040516102a49190614319565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf919061392b565b610a5d565b6040516102e19190613f61565b60405180910390f35b3480156102f657600080fd5b506102ff610b3f565b60405161030c9190613f97565b60405180910390f35b34801561032157600080fd5b5061033c600480360381019061033791906139e7565b610bd1565b6040516103499190613ed1565b60405180910390f35b34801561035e57600080fd5b50610379600480360381019061037491906137f0565b610c56565b005b34801561038757600080fd5b506103a2600480360381019061039d9190613685565b610d6e565b6040516103af9190614319565b60405180910390f35b3480156103c457600080fd5b506103cd610d86565b6040516103da9190614319565b60405180910390f35b3480156103ef57600080fd5b5061040a6004803603810190610405919061382c565b610d8c565b005b34801561041857600080fd5b50610433600480360381019061042e91906136ea565b610ec0565b005b34801561044157600080fd5b5061044a610f20565b6040516104579190613f61565b60405180910390f35b34801561046c57600080fd5b50610475610f33565b005b34801561048357600080fd5b5061048c610fdb565b005b34801561049a57600080fd5b506104b560048036038101906104b091906136ea565b611061565b005b3480156104c357600080fd5b506104de60048036038101906104d9919061397d565b611081565b005b3480156104ec57600080fd5b5061050760048036038101906105029190613685565b611141565b005b34801561051557600080fd5b5061051e61120d565b60405161052b9190613f61565b60405180910390f35b34801561054057600080fd5b5061055b600480360381019061055691906139a6565b611220565b005b34801561056957600080fd5b506105726112b6565b60405161057f9190613f7c565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906139e7565b6112dc565b6040516105bc9190614319565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e791906139e7565b6112f4565b6040516105f99190613ed1565b60405180910390f35b34801561060e57600080fd5b506106176113a6565b6040516106249190613f61565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f91906138e6565b6113b9565b005b34801561066257600080fd5b5061066b611677565b6040516106789190613f97565b60405180910390f35b34801561068d57600080fd5b506106a860048036038101906106a39190613685565b611705565b6040516106b59190614319565b60405180910390f35b3480156106ca57600080fd5b506106d36117bd565b005b3480156106e157600080fd5b506106fc60048036038101906106f791906139e7565b611845565b005b34801561070a57600080fd5b50610713611a3f565b005b34801561072157600080fd5b5061072a611b10565b005b34801561073857600080fd5b50610741611c9d565b60405161074e9190614319565b60405180910390f35b34801561076357600080fd5b5061076c611ca3565b6040516107799190613ed1565b60405180910390f35b34801561078e57600080fd5b50610797611ccd565b6040516107a49190613f97565b60405180910390f35b3480156107b957600080fd5b506107c2611d5f565b6040516107cf9190614319565b60405180910390f35b3480156107e457600080fd5b506107ed611d64565b6040516107fa9190614319565b60405180910390f35b61081d600480360381019061081891906139e7565b611d69565b005b34801561082b57600080fd5b50610846600480360381019061084191906137b4565b611f08565b005b34801561085457600080fd5b5061086f600480360381019061086a9190613739565b612089565b005b34801561087d57600080fd5b506108866120eb565b6040516108939190614319565b60405180910390f35b3480156108a857600080fd5b506108c360048036038101906108be91906139e7565b6120f0565b6040516108d09190613f97565b60405180910390f35b6108f360048036038101906108ee91906139e7565b6121ce565b005b34801561090157600080fd5b5061090a61240b565b6040516109179190614319565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613871565b612411565b005b34801561095557600080fd5b5061095e6125dd565b60405161096b9190613f97565b60405180910390f35b34801561098057600080fd5b50610989612616565b6040516109969190614319565b60405180910390f35b3480156109ab57600080fd5b506109c660048036038101906109c191906136ae565b61261c565b6040516109d39190613f61565b60405180910390f35b3480156109e857600080fd5b50610a0360048036038101906109fe9190613685565b6126b0565b604051610a109190614319565b60405180910390f35b348015610a2557600080fd5b50610a406004803603810190610a3b9190613685565b6126c8565b005b6201518068022b1c8c1227a00000610a5a9190614454565b81565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b2857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b385750610b37826127c0565b5b9050919050565b606060008054610b4e906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7a906145ff565b8015610bc75780601f10610b9c57610100808354040283529160200191610bc7565b820191906000526020600020905b815481529060010190602001808311610baa57829003601f168201915b5050505050905090565b6000610bdc8261282a565b610c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c12906141b9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c61826112f4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc990614279565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cf1612896565b73ffffffffffffffffffffffffffffffffffffffff161480610d205750610d1f81610d1a612896565b61261c565b5b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906140f9565b60405180910390fd5b610d69838361289e565b505050565b600d6020528060005260406000206000915090505481565b60095481565b610d94612896565b73ffffffffffffffffffffffffffffffffffffffff16610db2611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff906141f9565b60405180910390fd5b60005b82829050811015610ebb576002600e6000858585818110610e55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610e6a9190613685565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610eb390614662565b915050610e0b565b505050565b610ed1610ecb612896565b82612957565b610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f07906142b9565b60405180910390fd5b610f1b838383612a35565b505050565b600c60029054906101000a900460ff1681565b610f3b612896565b73ffffffffffffffffffffffffffffffffffffffff16610f59611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa6906141f9565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b610fe3612896565b73ffffffffffffffffffffffffffffffffffffffff16611001611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614611057576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104e906141f9565b60405180910390fd5b6000600a81905550565b61107c83838360405180602001604052806000815250612089565b505050565b611089612896565b73ffffffffffffffffffffffffffffffffffffffff166110a7611ca3565b73ffffffffffffffffffffffffffffffffffffffff16146110fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f4906141f9565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611149612896565b73ffffffffffffffffffffffffffffffffffffffff16611167611ca3565b73ffffffffffffffffffffffffffffffffffffffff16146111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b4906141f9565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611208573d6000803e3d6000fd5b505050565b600c60009054906101000a900460ff1681565b611228612896565b73ffffffffffffffffffffffffffffffffffffffff16611246611ca3565b73ffffffffffffffffffffffffffffffffffffffff161461129c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611293906141f9565b60405180910390fd5b80600790805190602001906112b2929190613400565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915090505481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490614139565b60405180910390fd5b80915050919050565b600c60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611427576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141e90614259565b60405180910390fd5b6000805b838390508110156115e2573373ffffffffffffffffffffffffffffffffffffffff16611495858584818110611489577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201356112f4565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290614299565b60405180910390fd5b6201518068022b1c8c1227a000006115039190614454565b600f6000868685818110611540577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020544261156191906144df565b61156b9190614485565b8261157691906143fe565b915042600f60008686858181106115b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581526020019081526020016000208190555080806115da90614662565b91505061142b565b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379c6506833836040518363ffffffff1660e01b8152600401611640929190613f38565b600060405180830381600087803b15801561165a57600080fd5b505af115801561166e573d6000803e3d6000fd5b50505050505050565b60078054611684906145ff565b80601f01602080910402602001604051908101604052809291908181526020018280546116b0906145ff565b80156116fd5780601f106116d2576101008083540402835291602001916116fd565b820191906000526020600020905b8154815290600101906020018083116116e057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d90614119565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6117c5612896565b73ffffffffffffffffffffffffffffffffffffffff166117e3611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614611839576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611830906141f9565b60405180910390fd5b6118436000612c91565b565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60009054906101000a900460ff16806118b05750600c60019054906101000a900460ff165b6118ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e690614039565b60405180910390fd5b80821115611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990613fb9565b60405180910390fd5b6104578260095461194391906143fe565b1115611984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197b906142d9565b60405180910390fd5b818161199091906144df565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b82811015611a08576119f533826009546119f091906143fe565b612d57565b8080611a0090614662565b9150506119d6565b5081600a6000828254611a1b91906144df565b925050819055508160096000828254611a3491906143fe565b925050819055505050565b611a47612896565b73ffffffffffffffffffffffffffffffffffffffff16611a65611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614611abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab2906141f9565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550600c60019054906101000a900460ff1615600c60016101000a81548160ff02191690831515021790555066f8b0a10e470000600b81905550565b611b18612896565b73ffffffffffffffffffffffffffffffffffffffff16611b36611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614611b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b83906141f9565b60405180910390fd5b6104576004600954611b9e91906143fe565b1115611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd690614199565b60405180910390fd5b600c60029054906101000a900460ff1615611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c26906141d9565b60405180910390fd5b60005b6004811015611c6557611c523382600954611c4d91906143fe565b612d57565b8080611c5d90614662565b915050611c32565b50600460096000828254611c7991906143fe565b925050819055506001600c60026101000a81548160ff021916908315150217905550565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611cdc906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054611d08906145ff565b8015611d555780601f10611d2a57610100808354040283529160200191611d55565b820191906000526020600020905b815481529060010190602001808311611d3857829003601f168201915b5050505050905090565b600281565b600381565b600c60019054906101000a900460ff16611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf906140b9565b60405180910390fd5b600081118015611dc9575060038111155b611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff906142f9565b60405180910390fd5b610457600a5482600954611e1c91906143fe565b611e2691906143fe565b1115611e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5e90614159565b60405180910390fd5b3481600b54611e769190614485565b14611eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ead90614099565b60405180910390fd5b60005b81811015611eeb57611ed83382600954611ed391906143fe565b612d57565b8080611ee390614662565b915050611eb9565b508060096000828254611efe91906143fe565b9250508190555050565b611f10612896565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7590614079565b60405180910390fd5b8060056000611f8b612896565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612038612896565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161207d9190613f61565b60405180910390a35050565b61209a612094612896565b83612957565b6120d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d0906142b9565b60405180910390fd5b6120e584848484612d8d565b50505050565b600481565b60606120fb8261282a565b61213a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213190614239565b60405180910390fd5b6000612144612de9565b9050600081511161216457604051806020016040528060008152506121c6565b8061216e84612e7b565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016121b693929190613ea0565b6040516020818303038152906040525b915050919050565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c60009054906101000a900460ff16806122395750600c60019054906101000a900460ff165b612278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226f90614039565b60405180910390fd5b808211156122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b290613fb9565b60405180910390fd5b610457600a54836009546122cf91906143fe565b6122d991906143fe565b111561231a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231190614159565b60405180910390fd5b3482600b546123299190614485565b14612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090614099565b60405180910390fd5b818161237591906144df565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060005b828110156123ed576123da33826009546123d591906143fe565b612d57565b80806123e590614662565b9150506123bb565b50816009600082825461240091906143fe565b925050819055505050565b61045781565b612419612896565b73ffffffffffffffffffffffffffffffffffffffff16612437611ca3565b73ffffffffffffffffffffffffffffffffffffffff161461248d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612484906141f9565b60405180910390fd5b60005b848490508110156125d6578282828181106124d4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600d6000878785818110612518577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061252d9190613685565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508282828181106125a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135600a60008282546125bc91906143fe565b9250508190555080806125ce90614662565b915050612490565b5050505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e6020528060005260406000206000915090505481565b6126d0612896565b73ffffffffffffffffffffffffffffffffffffffff166126ee611ca3565b73ffffffffffffffffffffffffffffffffffffffff1614612744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273b906141f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156127b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ab90613ff9565b60405180910390fd5b6127bd81612c91565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612911836112f4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006129628261282a565b6129a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612998906140d9565b60405180910390fd5b60006129ac836112f4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a1b57508373ffffffffffffffffffffffffffffffffffffffff16612a0384610bd1565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a2c5750612a2b818561261c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a55826112f4565b73ffffffffffffffffffffffffffffffffffffffff1614612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa290614219565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1290614059565b60405180910390fd5b612b26838383613028565b612b3160008261289e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b8191906144df565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bd891906143fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b42600f600083815260200190815260200160002081905550612d8982826040518060200160405280600081525061302d565b5050565b612d98848484612a35565b612da484848484613088565b612de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dda90613fd9565b60405180910390fd5b50505050565b606060078054612df8906145ff565b80601f0160208091040260200160405190810160405280929190818152602001828054612e24906145ff565b8015612e715780601f10612e4657610100808354040283529160200191612e71565b820191906000526020600020905b815481529060010190602001808311612e5457829003601f168201915b5050505050905090565b60606000821415612ec3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613023565b600082905060005b60008214612ef5578080612ede90614662565b915050600a82612eee9190614454565b9150612ecb565b60008167ffffffffffffffff811115612f37577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f695781602001600182028036833780820191505090505b5090505b6000851461301c57600182612f8291906144df565b9150600a85612f9191906146ab565b6030612f9d91906143fe565b60f81b818381518110612fd9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856130159190614454565b9450612f6d565b8093505050505b919050565b505050565b613037838361321f565b6130446000848484613088565b613083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307a90613fd9565b60405180910390fd5b505050565b60006130a98473ffffffffffffffffffffffffffffffffffffffff166133ed565b15613212578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130d2612896565b8786866040518563ffffffff1660e01b81526004016130f49493929190613eec565b602060405180830381600087803b15801561310e57600080fd5b505af192505050801561313f57506040513d601f19601f8201168201806040525081019061313c9190613954565b60015b6131c2573d806000811461316f576040519150601f19603f3d011682016040523d82523d6000602084013e613174565b606091505b506000815114156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b190613fd9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613217565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561328f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328690614179565b60405180910390fd5b6132988161282a565b156132d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cf90614019565b60405180910390fd5b6132e460008383613028565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461333491906143fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461340c906145ff565b90600052602060002090601f01602090048101928261342e5760008555613475565b82601f1061344757805160ff1916838001178555613475565b82800160010185558215613475579182015b82811115613474578251825591602001919060010190613459565b5b5090506134829190613486565b5090565b5b8082111561349f576000816000905550600101613487565b5090565b60006134b66134b184614359565b614334565b9050828152602081018484840111156134ce57600080fd5b6134d98482856145bd565b509392505050565b60006134f46134ef8461438a565b614334565b90508281526020810184848401111561350c57600080fd5b6135178482856145bd565b509392505050565b60008135905061352e81614e36565b92915050565b60008083601f84011261354657600080fd5b8235905067ffffffffffffffff81111561355f57600080fd5b60208301915083602082028301111561357757600080fd5b9250929050565b60008083601f84011261359057600080fd5b8235905067ffffffffffffffff8111156135a957600080fd5b6020830191508360208202830111156135c157600080fd5b9250929050565b6000813590506135d781614e4d565b92915050565b6000813590506135ec81614e64565b92915050565b60008151905061360181614e64565b92915050565b600082601f83011261361857600080fd5b81356136288482602086016134a3565b91505092915050565b60008135905061364081614e7b565b92915050565b600082601f83011261365757600080fd5b81356136678482602086016134e1565b91505092915050565b60008135905061367f81614e92565b92915050565b60006020828403121561369757600080fd5b60006136a58482850161351f565b91505092915050565b600080604083850312156136c157600080fd5b60006136cf8582860161351f565b92505060206136e08582860161351f565b9150509250929050565b6000806000606084860312156136ff57600080fd5b600061370d8682870161351f565b935050602061371e8682870161351f565b925050604061372f86828701613670565b9150509250925092565b6000806000806080858703121561374f57600080fd5b600061375d8782880161351f565b945050602061376e8782880161351f565b935050604061377f87828801613670565b925050606085013567ffffffffffffffff81111561379c57600080fd5b6137a887828801613607565b91505092959194509250565b600080604083850312156137c757600080fd5b60006137d58582860161351f565b92505060206137e6858286016135c8565b9150509250929050565b6000806040838503121561380357600080fd5b60006138118582860161351f565b925050602061382285828601613670565b9150509250929050565b6000806020838503121561383f57600080fd5b600083013567ffffffffffffffff81111561385957600080fd5b61386585828601613534565b92509250509250929050565b6000806000806040858703121561388757600080fd5b600085013567ffffffffffffffff8111156138a157600080fd5b6138ad87828801613534565b9450945050602085013567ffffffffffffffff8111156138cc57600080fd5b6138d88782880161357e565b925092505092959194509250565b600080602083850312156138f957600080fd5b600083013567ffffffffffffffff81111561391357600080fd5b61391f8582860161357e565b92509250509250929050565b60006020828403121561393d57600080fd5b600061394b848285016135dd565b91505092915050565b60006020828403121561396657600080fd5b6000613974848285016135f2565b91505092915050565b60006020828403121561398f57600080fd5b600061399d84828501613631565b91505092915050565b6000602082840312156139b857600080fd5b600082013567ffffffffffffffff8111156139d257600080fd5b6139de84828501613646565b91505092915050565b6000602082840312156139f957600080fd5b6000613a0784828501613670565b91505092915050565b613a1981614513565b82525050565b613a2881614525565b82525050565b6000613a39826143bb565b613a4381856143d1565b9350613a538185602086016145cc565b613a5c81614798565b840191505092915050565b613a7081614599565b82525050565b6000613a81826143c6565b613a8b81856143e2565b9350613a9b8185602086016145cc565b613aa481614798565b840191505092915050565b6000613aba826143c6565b613ac481856143f3565b9350613ad48185602086016145cc565b80840191505092915050565b6000613aed601d836143e2565b9150613af8826147a9565b602082019050919050565b6000613b106032836143e2565b9150613b1b826147d2565b604082019050919050565b6000613b336026836143e2565b9150613b3e82614821565b604082019050919050565b6000613b56601c836143e2565b9150613b6182614870565b602082019050919050565b6000613b796024836143e2565b9150613b8482614899565b604082019050919050565b6000613b9c6024836143e2565b9150613ba7826148e8565b604082019050919050565b6000613bbf6019836143e2565b9150613bca82614937565b602082019050919050565b6000613be2601f836143e2565b9150613bed82614960565b602082019050919050565b6000613c05601b836143e2565b9150613c1082614989565b602082019050919050565b6000613c28602c836143e2565b9150613c33826149b2565b604082019050919050565b6000613c4b6038836143e2565b9150613c5682614a01565b604082019050919050565b6000613c6e602a836143e2565b9150613c7982614a50565b604082019050919050565b6000613c916029836143e2565b9150613c9c82614a9f565b604082019050919050565b6000613cb4602a836143e2565b9150613cbf82614aee565b604082019050919050565b6000613cd76020836143e2565b9150613ce282614b3d565b602082019050919050565b6000613cfa601b836143e2565b9150613d0582614b66565b602082019050919050565b6000613d1d602c836143e2565b9150613d2882614b8f565b604082019050919050565b6000613d406017836143e2565b9150613d4b82614bde565b602082019050919050565b6000613d636020836143e2565b9150613d6e82614c07565b602082019050919050565b6000613d866029836143e2565b9150613d9182614c30565b604082019050919050565b6000613da9602f836143e2565b9150613db482614c7f565b604082019050919050565b6000613dcc600f836143e2565b9150613dd782614cce565b602082019050919050565b6000613def6021836143e2565b9150613dfa82614cf7565b604082019050919050565b6000613e126009836143e2565b9150613e1d82614d46565b602082019050919050565b6000613e356031836143e2565b9150613e4082614d6f565b604082019050919050565b6000613e586027836143e2565b9150613e6382614dbe565b604082019050919050565b6000613e7b6017836143e2565b9150613e8682614e0d565b602082019050919050565b613e9a8161458f565b82525050565b6000613eac8286613aaf565b9150613eb88285613aaf565b9150613ec48284613aaf565b9150819050949350505050565b6000602082019050613ee66000830184613a10565b92915050565b6000608082019050613f016000830187613a10565b613f0e6020830186613a10565b613f1b6040830185613e91565b8181036060830152613f2d8184613a2e565b905095945050505050565b6000604082019050613f4d6000830185613a10565b613f5a6020830184613e91565b9392505050565b6000602082019050613f766000830184613a1f565b92915050565b6000602082019050613f916000830184613a67565b92915050565b60006020820190508181036000830152613fb18184613a76565b905092915050565b60006020820190508181036000830152613fd281613ae0565b9050919050565b60006020820190508181036000830152613ff281613b03565b9050919050565b6000602082019050818103600083015261401281613b26565b9050919050565b6000602082019050818103600083015261403281613b49565b9050919050565b6000602082019050818103600083015261405281613b6c565b9050919050565b6000602082019050818103600083015261407281613b8f565b9050919050565b6000602082019050818103600083015261409281613bb2565b9050919050565b600060208201905081810360008301526140b281613bd5565b9050919050565b600060208201905081810360008301526140d281613bf8565b9050919050565b600060208201905081810360008301526140f281613c1b565b9050919050565b6000602082019050818103600083015261411281613c3e565b9050919050565b6000602082019050818103600083015261413281613c61565b9050919050565b6000602082019050818103600083015261415281613c84565b9050919050565b6000602082019050818103600083015261417281613ca7565b9050919050565b6000602082019050818103600083015261419281613cca565b9050919050565b600060208201905081810360008301526141b281613ced565b9050919050565b600060208201905081810360008301526141d281613d10565b9050919050565b600060208201905081810360008301526141f281613d33565b9050919050565b6000602082019050818103600083015261421281613d56565b9050919050565b6000602082019050818103600083015261423281613d79565b9050919050565b6000602082019050818103600083015261425281613d9c565b9050919050565b6000602082019050818103600083015261427281613dbf565b9050919050565b6000602082019050818103600083015261429281613de2565b9050919050565b600060208201905081810360008301526142b281613e05565b9050919050565b600060208201905081810360008301526142d281613e28565b9050919050565b600060208201905081810360008301526142f281613e4b565b9050919050565b6000602082019050818103600083015261431281613e6e565b9050919050565b600060208201905061432e6000830184613e91565b92915050565b600061433e61434f565b905061434a8282614631565b919050565b6000604051905090565b600067ffffffffffffffff82111561437457614373614769565b5b61437d82614798565b9050602081019050919050565b600067ffffffffffffffff8211156143a5576143a4614769565b5b6143ae82614798565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144098261458f565b91506144148361458f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614449576144486146dc565b5b828201905092915050565b600061445f8261458f565b915061446a8361458f565b92508261447a5761447961470b565b5b828204905092915050565b60006144908261458f565b915061449b8361458f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144d4576144d36146dc565b5b828202905092915050565b60006144ea8261458f565b91506144f58361458f565b925082821015614508576145076146dc565b5b828203905092915050565b600061451e8261456f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061456882614513565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006145a4826145ab565b9050919050565b60006145b68261456f565b9050919050565b82818337600083830152505050565b60005b838110156145ea5780820151818401526020810190506145cf565b838111156145f9576000848401525b50505050565b6000600282049050600182168061461757607f821691505b6020821081141561462b5761462a61473a565b5b50919050565b61463a82614798565b810181811067ffffffffffffffff8211171561465957614658614769565b5b80604052505050565b600061466d8261458f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146a05761469f6146dc565b5b600182019050919050565b60006146b68261458f565b91506146c18361458f565b9250826146d1576146d061470b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616e2774206d696e74206d6f7265207468616e207265736572766564000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f412073616c6520706572696f64206d7573742062652061637469766520746f2060008201527f6d696e7400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620746f6b656e7300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752068617665206d697373656420796f7572206368616e63650000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f6e6c79206f6e63652c206576656e20666f7220796f75000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5768617420796f7520646f696e673f0000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f436c61696d20776f756c6420657863656564206d617820737570706c79206f6660008201527f20746f6b656e7300000000000000000000000000000000000000000000000000602082015250565b7f496e76616c696420707572636861736520616d6f756e74000000000000000000600082015250565b614e3f81614513565b8114614e4a57600080fd5b50565b614e5681614525565b8114614e6157600080fd5b50565b614e6d81614531565b8114614e7857600080fd5b50565b614e848161455d565b8114614e8f57600080fd5b50565b614e9b8161458f565b8114614ea657600080fd5b5056fea2646970667358221220351c2613af00578a43e565521cb469d97cf1a461ec6f95545bde3ba2ca02bfa464736f6c63430008040033

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.