ETH Price: $2,871.13 (-9.70%)
Gas: 16 Gwei

Token

Wacky Wizards (WZRD)
 

Overview

Max Total Supply

417 WZRD

Holders

172

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
troglodyte.eth
Balance
1 WZRD
0x92fe228f63122e2c0e11e13fbc8549cf032759d5
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:
WackyWizards

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

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

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

// dev is @elbrupt on telegram

contract WackyWizards is ERC721, Ownable {
    using Strings for uint256;

    // test withdraw wallets
    address public verifiedSigner = 0xF41D419b73AC92f0f2C2135e798879CE9AB24B63;
    address private memberOne = 0x0722780e64624E45bacD4446c5B720521Da9baaB;
    address private memberTwo = 0x6562b6B31fF1dFf6972430Bc6Bd986fAAd753C42;
    address private memberThree = 0x9d3E9C35938AAFDA6e1f280D6c8286D4256e1DF6;
    address private memberFour = 0xF41D419b73AC92f0f2C2135e798879CE9AB24B63;
    address private memberFive = 0x0FFD545c46C83b8b48f7304D53610F4915afD00A;
    address private memberSix = 0xC4969a68e74b327E01F4CaD9D7d4988e1bc1567f;
    address private memberSeven = 0x2cC01f7bCDE9FF9Fa36aDb03FB34f9869B438e47;

    uint256 public NFT_MAX = 3333;
    uint256 public NFT_PRICE = 0.08 ether;
    uint256 public constant NFTS_PER_MINT = 2;
    string private _contractURI;
    string private _tokenBaseURI;
    string public _mysteryURI;

    mapping(uint256 => bool) private usedNonce;

    bool public revealed;
    bool public saleLive;
    bool public giftLive;
    bool public burnLive;

    uint256 public totalSupply;
    uint256 public totalBurnedSupply;

    constructor() ERC721("Wacky Wizards", "WZRD") {}

    function mintGiftAsOwner(uint256 tokenQuantity, address wallet)
        external
        onlyOwner
    {
        require(giftLive, "GIFTING_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK");

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(wallet, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function mintGift(
        uint256 tokenQuantity,
        uint256 nonce,
        address wallet,
        bytes memory signature
    ) external {
        require(giftLive, "GIFTING_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_PUBLIC");
        require(usedNonce[nonce] == false, "NONCE_ALREADY_USED");
        require(
            matchSigner(
                hashTransaction(nonce, wallet, tokenQuantity),
                signature
            ),
            "NOT_ALLOWED_TO_MINT"
        );
        usedNonce[nonce] = true;

        // gifts wallet input
        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(wallet, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function mint(
        uint256 tokenQuantity,
        uint256 nonce,
        address wallet,
        bytes memory signature
    ) external payable {
        require(saleLive, "SALE_CLOSED");
        require(totalSupply < NFT_MAX, "OUT_OF_STOCK");
        require(totalSupply + tokenQuantity <= NFT_MAX, "EXCEED_STOCK");
        require(NFT_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        require(!usedNonce[nonce], "NONCE_ALREADY_USED");
        require(tokenQuantity <= NFTS_PER_MINT, "EXCEED_NFTS_PER_MINT");
        require(
            matchSigner(
                hashTransaction(nonce, wallet, tokenQuantity),
                signature
            ),
            "NOT_ALLOWED_TO_MINT"
        );
        usedNonce[nonce] = true;

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(msg.sender, totalSupply + i + 1);
        }

        totalSupply += tokenQuantity;
    }

    function hashTransaction(
        uint256 nonce,
        address wallet,
        uint256 tokenQuantity
    ) internal pure returns (bytes32) {
        bytes32 hash = keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(nonce, wallet, tokenQuantity))
            )
        );
        return hash;
    }

    function matchSigner(bytes32 hash, bytes memory signature)
        internal
        view
        returns (bool)
    {
        return verifiedSigner == ECDSA.recover(hash, signature);
    }

    function withdraw() external {
        uint256 currentBalance = address(this).balance;
        payable(memberOne).transfer((currentBalance * 23) / 100);
        payable(memberTwo).transfer((currentBalance * 23) / 100);
        payable(memberThree).transfer((currentBalance * 23) / 100);
        payable(memberFour).transfer((currentBalance * 15) / 100);
        payable(memberFive).transfer((currentBalance * 8) / 100);
        payable(memberSix).transfer((currentBalance * 4) / 100);
        payable(memberSeven).transfer((currentBalance * 4) / 100);
    }

    function burnMint(uint256 _tokenId) public {
        require(burnLive == true, "BURN_IS_NOT_LIVE");
        require(ownerOf(_tokenId) == msg.sender, "TOKEN_TO_BURN_NOT_BY_OWNER");
        _burn(_tokenId);
        totalBurnedSupply = totalBurnedSupply + 1;
    }

    function burnMintAsOwner(uint256 _tokenId) public onlyOwner {
        require(burnLive == true, "BURN_IS_NOT_LIVE");
        _burn(_tokenId);
        totalBurnedSupply = totalBurnedSupply + 1;
    }

    function toggleBurnStatus() external onlyOwner {
        burnLive = !burnLive;
    }

    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }

    function toggleSaleGiftStatus() external onlyOwner {
        giftLive = !giftLive;
    }

    function toggleMysteryURI() public onlyOwner {
        revealed = !revealed;
    }

    function setVerifiedSigner(address wallet) public onlyOwner {
        verifiedSigner = wallet;
    }

    function setMysteryURI(string calldata URI) public onlyOwner {
        _mysteryURI = URI;
    }

    function setPriceOfNFT(uint256 price) external onlyOwner {
        // 70000000000000000 = .07 eth
        NFT_PRICE = price;
    }

    function setNFTMax(uint256 max) external onlyOwner {
        NFT_MAX = max;
    }

    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Cannot query non-existent token");

        if (revealed == false) {
            return _mysteryURI;
        }

        return
            string(
                abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json")
            );
    }
}

File 2 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

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

File 4 of 12 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

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 12 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

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 12 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

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 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

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 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 10 of 12 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

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 12 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

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 12 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

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

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":"NFTS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mysteryURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"burnLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnMintAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenQuantity","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintGift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"mintGiftAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"saleLive","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":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setNFTMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPriceOfNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setVerifiedSigner","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":"toggleBurnStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMysteryURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleGiftStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurnedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"verifiedSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273f41d419b73ac92f0f2c2135e798879ce9ab24b63600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730722780e64624e45bacd4446c5b720521da9baab600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736562b6b31ff1dff6972430bc6bd986faad753c42600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739d3e9c35938aafda6e1f280d6c8286d4256e1df6600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f41d419b73ac92f0f2c2135e798879ce9ab24b63600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730ffd545c46c83b8b48f7304d53610f4915afd00a600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c4969a68e74b327e01f4cad9d7d4988e1bc1567f600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732cc01f7bcde9ff9fa36adb03fb34f9869b438e47600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d05600f5567011c37937e080000601055348015620002cb57600080fd5b506040518060400160405280600d81526020017f5761636b792057697a61726473000000000000000000000000000000000000008152506040518060400160405280600481526020017f575a52440000000000000000000000000000000000000000000000000000000081525081600090805190602001906200035092919062000460565b5080600190805190602001906200036992919062000460565b5050506200038c620003806200039260201b60201c565b6200039a60201b60201c565b62000575565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200046e9062000510565b90600052602060002090601f016020900481019282620004925760008555620004de565b82601f10620004ad57805160ff1916838001178555620004de565b82800160010185558215620004de579182015b82811115620004dd578251825591602001919060010190620004c0565b5b509050620004ed9190620004f1565b5090565b5b808211156200050c576000816000905550600101620004f2565b5090565b600060028204905060018216806200052957607f821691505b6020821081141562000540576200053f62000546565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6156f180620005856000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063c87b56dd116100b6578063e423a5111161007a578063e423a5111461089b578063e72be68a146108c4578063e8a3d485146108ed578063e985e9c514610918578063ee37520b14610955578063f2fde38b1461096c57610267565b8063c87b56dd146107c8578063c9f9a72314610805578063cb908cce1461082e578063d1b85c5314610845578063e081b7811461087057610267565b806395d89b411161010857806395d89b41146106cc578063978528c0146106f7578063a22cb46514610720578063a4f8eaeb14610749578063b88d4fde14610774578063c30e76841461079d57610267565b806370a08231146105f9578063715018a61461063657806372bfb1af1461064d5780638da5cb5b14610678578063938e3d7b146106a357610267565b806335ef4fb7116101dd57806351830227116101a157806351830227146104f857806355f804b3146105235780635b0c52fd1461054c5780635ca5933a146105755780636352211e14610591578063676dd563146105ce57610267565b806335ef4fb71461044b57806339aba407146104765780633ccfd60b146104a157806342842e0e146104b857806345bcf17f146104e157610267565b806311084c971161022f57806311084c971461035157806318160ddd1461037a5780631bd98e72146103a557806323b872dd146103ce5780632cff9e06146103f75780633125ac6c1461042257610267565b806301ffc9a71461026c578063049c5c49146102a957806306fdde03146102c0578063081812fc146102eb578063095ea7b314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613ceb565b610995565b6040516102a091906145b0565b60405180910390f35b3480156102b557600080fd5b506102be610a77565b005b3480156102cc57600080fd5b506102d5610b1f565b6040516102e29190614610565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190613d92565b610bb1565b60405161031f9190614549565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613cab565b610c36565b005b34801561035d57600080fd5b5061037860048036038101906103739190613dff565b610d4e565b005b34801561038657600080fd5b5061038f610f7c565b60405161039c9190614a12565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613dbf565b610f82565b005b3480156103da57600080fd5b506103f560048036038101906103f09190613b95565b611144565b005b34801561040357600080fd5b5061040c6111a4565b60405161041991906145b0565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613d92565b6111b7565b005b34801561045757600080fd5b506104606112a4565b60405161046d9190614549565b60405180910390f35b34801561048257600080fd5b5061048b6112ca565b6040516104989190614a12565b60405180910390f35b3480156104ad57600080fd5b506104b66112d0565b005b3480156104c457600080fd5b506104df60048036038101906104da9190613b95565b61165f565b005b3480156104ed57600080fd5b506104f661167f565b005b34801561050457600080fd5b5061050d611727565b60405161051a91906145b0565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613d45565b61173a565b005b34801561055857600080fd5b50610573600480360381019061056e9190613d92565b6117cc565b005b61058f600480360381019061058a9190613dff565b611852565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613d92565b611b0e565b6040516105c59190614549565b60405180910390f35b3480156105da57600080fd5b506105e3611bc0565b6040516105f09190614a12565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190613b28565b611bc6565b60405161062d9190614a12565b60405180910390f35b34801561064257600080fd5b5061064b611c7e565b005b34801561065957600080fd5b50610662611d06565b60405161066f9190614a12565b60405180910390f35b34801561068457600080fd5b5061068d611d0b565b60405161069a9190614549565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613d45565b611d35565b005b3480156106d857600080fd5b506106e1611dc7565b6040516106ee9190614610565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613b28565b611e59565b005b34801561072c57600080fd5b5061074760048036038101906107429190613c6b565b611f19565b005b34801561075557600080fd5b5061075e611f2f565b60405161076b9190614610565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613be8565b611fbd565b005b3480156107a957600080fd5b506107b261201f565b6040516107bf9190614a12565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613d92565b612025565b6040516107fc9190614610565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613d92565b612150565b005b34801561083a57600080fd5b50610843612243565b005b34801561085157600080fd5b5061085a6122eb565b60405161086791906145b0565b60405180910390f35b34801561087c57600080fd5b506108856122fe565b60405161089291906145b0565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613d92565b612311565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613d45565b612397565b005b3480156108f957600080fd5b50610902612429565b60405161090f9190614610565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613b55565b6124bb565b60405161094c91906145b0565b60405180910390f35b34801561096157600080fd5b5061096a61254f565b005b34801561097857600080fd5b50610993600480360381019061098e9190613b28565b6125f7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750610a6f826126ef565b5b9050919050565b610a7f612759565b73ffffffffffffffffffffffffffffffffffffffff16610a9d611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906148b2565b60405180910390fd5b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550565b606060008054610b2e90614cbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a90614cbd565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905090565b6000610bbc82612761565b610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290614892565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4182611b0e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990614912565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd1612759565b73ffffffffffffffffffffffffffffffffffffffff161480610d005750610cff81610cfa612759565b6124bb565b5b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906147d2565b60405180910390fd5b610d4983836127cd565b505050565b601560029054906101000a900460ff16610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d94906149f2565b60405180910390fd5b600f5460165410610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90614752565b60405180910390fd5b600f5484601654610df49190614adb565b1115610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90614932565b60405180910390fd5b600015156014600085815260200190815260200160002060009054906101000a900460ff16151514610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390614832565b60405180910390fd5b610eb0610eaa848487612886565b826128e7565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690614952565b60405180910390fd5b60016014600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015610f5c57610f4983600183601654610f3a9190614adb565b610f449190614adb565b61294b565b8080610f5490614d20565b915050610f1e565b508360166000828254610f6f9190614adb565b9250508190555050505050565b60165481565b610f8a612759565b73ffffffffffffffffffffffffffffffffffffffff16610fa8611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff5906148b2565b60405180910390fd5b601560029054906101000a900460ff1661104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906149f2565b60405180910390fd5b600f5460165410611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90614752565b60405180910390fd5b600f54826016546110a49190614adb565b11156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906146d2565b60405180910390fd5b60005b8281101561112657611113826001836016546111049190614adb565b61110e9190614adb565b61294b565b808061111e90614d20565b9150506110e8565b5081601660008282546111399190614adb565b925050819055505050565b61115561114f612759565b82612969565b611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90614972565b60405180910390fd5b61119f838383612a47565b505050565b601560029054906101000a900460ff1681565b60011515601560039054906101000a900460ff1615151461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614652565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661122d82611b0e565b73ffffffffffffffffffffffffffffffffffffffff1614611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90614992565b60405180910390fd5b61128c81612ca3565b600160175461129b9190614adb565b60178190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646017846113209190614b62565b61132a9190614b31565b9081150290604051600060405180830381858888f19350505050158015611355573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646017846113a19190614b62565b6113ab9190614b31565b9081150290604051600060405180830381858888f193505050501580156113d6573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646017846114229190614b62565b61142c9190614b31565b9081150290604051600060405180830381858888f19350505050158015611457573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f846114a39190614b62565b6114ad9190614b31565b9081150290604051600060405180830381858888f193505050501580156114d8573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646008846115249190614b62565b61152e9190614b31565b9081150290604051600060405180830381858888f19350505050158015611559573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646004846115a59190614b62565b6115af9190614b31565b9081150290604051600060405180830381858888f193505050501580156115da573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646004846116269190614b62565b6116309190614b31565b9081150290604051600060405180830381858888f1935050505015801561165b573d6000803e3d6000fd5b5050565b61167a83838360405180602001604052806000815250611fbd565b505050565b611687612759565b73ffffffffffffffffffffffffffffffffffffffff166116a5611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906148b2565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b601560009054906101000a900460ff1681565b611742612759565b73ffffffffffffffffffffffffffffffffffffffff16611760611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906148b2565b60405180910390fd5b8181601291906117c7929190613956565b505050565b6117d4612759565b73ffffffffffffffffffffffffffffffffffffffff166117f2611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f906148b2565b60405180910390fd5b80600f8190555050565b601560019054906101000a900460ff166118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890614792565b60405180910390fd5b600f54601654106118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90614752565b60405180910390fd5b600f54846016546118f89190614adb565b1115611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906146d2565b60405180910390fd5b34846010546119489190614b62565b1115611989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611980906149d2565b60405180910390fd5b6014600084815260200190815260200160002060009054906101000a900460ff16156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190614832565b60405180910390fd5b6002841115611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906149b2565b60405180910390fd5b611a42611a3c848487612886565b826128e7565b611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614952565b60405180910390fd5b60016014600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015611aee57611adb33600183601654611acc9190614adb565b611ad69190614adb565b61294b565b8080611ae690614d20565b915050611ab0565b508360166000828254611b019190614adb565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae90614812565b60405180910390fd5b80915050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906147f2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c86612759565b73ffffffffffffffffffffffffffffffffffffffff16611ca4611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906148b2565b60405180910390fd5b611d046000612db4565b565b600281565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d3d612759565b73ffffffffffffffffffffffffffffffffffffffff16611d5b611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da8906148b2565b60405180910390fd5b818160119190611dc2929190613956565b505050565b606060018054611dd690614cbd565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0290614cbd565b8015611e4f5780601f10611e2457610100808354040283529160200191611e4f565b820191906000526020600020905b815481529060010190602001808311611e3257829003601f168201915b5050505050905090565b611e61612759565b73ffffffffffffffffffffffffffffffffffffffff16611e7f611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906148b2565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f2b611f24612759565b8383612e7a565b5050565b60138054611f3c90614cbd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6890614cbd565b8015611fb55780601f10611f8a57610100808354040283529160200191611fb5565b820191906000526020600020905b815481529060010190602001808311611f9857829003601f168201915b505050505081565b611fce611fc8612759565b83612969565b61200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490614972565b60405180910390fd5b61201984848484612fe7565b50505050565b600f5481565b606061203082612761565b61206f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612066906148f2565b60405180910390fd5b60001515601560009054906101000a900460ff161515141561211d576013805461209890614cbd565b80601f01602080910402602001604051908101604052809291908181526020018280546120c490614cbd565b80156121115780601f106120e657610100808354040283529160200191612111565b820191906000526020600020905b8154815290600101906020018083116120f457829003601f168201915b5050505050905061214b565b601261212883613043565b6040516020016121399291906144b7565b60405160208183030381529060405290505b919050565b612158612759565b73ffffffffffffffffffffffffffffffffffffffff16612176611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c3906148b2565b60405180910390fd5b60011515601560039054906101000a900460ff16151514612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990614652565b60405180910390fd5b61222b81612ca3565b600160175461223a9190614adb565b60178190555050565b61224b612759565b73ffffffffffffffffffffffffffffffffffffffff16612269611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b6906148b2565b60405180910390fd5b601560029054906101000a900460ff1615601560026101000a81548160ff021916908315150217905550565b601560039054906101000a900460ff1681565b601560019054906101000a900460ff1681565b612319612759565b73ffffffffffffffffffffffffffffffffffffffff16612337611d0b565b73ffffffffffffffffffffffffffffffffffffffff161461238d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612384906148b2565b60405180910390fd5b8060108190555050565b61239f612759565b73ffffffffffffffffffffffffffffffffffffffff166123bd611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a906148b2565b60405180910390fd5b818160139190612424929190613956565b505050565b60606011805461243890614cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461246490614cbd565b80156124b15780601f10612486576101008083540402835291602001916124b1565b820191906000526020600020905b81548152906001019060200180831161249457829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612557612759565b73ffffffffffffffffffffffffffffffffffffffff16612575611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c2906148b2565b60405180910390fd5b601560039054906101000a900460ff1615601560036101000a81548160ff021916908315150217905550565b6125ff612759565b73ffffffffffffffffffffffffffffffffffffffff1661261d611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a906148b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126da906146b2565b60405180910390fd5b6126ec81612db4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661284083611b0e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008084848460405160200161289e9392919061450c565b604051602081830303815290604052805190602001206040516020016128c491906144e6565b604051602081830303815290604052805190602001209050809150509392505050565b60006128f383836131a4565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6129658282604051806020016040528060008152506131cb565b5050565b600061297482612761565b6129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa906147b2565b60405180910390fd5b60006129be83611b0e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a2d57508373ffffffffffffffffffffffffffffffffffffffff16612a1584610bb1565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a3e5750612a3d81856124bb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a6782611b0e565b73ffffffffffffffffffffffffffffffffffffffff1614612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab4906148d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2490614712565b60405180910390fd5b612b38838383613226565b612b436000826127cd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b939190614bbc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bea9190614adb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612cae82611b0e565b9050612cbc81600084613226565b612cc76000836127cd565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d179190614bbc565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee090614732565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fda91906145b0565b60405180910390a3505050565b612ff2848484612a47565b612ffe8484848461322b565b61303d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303490614692565b60405180910390fd5b50505050565b6060600082141561308b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061319f565b600082905060005b600082146130bd5780806130a690614d20565b915050600a826130b69190614b31565b9150613093565b60008167ffffffffffffffff8111156130d9576130d8614ebd565b5b6040519080825280601f01601f19166020018201604052801561310b5781602001600182028036833780820191505090505b5090505b60008514613198576001826131249190614bbc565b9150600a856131339190614da1565b603061313f9190614adb565b60f81b81838151811061315557613154614e8e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131919190614b31565b945061310f565b8093505050505b919050565b60008060006131b385856133c2565b915091506131c081613445565b819250505092915050565b6131d5838361361a565b6131e2600084848461322b565b613221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321890614692565b60405180910390fd5b505050565b505050565b600061324c8473ffffffffffffffffffffffffffffffffffffffff166137e8565b156133b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613275612759565b8786866040518563ffffffff1660e01b81526004016132979493929190614564565b602060405180830381600087803b1580156132b157600080fd5b505af19250505080156132e257506040513d601f19601f820116820180604052508101906132df9190613d18565b60015b613365573d8060008114613312576040519150601f19603f3d011682016040523d82523d6000602084013e613317565b606091505b5060008151141561335d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335490614692565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133ba565b600190505b949350505050565b6000806041835114156134045760008060006020860151925060408601519150606086015160001a90506133f8878285856137fb565b9450945050505061343e565b60408351141561343557600080602085015191506040850151905061342a868383613908565b93509350505061343e565b60006002915091505b9250929050565b6000600481111561345957613458614e30565b5b81600481111561346c5761346b614e30565b5b141561347757613617565b6001600481111561348b5761348a614e30565b5b81600481111561349e5761349d614e30565b5b14156134df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d690614632565b60405180910390fd5b600260048111156134f3576134f2614e30565b5b81600481111561350657613505614e30565b5b1415613547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353e90614672565b60405180910390fd5b6003600481111561355b5761355a614e30565b5b81600481111561356e5761356d614e30565b5b14156135af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a690614772565b60405180910390fd5b6004808111156135c2576135c1614e30565b5b8160048111156135d5576135d4614e30565b5b1415613616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360d90614852565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561368a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368190614872565b60405180910390fd5b61369381612761565b156136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ca906146f2565b60405180910390fd5b6136df60008383613226565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461372f9190614adb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156138365760006003915091506138ff565b601b8560ff161415801561384e5750601c8560ff1614155b156138605760006004915091506138ff565b60006001878787876040516000815260200160405260405161388594939291906145cb565b6020604051602081039080840390855afa1580156138a7573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156138f6576000600192509250506138ff565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613948878288856137fb565b935093505050935093915050565b82805461396290614cbd565b90600052602060002090601f01602090048101928261398457600085556139cb565b82601f1061399d57803560ff19168380011785556139cb565b828001600101855582156139cb579182015b828111156139ca5782358255916020019190600101906139af565b5b5090506139d891906139dc565b5090565b5b808211156139f55760008160009055506001016139dd565b5090565b6000613a0c613a0784614a52565b614a2d565b905082815260208101848484011115613a2857613a27614efb565b5b613a33848285614c7b565b509392505050565b600081359050613a4a8161565f565b92915050565b600081359050613a5f81615676565b92915050565b600081359050613a748161568d565b92915050565b600081519050613a898161568d565b92915050565b600082601f830112613aa457613aa3614ef1565b5b8135613ab48482602086016139f9565b91505092915050565b60008083601f840112613ad357613ad2614ef1565b5b8235905067ffffffffffffffff811115613af057613aef614eec565b5b602083019150836001820283011115613b0c57613b0b614ef6565b5b9250929050565b600081359050613b22816156a4565b92915050565b600060208284031215613b3e57613b3d614f05565b5b6000613b4c84828501613a3b565b91505092915050565b60008060408385031215613b6c57613b6b614f05565b5b6000613b7a85828601613a3b565b9250506020613b8b85828601613a3b565b9150509250929050565b600080600060608486031215613bae57613bad614f05565b5b6000613bbc86828701613a3b565b9350506020613bcd86828701613a3b565b9250506040613bde86828701613b13565b9150509250925092565b60008060008060808587031215613c0257613c01614f05565b5b6000613c1087828801613a3b565b9450506020613c2187828801613a3b565b9350506040613c3287828801613b13565b925050606085013567ffffffffffffffff811115613c5357613c52614f00565b5b613c5f87828801613a8f565b91505092959194509250565b60008060408385031215613c8257613c81614f05565b5b6000613c9085828601613a3b565b9250506020613ca185828601613a50565b9150509250929050565b60008060408385031215613cc257613cc1614f05565b5b6000613cd085828601613a3b565b9250506020613ce185828601613b13565b9150509250929050565b600060208284031215613d0157613d00614f05565b5b6000613d0f84828501613a65565b91505092915050565b600060208284031215613d2e57613d2d614f05565b5b6000613d3c84828501613a7a565b91505092915050565b60008060208385031215613d5c57613d5b614f05565b5b600083013567ffffffffffffffff811115613d7a57613d79614f00565b5b613d8685828601613abd565b92509250509250929050565b600060208284031215613da857613da7614f05565b5b6000613db684828501613b13565b91505092915050565b60008060408385031215613dd657613dd5614f05565b5b6000613de485828601613b13565b9250506020613df585828601613a3b565b9150509250929050565b60008060008060808587031215613e1957613e18614f05565b5b6000613e2787828801613b13565b9450506020613e3887828801613b13565b9350506040613e4987828801613a3b565b925050606085013567ffffffffffffffff811115613e6a57613e69614f00565b5b613e7687828801613a8f565b91505092959194509250565b613e8b81614bf0565b82525050565b613ea2613e9d82614bf0565b614d69565b82525050565b613eb181614c02565b82525050565b613ec081614c0e565b82525050565b613ed7613ed282614c0e565b614d7b565b82525050565b6000613ee882614a98565b613ef28185614aae565b9350613f02818560208601614c8a565b613f0b81614f0a565b840191505092915050565b6000613f2182614aa3565b613f2b8185614abf565b9350613f3b818560208601614c8a565b613f4481614f0a565b840191505092915050565b6000613f5a82614aa3565b613f648185614ad0565b9350613f74818560208601614c8a565b80840191505092915050565b60008154613f8d81614cbd565b613f978186614ad0565b94506001821660008114613fb25760018114613fc357613ff6565b60ff19831686528186019350613ff6565b613fcc85614a83565b60005b83811015613fee57815481890152600182019150602081019050613fcf565b838801955050505b50505092915050565b600061400c601883614abf565b915061401782614f28565b602082019050919050565b600061402f601083614abf565b915061403a82614f51565b602082019050919050565b6000614052601f83614abf565b915061405d82614f7a565b602082019050919050565b6000614075601c83614ad0565b915061408082614fa3565b601c82019050919050565b6000614098603283614abf565b91506140a382614fcc565b604082019050919050565b60006140bb602683614abf565b91506140c68261501b565b604082019050919050565b60006140de600c83614abf565b91506140e98261506a565b602082019050919050565b6000614101601c83614abf565b915061410c82615093565b602082019050919050565b6000614124602483614abf565b915061412f826150bc565b604082019050919050565b6000614147601983614abf565b91506141528261510b565b602082019050919050565b600061416a600c83614abf565b915061417582615134565b602082019050919050565b600061418d602283614abf565b91506141988261515d565b604082019050919050565b60006141b0600b83614abf565b91506141bb826151ac565b602082019050919050565b60006141d3602c83614abf565b91506141de826151d5565b604082019050919050565b60006141f6603883614abf565b915061420182615224565b604082019050919050565b6000614219602a83614abf565b915061422482615273565b604082019050919050565b600061423c602983614abf565b9150614247826152c2565b604082019050919050565b600061425f601283614abf565b915061426a82615311565b602082019050919050565b6000614282602283614abf565b915061428d8261533a565b604082019050919050565b60006142a5602083614abf565b91506142b082615389565b602082019050919050565b60006142c8602c83614abf565b91506142d3826153b2565b604082019050919050565b60006142eb600583614ad0565b91506142f682615401565b600582019050919050565b600061430e602083614abf565b91506143198261542a565b602082019050919050565b6000614331602983614abf565b915061433c82615453565b604082019050919050565b6000614354601f83614abf565b915061435f826154a2565b602082019050919050565b6000614377602183614abf565b9150614382826154cb565b604082019050919050565b600061439a600d83614abf565b91506143a58261551a565b602082019050919050565b60006143bd601383614abf565b91506143c882615543565b602082019050919050565b60006143e0603183614abf565b91506143eb8261556c565b604082019050919050565b6000614403601a83614abf565b915061440e826155bb565b602082019050919050565b6000614426601483614abf565b9150614431826155e4565b602082019050919050565b6000614449601083614abf565b91506144548261560d565b602082019050919050565b600061446c600e83614abf565b915061447782615636565b602082019050919050565b61448b81614c64565b82525050565b6144a261449d82614c64565b614d97565b82525050565b6144b181614c6e565b82525050565b60006144c38285613f80565b91506144cf8284613f4f565b91506144da826142de565b91508190509392505050565b60006144f182614068565b91506144fd8284613ec6565b60208201915081905092915050565b60006145188286614491565b6020820191506145288285613e91565b6014820191506145388284614491565b602082019150819050949350505050565b600060208201905061455e6000830184613e82565b92915050565b60006080820190506145796000830187613e82565b6145866020830186613e82565b6145936040830185614482565b81810360608301526145a58184613edd565b905095945050505050565b60006020820190506145c56000830184613ea8565b92915050565b60006080820190506145e06000830187613eb7565b6145ed60208301866144a8565b6145fa6040830185613eb7565b6146076060830184613eb7565b95945050505050565b6000602082019050818103600083015261462a8184613f16565b905092915050565b6000602082019050818103600083015261464b81613fff565b9050919050565b6000602082019050818103600083015261466b81614022565b9050919050565b6000602082019050818103600083015261468b81614045565b9050919050565b600060208201905081810360008301526146ab8161408b565b9050919050565b600060208201905081810360008301526146cb816140ae565b9050919050565b600060208201905081810360008301526146eb816140d1565b9050919050565b6000602082019050818103600083015261470b816140f4565b9050919050565b6000602082019050818103600083015261472b81614117565b9050919050565b6000602082019050818103600083015261474b8161413a565b9050919050565b6000602082019050818103600083015261476b8161415d565b9050919050565b6000602082019050818103600083015261478b81614180565b9050919050565b600060208201905081810360008301526147ab816141a3565b9050919050565b600060208201905081810360008301526147cb816141c6565b9050919050565b600060208201905081810360008301526147eb816141e9565b9050919050565b6000602082019050818103600083015261480b8161420c565b9050919050565b6000602082019050818103600083015261482b8161422f565b9050919050565b6000602082019050818103600083015261484b81614252565b9050919050565b6000602082019050818103600083015261486b81614275565b9050919050565b6000602082019050818103600083015261488b81614298565b9050919050565b600060208201905081810360008301526148ab816142bb565b9050919050565b600060208201905081810360008301526148cb81614301565b9050919050565b600060208201905081810360008301526148eb81614324565b9050919050565b6000602082019050818103600083015261490b81614347565b9050919050565b6000602082019050818103600083015261492b8161436a565b9050919050565b6000602082019050818103600083015261494b8161438d565b9050919050565b6000602082019050818103600083015261496b816143b0565b9050919050565b6000602082019050818103600083015261498b816143d3565b9050919050565b600060208201905081810360008301526149ab816143f6565b9050919050565b600060208201905081810360008301526149cb81614419565b9050919050565b600060208201905081810360008301526149eb8161443c565b9050919050565b60006020820190508181036000830152614a0b8161445f565b9050919050565b6000602082019050614a276000830184614482565b92915050565b6000614a37614a48565b9050614a438282614cef565b919050565b6000604051905090565b600067ffffffffffffffff821115614a6d57614a6c614ebd565b5b614a7682614f0a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ae682614c64565b9150614af183614c64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b2657614b25614dd2565b5b828201905092915050565b6000614b3c82614c64565b9150614b4783614c64565b925082614b5757614b56614e01565b5b828204905092915050565b6000614b6d82614c64565b9150614b7883614c64565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bb157614bb0614dd2565b5b828202905092915050565b6000614bc782614c64565b9150614bd283614c64565b925082821015614be557614be4614dd2565b5b828203905092915050565b6000614bfb82614c44565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614ca8578082015181840152602081019050614c8d565b83811115614cb7576000848401525b50505050565b60006002820490506001821680614cd557607f821691505b60208210811415614ce957614ce8614e5f565b5b50919050565b614cf882614f0a565b810181811067ffffffffffffffff82111715614d1757614d16614ebd565b5b80604052505050565b6000614d2b82614c64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d5e57614d5d614dd2565b5b600182019050919050565b6000614d7482614d85565b9050919050565b6000819050919050565b6000614d9082614f1b565b9050919050565b6000819050919050565b6000614dac82614c64565b9150614db783614c64565b925082614dc757614dc6614e01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4255524e5f49535f4e4f545f4c49564500000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e4f4e43455f414c52454144595f555345440000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4e4f545f414c4c4f5745445f544f5f4d494e5400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f544f4b454e5f544f5f4255524e5f4e4f545f42595f4f574e4552000000000000600082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b61566881614bf0565b811461567357600080fd5b50565b61567f81614c02565b811461568a57600080fd5b50565b61569681614c18565b81146156a157600080fd5b50565b6156ad81614c64565b81146156b857600080fd5b5056fea26469706673582212203fbaf9379ab4e84c198dd21e638d42bb32d11a319f081b4914aed12d29143dcf64736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370a0823111610144578063c87b56dd116100b6578063e423a5111161007a578063e423a5111461089b578063e72be68a146108c4578063e8a3d485146108ed578063e985e9c514610918578063ee37520b14610955578063f2fde38b1461096c57610267565b8063c87b56dd146107c8578063c9f9a72314610805578063cb908cce1461082e578063d1b85c5314610845578063e081b7811461087057610267565b806395d89b411161010857806395d89b41146106cc578063978528c0146106f7578063a22cb46514610720578063a4f8eaeb14610749578063b88d4fde14610774578063c30e76841461079d57610267565b806370a08231146105f9578063715018a61461063657806372bfb1af1461064d5780638da5cb5b14610678578063938e3d7b146106a357610267565b806335ef4fb7116101dd57806351830227116101a157806351830227146104f857806355f804b3146105235780635b0c52fd1461054c5780635ca5933a146105755780636352211e14610591578063676dd563146105ce57610267565b806335ef4fb71461044b57806339aba407146104765780633ccfd60b146104a157806342842e0e146104b857806345bcf17f146104e157610267565b806311084c971161022f57806311084c971461035157806318160ddd1461037a5780631bd98e72146103a557806323b872dd146103ce5780632cff9e06146103f75780633125ac6c1461042257610267565b806301ffc9a71461026c578063049c5c49146102a957806306fdde03146102c0578063081812fc146102eb578063095ea7b314610328575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613ceb565b610995565b6040516102a091906145b0565b60405180910390f35b3480156102b557600080fd5b506102be610a77565b005b3480156102cc57600080fd5b506102d5610b1f565b6040516102e29190614610565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d9190613d92565b610bb1565b60405161031f9190614549565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613cab565b610c36565b005b34801561035d57600080fd5b5061037860048036038101906103739190613dff565b610d4e565b005b34801561038657600080fd5b5061038f610f7c565b60405161039c9190614a12565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190613dbf565b610f82565b005b3480156103da57600080fd5b506103f560048036038101906103f09190613b95565b611144565b005b34801561040357600080fd5b5061040c6111a4565b60405161041991906145b0565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613d92565b6111b7565b005b34801561045757600080fd5b506104606112a4565b60405161046d9190614549565b60405180910390f35b34801561048257600080fd5b5061048b6112ca565b6040516104989190614a12565b60405180910390f35b3480156104ad57600080fd5b506104b66112d0565b005b3480156104c457600080fd5b506104df60048036038101906104da9190613b95565b61165f565b005b3480156104ed57600080fd5b506104f661167f565b005b34801561050457600080fd5b5061050d611727565b60405161051a91906145b0565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613d45565b61173a565b005b34801561055857600080fd5b50610573600480360381019061056e9190613d92565b6117cc565b005b61058f600480360381019061058a9190613dff565b611852565b005b34801561059d57600080fd5b506105b860048036038101906105b39190613d92565b611b0e565b6040516105c59190614549565b60405180910390f35b3480156105da57600080fd5b506105e3611bc0565b6040516105f09190614a12565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190613b28565b611bc6565b60405161062d9190614a12565b60405180910390f35b34801561064257600080fd5b5061064b611c7e565b005b34801561065957600080fd5b50610662611d06565b60405161066f9190614a12565b60405180910390f35b34801561068457600080fd5b5061068d611d0b565b60405161069a9190614549565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613d45565b611d35565b005b3480156106d857600080fd5b506106e1611dc7565b6040516106ee9190614610565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190613b28565b611e59565b005b34801561072c57600080fd5b5061074760048036038101906107429190613c6b565b611f19565b005b34801561075557600080fd5b5061075e611f2f565b60405161076b9190614610565b60405180910390f35b34801561078057600080fd5b5061079b60048036038101906107969190613be8565b611fbd565b005b3480156107a957600080fd5b506107b261201f565b6040516107bf9190614a12565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190613d92565b612025565b6040516107fc9190614610565b60405180910390f35b34801561081157600080fd5b5061082c60048036038101906108279190613d92565b612150565b005b34801561083a57600080fd5b50610843612243565b005b34801561085157600080fd5b5061085a6122eb565b60405161086791906145b0565b60405180910390f35b34801561087c57600080fd5b506108856122fe565b60405161089291906145b0565b60405180910390f35b3480156108a757600080fd5b506108c260048036038101906108bd9190613d92565b612311565b005b3480156108d057600080fd5b506108eb60048036038101906108e69190613d45565b612397565b005b3480156108f957600080fd5b50610902612429565b60405161090f9190614610565b60405180910390f35b34801561092457600080fd5b5061093f600480360381019061093a9190613b55565b6124bb565b60405161094c91906145b0565b60405180910390f35b34801561096157600080fd5b5061096a61254f565b005b34801561097857600080fd5b50610993600480360381019061098e9190613b28565b6125f7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750610a6f826126ef565b5b9050919050565b610a7f612759565b73ffffffffffffffffffffffffffffffffffffffff16610a9d611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea906148b2565b60405180910390fd5b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550565b606060008054610b2e90614cbd565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5a90614cbd565b8015610ba75780601f10610b7c57610100808354040283529160200191610ba7565b820191906000526020600020905b815481529060010190602001808311610b8a57829003601f168201915b5050505050905090565b6000610bbc82612761565b610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290614892565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c4182611b0e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca990614912565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd1612759565b73ffffffffffffffffffffffffffffffffffffffff161480610d005750610cff81610cfa612759565b6124bb565b5b610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d36906147d2565b60405180910390fd5b610d4983836127cd565b505050565b601560029054906101000a900460ff16610d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d94906149f2565b60405180910390fd5b600f5460165410610de3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dda90614752565b60405180910390fd5b600f5484601654610df49190614adb565b1115610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c90614932565b60405180910390fd5b600015156014600085815260200190815260200160002060009054906101000a900460ff16151514610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390614832565b60405180910390fd5b610eb0610eaa848487612886565b826128e7565b610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690614952565b60405180910390fd5b60016014600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015610f5c57610f4983600183601654610f3a9190614adb565b610f449190614adb565b61294b565b8080610f5490614d20565b915050610f1e565b508360166000828254610f6f9190614adb565b9250508190555050505050565b60165481565b610f8a612759565b73ffffffffffffffffffffffffffffffffffffffff16610fa8611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff5906148b2565b60405180910390fd5b601560029054906101000a900460ff1661104d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611044906149f2565b60405180910390fd5b600f5460165410611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90614752565b60405180910390fd5b600f54826016546110a49190614adb565b11156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906146d2565b60405180910390fd5b60005b8281101561112657611113826001836016546111049190614adb565b61110e9190614adb565b61294b565b808061111e90614d20565b9150506110e8565b5081601660008282546111399190614adb565b925050819055505050565b61115561114f612759565b82612969565b611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90614972565b60405180910390fd5b61119f838383612a47565b505050565b601560029054906101000a900460ff1681565b60011515601560039054906101000a900460ff1615151461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490614652565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661122d82611b0e565b73ffffffffffffffffffffffffffffffffffffffff1614611283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127a90614992565b60405180910390fd5b61128c81612ca3565b600160175461129b9190614adb565b60178190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646017846113209190614b62565b61132a9190614b31565b9081150290604051600060405180830381858888f19350505050158015611355573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646017846113a19190614b62565b6113ab9190614b31565b9081150290604051600060405180830381858888f193505050501580156113d6573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646017846114229190614b62565b61142c9190614b31565b9081150290604051600060405180830381858888f19350505050158015611457573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600f846114a39190614b62565b6114ad9190614b31565b9081150290604051600060405180830381858888f193505050501580156114d8573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646008846115249190614b62565b61152e9190614b31565b9081150290604051600060405180830381858888f19350505050158015611559573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646004846115a59190614b62565b6115af9190614b31565b9081150290604051600060405180830381858888f193505050501580156115da573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc60646004846116269190614b62565b6116309190614b31565b9081150290604051600060405180830381858888f1935050505015801561165b573d6000803e3d6000fd5b5050565b61167a83838360405180602001604052806000815250611fbd565b505050565b611687612759565b73ffffffffffffffffffffffffffffffffffffffff166116a5611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906148b2565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b601560009054906101000a900460ff1681565b611742612759565b73ffffffffffffffffffffffffffffffffffffffff16611760611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad906148b2565b60405180910390fd5b8181601291906117c7929190613956565b505050565b6117d4612759565b73ffffffffffffffffffffffffffffffffffffffff166117f2611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f906148b2565b60405180910390fd5b80600f8190555050565b601560019054906101000a900460ff166118a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189890614792565b60405180910390fd5b600f54601654106118e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118de90614752565b60405180910390fd5b600f54846016546118f89190614adb565b1115611939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611930906146d2565b60405180910390fd5b34846010546119489190614b62565b1115611989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611980906149d2565b60405180910390fd5b6014600084815260200190815260200160002060009054906101000a900460ff16156119ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e190614832565b60405180910390fd5b6002841115611a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a25906149b2565b60405180910390fd5b611a42611a3c848487612886565b826128e7565b611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614952565b60405180910390fd5b60016014600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015611aee57611adb33600183601654611acc9190614adb565b611ad69190614adb565b61294b565b8080611ae690614d20565b915050611ab0565b508360166000828254611b019190614adb565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae90614812565b60405180910390fd5b80915050919050565b60105481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906147f2565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611c86612759565b73ffffffffffffffffffffffffffffffffffffffff16611ca4611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf1906148b2565b60405180910390fd5b611d046000612db4565b565b600281565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d3d612759565b73ffffffffffffffffffffffffffffffffffffffff16611d5b611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614611db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da8906148b2565b60405180910390fd5b818160119190611dc2929190613956565b505050565b606060018054611dd690614cbd565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0290614cbd565b8015611e4f5780601f10611e2457610100808354040283529160200191611e4f565b820191906000526020600020905b815481529060010190602001808311611e3257829003601f168201915b5050505050905090565b611e61612759565b73ffffffffffffffffffffffffffffffffffffffff16611e7f611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc906148b2565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611f2b611f24612759565b8383612e7a565b5050565b60138054611f3c90614cbd565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6890614cbd565b8015611fb55780601f10611f8a57610100808354040283529160200191611fb5565b820191906000526020600020905b815481529060010190602001808311611f9857829003601f168201915b505050505081565b611fce611fc8612759565b83612969565b61200d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200490614972565b60405180910390fd5b61201984848484612fe7565b50505050565b600f5481565b606061203082612761565b61206f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612066906148f2565b60405180910390fd5b60001515601560009054906101000a900460ff161515141561211d576013805461209890614cbd565b80601f01602080910402602001604051908101604052809291908181526020018280546120c490614cbd565b80156121115780601f106120e657610100808354040283529160200191612111565b820191906000526020600020905b8154815290600101906020018083116120f457829003601f168201915b5050505050905061214b565b601261212883613043565b6040516020016121399291906144b7565b60405160208183030381529060405290505b919050565b612158612759565b73ffffffffffffffffffffffffffffffffffffffff16612176611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146121cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c3906148b2565b60405180910390fd5b60011515601560039054906101000a900460ff16151514612222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221990614652565b60405180910390fd5b61222b81612ca3565b600160175461223a9190614adb565b60178190555050565b61224b612759565b73ffffffffffffffffffffffffffffffffffffffff16612269611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b6906148b2565b60405180910390fd5b601560029054906101000a900460ff1615601560026101000a81548160ff021916908315150217905550565b601560039054906101000a900460ff1681565b601560019054906101000a900460ff1681565b612319612759565b73ffffffffffffffffffffffffffffffffffffffff16612337611d0b565b73ffffffffffffffffffffffffffffffffffffffff161461238d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612384906148b2565b60405180910390fd5b8060108190555050565b61239f612759565b73ffffffffffffffffffffffffffffffffffffffff166123bd611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a906148b2565b60405180910390fd5b818160139190612424929190613956565b505050565b60606011805461243890614cbd565b80601f016020809104026020016040519081016040528092919081815260200182805461246490614cbd565b80156124b15780601f10612486576101008083540402835291602001916124b1565b820191906000526020600020905b81548152906001019060200180831161249457829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612557612759565b73ffffffffffffffffffffffffffffffffffffffff16612575611d0b565b73ffffffffffffffffffffffffffffffffffffffff16146125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c2906148b2565b60405180910390fd5b601560039054906101000a900460ff1615601560036101000a81548160ff021916908315150217905550565b6125ff612759565b73ffffffffffffffffffffffffffffffffffffffff1661261d611d0b565b73ffffffffffffffffffffffffffffffffffffffff1614612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a906148b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126da906146b2565b60405180910390fd5b6126ec81612db4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661284083611b0e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008084848460405160200161289e9392919061450c565b604051602081830303815290604052805190602001206040516020016128c491906144e6565b604051602081830303815290604052805190602001209050809150509392505050565b60006128f383836131a4565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6129658282604051806020016040528060008152506131cb565b5050565b600061297482612761565b6129b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129aa906147b2565b60405180910390fd5b60006129be83611b0e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a2d57508373ffffffffffffffffffffffffffffffffffffffff16612a1584610bb1565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a3e5750612a3d81856124bb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a6782611b0e565b73ffffffffffffffffffffffffffffffffffffffff1614612abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab4906148d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2490614712565b60405180910390fd5b612b38838383613226565b612b436000826127cd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b939190614bbc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bea9190614adb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612cae82611b0e565b9050612cbc81600084613226565b612cc76000836127cd565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d179190614bbc565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee090614732565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fda91906145b0565b60405180910390a3505050565b612ff2848484612a47565b612ffe8484848461322b565b61303d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303490614692565b60405180910390fd5b50505050565b6060600082141561308b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061319f565b600082905060005b600082146130bd5780806130a690614d20565b915050600a826130b69190614b31565b9150613093565b60008167ffffffffffffffff8111156130d9576130d8614ebd565b5b6040519080825280601f01601f19166020018201604052801561310b5781602001600182028036833780820191505090505b5090505b60008514613198576001826131249190614bbc565b9150600a856131339190614da1565b603061313f9190614adb565b60f81b81838151811061315557613154614e8e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131919190614b31565b945061310f565b8093505050505b919050565b60008060006131b385856133c2565b915091506131c081613445565b819250505092915050565b6131d5838361361a565b6131e2600084848461322b565b613221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321890614692565b60405180910390fd5b505050565b505050565b600061324c8473ffffffffffffffffffffffffffffffffffffffff166137e8565b156133b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613275612759565b8786866040518563ffffffff1660e01b81526004016132979493929190614564565b602060405180830381600087803b1580156132b157600080fd5b505af19250505080156132e257506040513d601f19601f820116820180604052508101906132df9190613d18565b60015b613365573d8060008114613312576040519150601f19603f3d011682016040523d82523d6000602084013e613317565b606091505b5060008151141561335d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335490614692565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133ba565b600190505b949350505050565b6000806041835114156134045760008060006020860151925060408601519150606086015160001a90506133f8878285856137fb565b9450945050505061343e565b60408351141561343557600080602085015191506040850151905061342a868383613908565b93509350505061343e565b60006002915091505b9250929050565b6000600481111561345957613458614e30565b5b81600481111561346c5761346b614e30565b5b141561347757613617565b6001600481111561348b5761348a614e30565b5b81600481111561349e5761349d614e30565b5b14156134df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d690614632565b60405180910390fd5b600260048111156134f3576134f2614e30565b5b81600481111561350657613505614e30565b5b1415613547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353e90614672565b60405180910390fd5b6003600481111561355b5761355a614e30565b5b81600481111561356e5761356d614e30565b5b14156135af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a690614772565b60405180910390fd5b6004808111156135c2576135c1614e30565b5b8160048111156135d5576135d4614e30565b5b1415613616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360d90614852565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561368a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161368190614872565b60405180910390fd5b61369381612761565b156136d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136ca906146f2565b60405180910390fd5b6136df60008383613226565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461372f9190614adb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156138365760006003915091506138ff565b601b8560ff161415801561384e5750601c8560ff1614155b156138605760006004915091506138ff565b60006001878787876040516000815260200160405260405161388594939291906145cb565b6020604051602081039080840390855afa1580156138a7573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156138f6576000600192509250506138ff565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613948878288856137fb565b935093505050935093915050565b82805461396290614cbd565b90600052602060002090601f01602090048101928261398457600085556139cb565b82601f1061399d57803560ff19168380011785556139cb565b828001600101855582156139cb579182015b828111156139ca5782358255916020019190600101906139af565b5b5090506139d891906139dc565b5090565b5b808211156139f55760008160009055506001016139dd565b5090565b6000613a0c613a0784614a52565b614a2d565b905082815260208101848484011115613a2857613a27614efb565b5b613a33848285614c7b565b509392505050565b600081359050613a4a8161565f565b92915050565b600081359050613a5f81615676565b92915050565b600081359050613a748161568d565b92915050565b600081519050613a898161568d565b92915050565b600082601f830112613aa457613aa3614ef1565b5b8135613ab48482602086016139f9565b91505092915050565b60008083601f840112613ad357613ad2614ef1565b5b8235905067ffffffffffffffff811115613af057613aef614eec565b5b602083019150836001820283011115613b0c57613b0b614ef6565b5b9250929050565b600081359050613b22816156a4565b92915050565b600060208284031215613b3e57613b3d614f05565b5b6000613b4c84828501613a3b565b91505092915050565b60008060408385031215613b6c57613b6b614f05565b5b6000613b7a85828601613a3b565b9250506020613b8b85828601613a3b565b9150509250929050565b600080600060608486031215613bae57613bad614f05565b5b6000613bbc86828701613a3b565b9350506020613bcd86828701613a3b565b9250506040613bde86828701613b13565b9150509250925092565b60008060008060808587031215613c0257613c01614f05565b5b6000613c1087828801613a3b565b9450506020613c2187828801613a3b565b9350506040613c3287828801613b13565b925050606085013567ffffffffffffffff811115613c5357613c52614f00565b5b613c5f87828801613a8f565b91505092959194509250565b60008060408385031215613c8257613c81614f05565b5b6000613c9085828601613a3b565b9250506020613ca185828601613a50565b9150509250929050565b60008060408385031215613cc257613cc1614f05565b5b6000613cd085828601613a3b565b9250506020613ce185828601613b13565b9150509250929050565b600060208284031215613d0157613d00614f05565b5b6000613d0f84828501613a65565b91505092915050565b600060208284031215613d2e57613d2d614f05565b5b6000613d3c84828501613a7a565b91505092915050565b60008060208385031215613d5c57613d5b614f05565b5b600083013567ffffffffffffffff811115613d7a57613d79614f00565b5b613d8685828601613abd565b92509250509250929050565b600060208284031215613da857613da7614f05565b5b6000613db684828501613b13565b91505092915050565b60008060408385031215613dd657613dd5614f05565b5b6000613de485828601613b13565b9250506020613df585828601613a3b565b9150509250929050565b60008060008060808587031215613e1957613e18614f05565b5b6000613e2787828801613b13565b9450506020613e3887828801613b13565b9350506040613e4987828801613a3b565b925050606085013567ffffffffffffffff811115613e6a57613e69614f00565b5b613e7687828801613a8f565b91505092959194509250565b613e8b81614bf0565b82525050565b613ea2613e9d82614bf0565b614d69565b82525050565b613eb181614c02565b82525050565b613ec081614c0e565b82525050565b613ed7613ed282614c0e565b614d7b565b82525050565b6000613ee882614a98565b613ef28185614aae565b9350613f02818560208601614c8a565b613f0b81614f0a565b840191505092915050565b6000613f2182614aa3565b613f2b8185614abf565b9350613f3b818560208601614c8a565b613f4481614f0a565b840191505092915050565b6000613f5a82614aa3565b613f648185614ad0565b9350613f74818560208601614c8a565b80840191505092915050565b60008154613f8d81614cbd565b613f978186614ad0565b94506001821660008114613fb25760018114613fc357613ff6565b60ff19831686528186019350613ff6565b613fcc85614a83565b60005b83811015613fee57815481890152600182019150602081019050613fcf565b838801955050505b50505092915050565b600061400c601883614abf565b915061401782614f28565b602082019050919050565b600061402f601083614abf565b915061403a82614f51565b602082019050919050565b6000614052601f83614abf565b915061405d82614f7a565b602082019050919050565b6000614075601c83614ad0565b915061408082614fa3565b601c82019050919050565b6000614098603283614abf565b91506140a382614fcc565b604082019050919050565b60006140bb602683614abf565b91506140c68261501b565b604082019050919050565b60006140de600c83614abf565b91506140e98261506a565b602082019050919050565b6000614101601c83614abf565b915061410c82615093565b602082019050919050565b6000614124602483614abf565b915061412f826150bc565b604082019050919050565b6000614147601983614abf565b91506141528261510b565b602082019050919050565b600061416a600c83614abf565b915061417582615134565b602082019050919050565b600061418d602283614abf565b91506141988261515d565b604082019050919050565b60006141b0600b83614abf565b91506141bb826151ac565b602082019050919050565b60006141d3602c83614abf565b91506141de826151d5565b604082019050919050565b60006141f6603883614abf565b915061420182615224565b604082019050919050565b6000614219602a83614abf565b915061422482615273565b604082019050919050565b600061423c602983614abf565b9150614247826152c2565b604082019050919050565b600061425f601283614abf565b915061426a82615311565b602082019050919050565b6000614282602283614abf565b915061428d8261533a565b604082019050919050565b60006142a5602083614abf565b91506142b082615389565b602082019050919050565b60006142c8602c83614abf565b91506142d3826153b2565b604082019050919050565b60006142eb600583614ad0565b91506142f682615401565b600582019050919050565b600061430e602083614abf565b91506143198261542a565b602082019050919050565b6000614331602983614abf565b915061433c82615453565b604082019050919050565b6000614354601f83614abf565b915061435f826154a2565b602082019050919050565b6000614377602183614abf565b9150614382826154cb565b604082019050919050565b600061439a600d83614abf565b91506143a58261551a565b602082019050919050565b60006143bd601383614abf565b91506143c882615543565b602082019050919050565b60006143e0603183614abf565b91506143eb8261556c565b604082019050919050565b6000614403601a83614abf565b915061440e826155bb565b602082019050919050565b6000614426601483614abf565b9150614431826155e4565b602082019050919050565b6000614449601083614abf565b91506144548261560d565b602082019050919050565b600061446c600e83614abf565b915061447782615636565b602082019050919050565b61448b81614c64565b82525050565b6144a261449d82614c64565b614d97565b82525050565b6144b181614c6e565b82525050565b60006144c38285613f80565b91506144cf8284613f4f565b91506144da826142de565b91508190509392505050565b60006144f182614068565b91506144fd8284613ec6565b60208201915081905092915050565b60006145188286614491565b6020820191506145288285613e91565b6014820191506145388284614491565b602082019150819050949350505050565b600060208201905061455e6000830184613e82565b92915050565b60006080820190506145796000830187613e82565b6145866020830186613e82565b6145936040830185614482565b81810360608301526145a58184613edd565b905095945050505050565b60006020820190506145c56000830184613ea8565b92915050565b60006080820190506145e06000830187613eb7565b6145ed60208301866144a8565b6145fa6040830185613eb7565b6146076060830184613eb7565b95945050505050565b6000602082019050818103600083015261462a8184613f16565b905092915050565b6000602082019050818103600083015261464b81613fff565b9050919050565b6000602082019050818103600083015261466b81614022565b9050919050565b6000602082019050818103600083015261468b81614045565b9050919050565b600060208201905081810360008301526146ab8161408b565b9050919050565b600060208201905081810360008301526146cb816140ae565b9050919050565b600060208201905081810360008301526146eb816140d1565b9050919050565b6000602082019050818103600083015261470b816140f4565b9050919050565b6000602082019050818103600083015261472b81614117565b9050919050565b6000602082019050818103600083015261474b8161413a565b9050919050565b6000602082019050818103600083015261476b8161415d565b9050919050565b6000602082019050818103600083015261478b81614180565b9050919050565b600060208201905081810360008301526147ab816141a3565b9050919050565b600060208201905081810360008301526147cb816141c6565b9050919050565b600060208201905081810360008301526147eb816141e9565b9050919050565b6000602082019050818103600083015261480b8161420c565b9050919050565b6000602082019050818103600083015261482b8161422f565b9050919050565b6000602082019050818103600083015261484b81614252565b9050919050565b6000602082019050818103600083015261486b81614275565b9050919050565b6000602082019050818103600083015261488b81614298565b9050919050565b600060208201905081810360008301526148ab816142bb565b9050919050565b600060208201905081810360008301526148cb81614301565b9050919050565b600060208201905081810360008301526148eb81614324565b9050919050565b6000602082019050818103600083015261490b81614347565b9050919050565b6000602082019050818103600083015261492b8161436a565b9050919050565b6000602082019050818103600083015261494b8161438d565b9050919050565b6000602082019050818103600083015261496b816143b0565b9050919050565b6000602082019050818103600083015261498b816143d3565b9050919050565b600060208201905081810360008301526149ab816143f6565b9050919050565b600060208201905081810360008301526149cb81614419565b9050919050565b600060208201905081810360008301526149eb8161443c565b9050919050565b60006020820190508181036000830152614a0b8161445f565b9050919050565b6000602082019050614a276000830184614482565b92915050565b6000614a37614a48565b9050614a438282614cef565b919050565b6000604051905090565b600067ffffffffffffffff821115614a6d57614a6c614ebd565b5b614a7682614f0a565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ae682614c64565b9150614af183614c64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b2657614b25614dd2565b5b828201905092915050565b6000614b3c82614c64565b9150614b4783614c64565b925082614b5757614b56614e01565b5b828204905092915050565b6000614b6d82614c64565b9150614b7883614c64565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bb157614bb0614dd2565b5b828202905092915050565b6000614bc782614c64565b9150614bd283614c64565b925082821015614be557614be4614dd2565b5b828203905092915050565b6000614bfb82614c44565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614ca8578082015181840152602081019050614c8d565b83811115614cb7576000848401525b50505050565b60006002820490506001821680614cd557607f821691505b60208210811415614ce957614ce8614e5f565b5b50919050565b614cf882614f0a565b810181811067ffffffffffffffff82111715614d1757614d16614ebd565b5b80604052505050565b6000614d2b82614c64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d5e57614d5d614dd2565b5b600182019050919050565b6000614d7482614d85565b9050919050565b6000819050919050565b6000614d9082614f1b565b9050919050565b6000819050919050565b6000614dac82614c64565b9150614db783614c64565b925082614dc757614dc6614e01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f4255524e5f49535f4e4f545f4c49564500000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f53544f434b0000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f55545f4f465f53544f434b0000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f53414c455f434c4f534544000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e4f4e43455f414c52454144595f555345440000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4558434545445f5055424c494300000000000000000000000000000000000000600082015250565b7f4e4f545f414c4c4f5745445f544f5f4d494e5400000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f544f4b454e5f544f5f4255524e5f4e4f545f42595f4f574e4552000000000000600082015250565b7f4558434545445f4e4654535f5045525f4d494e54000000000000000000000000600082015250565b7f494e53554646494349454e545f45544800000000000000000000000000000000600082015250565b7f47494654494e475f434c4f534544000000000000000000000000000000000000600082015250565b61566881614bf0565b811461567357600080fd5b50565b61567f81614c02565b811461568a57600080fd5b50565b61569681614c18565b81146156a157600080fd5b50565b6156ad81614c64565b81146156b857600080fd5b5056fea26469706673582212203fbaf9379ab4e84c198dd21e638d42bb32d11a319f081b4914aed12d29143dcf64736f6c63430008060033

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.