ETH Price: $2,392.07 (+2.87%)

Token

Sadboyz (SADBOYZ)
 

Overview

Max Total Supply

2,764 SADBOYZ

Holders

1,447

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 SADBOYZ
0x757446e8b661b270c28a8c41175c53bde8bb98f2
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:
SADBOYZ

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : sadboyz.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

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

    address public signer = 0x1A4F425a9CC14D804a914091896D3048659aC422;
    address private wallet1 = 0x667b439839d1c3185199Fddb786ec0e6e355f443;
    address private wallet2 = 0x8fA1674824e49C3486e0da0cF676592a06e51643;
    address private wallet3 = 0x713eeD92d42dF88AB85934E7156aCDC47b9968C4;
    address private wallet4 = 0xE9583749652dbCb039F2FeA69A4ac7f5E143E063;
    address private wallet5 = 0xc3d89B91C5a019c768c3C00BcBE62f7faE52870B;
    address private wallet6 = 0x7810509E4C33c397BC64CE025d0B25cD807836a9; // 2.5%
    uint256 public nftSupply = 7777;
    uint256 public nftPrice = 0.11 ether;
    uint256 public maxNftPerBuy = 10;
    bool public revealed;
    bool public saleLive = true;
    bool public giftLive = true;
    bool public burnLive;
    string private _contractURI;
    string private _tokenBaseURI;
    string private _mysteryURI =
        "https://gateway.pinata.cloud/ipfs/QmSXUb1PDpWfo5fQDsj21JJeRjR4rwmgVV99KZv9er4woy/1.json";
    uint256 public totalSupply;
    uint256 public totalBurnedSupply;
    mapping(uint256 => bool) private usedNonce;

    constructor() ERC721("Sadboyz", "SADBOYZ") {}

    function mintGiftOwner(uint256 tokenQuantity, address wallet)
        external
        onlyOwner
    {
        require(giftLive, "Gifting closed");
        require(totalSupply + tokenQuantity <= nftSupply, "Exceed NFT supply");
        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(wallet, totalSupply + i + 1);
        }
        totalSupply += tokenQuantity;
    }

    function mintGiftUser(
        uint256 tokenQuantity,
        uint256 nonce,
        address wallet,
        bytes memory signature
    ) external {
        require(giftLive, "Gifting Closed");
        require(totalSupply + tokenQuantity <= nftSupply, "Exceed NFT supply");
        require(usedNonce[nonce] == false, "Nonce Used");
        require(
            matchSigner(
                hashTransaction(nonce, wallet, tokenQuantity),
                signature
            ),
            "Not allowed to mint"
        );
        usedNonce[nonce] = true;
        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 is closed");
        require(nftPrice * tokenQuantity <= msg.value, "Wrong price");
        require(totalSupply + tokenQuantity <= nftSupply, "Exceed NFT supply");
        require(tokenQuantity <= maxNftPerBuy, "Exceed max to mint");
        require(!usedNonce[nonce], "Nonce used");
        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 signer == ECDSA.recover(hash, signature);
    }

    function withdraw() external {
        uint256 currentBalance = address(this).balance;
        payable(wallet1).transfer((currentBalance * 195) / 1000);
        payable(wallet2).transfer((currentBalance * 195) / 1000);
        payable(wallet3).transfer((currentBalance * 195) / 1000);
        payable(wallet4).transfer((currentBalance * 195) / 1000);
        payable(wallet5).transfer((currentBalance * 195) / 1000);
        payable(wallet6).transfer((currentBalance * 25) / 1000);
    }

    function burnMintUser(uint256 _tokenId) public {
        require(burnLive == true, "Burn is not live");
        require(ownerOf(_tokenId) == msg.sender, "Owner is not burning");
        _burn(_tokenId);
        totalBurnedSupply = totalBurnedSupply + 1;
    }

    function burnMintOwner(uint256 _tokenId) public onlyOwner {
        require(burnLive == true, "Burn is not live");
        _burn(_tokenId);
        totalBurnedSupply = totalBurnedSupply + 1;
    }

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

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

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

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

    function setSigner(address wallet) public onlyOwner {
        signer = wallet;
    }

    function setMaxNftPerBuy(uint256 maxPer) external onlyOwner {
        maxNftPerBuy = maxPer;
    }

    function setPriceOfNft(uint256 price) external onlyOwner {
        nftPrice = price;
    }

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

    function setTotalSupply(uint256 max) external onlyOwner {
        nftSupply = max;
    }

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

    function setContractUri(string calldata URI) external onlyOwner {
        _contractURI = 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 : 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 3 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 4 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 5 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 6 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 7 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 8 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 9 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 10 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 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":[{"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":"burnMintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnMintUser","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":[],"name":"maxNftPerBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"wallet","type":"address"}],"name":"mintGiftOwner","outputs":[],"stateMutability":"nonpayable","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":"mintGiftUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"maxPer","type":"uint256"}],"name":"setMaxNftPerBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setMysteryUri","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":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052731a4f425a9cc14d804a914091896d3048659ac422600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073667b439839d1c3185199fddb786ec0e6e355f443600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738fa1674824e49c3486e0da0cf676592a06e51643600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073713eed92d42df88ab85934e7156acdc47b9968c4600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e9583749652dbcb039f2fea69a4ac7f5e143e063600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c3d89b91c5a019c768c3c00bcbe62f7fae52870b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737810509e4c33c397bc64ce025d0b25cd807836a9600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611e61600e55670186cc6acd4b0000600f55600a6010556001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555060405180608001604052806057815260200162005b396057913960149080519060200190620002d592919062000478565b50348015620002e357600080fd5b506040518060400160405280600781526020017f536164626f797a000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f534144424f595a0000000000000000000000000000000000000000000000000081525081600090805190602001906200036892919062000478565b5080600190805190602001906200038192919062000478565b505050620003a462000398620003aa60201b60201c565b620003b260201b60201c565b6200058d565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620004869062000528565b90600052602060002090601f016020900481019282620004aa5760008555620004f6565b82601f10620004c557805160ff1916838001178555620004f6565b82800160010185558215620004f6579182015b82811115620004f5578251825591602001919060010190620004d8565b5b50905062000505919062000509565b5090565b5b80821115620005245760008160009055506001016200050a565b5090565b600060028204905060018216806200054157607f821691505b602082108114156200055857620005576200055e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61559c806200059d6000396000f3fe6080604052600436106102675760003560e01c806370169b7f11610144578063cb908cce116100b6578063e8a3d4851161007a578063e8a3d48514610899578063e985e9c5146108c4578063ee37520b14610901578063f2fde38b14610918578063f7b9a72b14610941578063f7ea7a3d1461096a57610267565b8063cb908cce146107da578063ccb4807b146107f1578063d1b85c531461081a578063e06f63bb14610845578063e081b7811461086e57610267565b806395d89b411161010857806395d89b41146106ce578063a0bcfc7f146106f9578063a22cb46514610722578063b10b51121461074b578063b88d4fde14610774578063c87b56dd1461079d57610267565b806370169b7f1461060f57806370a0823114610638578063715018a6146106755780637f441e221461068c5780638da5cb5b146106a357610267565b8063238ac933116101dd57806342842e0e116101a157806342842e0e1461051057806351830227146105395780635ca5933a146105645780636352211e1461058057806367f029c2146105bd5780636c19e783146105e657610267565b8063238ac9331461044f57806323b872dd1461047a5780632cff9e06146104a357806339aba407146104ce5780633ccfd60b146104f957610267565b8063081812fc1161022f578063081812fc1461033f578063095ea7b31461037c5780630d39fc81146103a5578063143e7d49146103d057806318160ddd146103fb57806321a543c21461042657610267565b806301790e011461026c57806301ffc9a714610297578063049c5c49146102d45780630680a0e9146102eb57806306fdde0314610314575b600080fd5b34801561027857600080fd5b50610281610993565b60405161028e91906148bd565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190613b96565b610999565b6040516102cb919061445b565b60405180910390f35b3480156102e057600080fd5b506102e9610a7b565b005b3480156102f757600080fd5b50610312600480360381019061030d9190613caa565b610b23565b005b34801561032057600080fd5b50610329610d0b565b60405161033691906144bb565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190613c3d565b610d9d565b60405161037391906143f4565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190613b56565b610e22565b005b3480156103b157600080fd5b506103ba610f3a565b6040516103c791906148bd565b60405180910390f35b3480156103dc57600080fd5b506103e5610f40565b6040516103f291906148bd565b60405180910390f35b34801561040757600080fd5b50610410610f46565b60405161041d91906148bd565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190613c3d565b610f4c565b005b34801561045b57600080fd5b5061046461103f565b60405161047191906143f4565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613a40565b611065565b005b3480156104af57600080fd5b506104b86110c5565b6040516104c5919061445b565b60405180910390f35b3480156104da57600080fd5b506104e36110d8565b6040516104f091906148bd565b60405180910390f35b34801561050557600080fd5b5061050e6110de565b005b34801561051c57600080fd5b5061053760048036038101906105329190613a40565b6113f2565b005b34801561054557600080fd5b5061054e611412565b60405161055b919061445b565b60405180910390f35b61057e60048036038101906105799190613caa565b611425565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613c3d565b61169c565b6040516105b491906143f4565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df9190613c3d565b61174e565b005b3480156105f257600080fd5b5061060d600480360381019061060891906139d3565b6117d4565b005b34801561061b57600080fd5b5061063660048036038101906106319190613c3d565b611894565b005b34801561064457600080fd5b5061065f600480360381019061065a91906139d3565b611981565b60405161066c91906148bd565b60405180910390f35b34801561068157600080fd5b5061068a611a39565b005b34801561069857600080fd5b506106a1611ac1565b005b3480156106af57600080fd5b506106b8611b69565b6040516106c591906143f4565b60405180910390f35b3480156106da57600080fd5b506106e3611b93565b6040516106f091906144bb565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190613bf0565b611c25565b005b34801561072e57600080fd5b5061074960048036038101906107449190613b16565b611cb7565b005b34801561075757600080fd5b50610772600480360381019061076d9190613c6a565b611ccd565b005b34801561078057600080fd5b5061079b60048036038101906107969190613a93565b611e49565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190613c3d565b611eab565b6040516107d191906144bb565b60405180910390f35b3480156107e657600080fd5b506107ef611fd6565b005b3480156107fd57600080fd5b5061081860048036038101906108139190613bf0565b61207e565b005b34801561082657600080fd5b5061082f612110565b60405161083c919061445b565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190613bf0565b612123565b005b34801561087a57600080fd5b506108836121b5565b604051610890919061445b565b60405180910390f35b3480156108a557600080fd5b506108ae6121c8565b6040516108bb91906144bb565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613a00565b61225a565b6040516108f8919061445b565b60405180910390f35b34801561090d57600080fd5b506109166122ee565b005b34801561092457600080fd5b5061093f600480360381019061093a91906139d3565b612396565b005b34801561094d57600080fd5b5061096860048036038101906109639190613c3d565b61248e565b005b34801561097657600080fd5b50610991600480360381019061098c9190613c3d565b612514565b005b600e5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a745750610a738261259a565b5b9050919050565b610a83612604565b73ffffffffffffffffffffffffffffffffffffffff16610aa1611b69565b73ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee906147dd565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b601160029054906101000a900460ff16610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b699061479d565b60405180910390fd5b600e5484601554610b839190614986565b1115610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb906145dd565b60405180910390fd5b600015156017600085815260200190815260200160002060009054906101000a900460ff16151514610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c229061455d565b60405180910390fd5b610c3f610c3984848761260c565b8261266d565b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c759061477d565b60405180910390fd5b60016017600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015610ceb57610cd883600183601554610cc99190614986565b610cd39190614986565b6126d1565b8080610ce390614bcb565b915050610cad565b508360156000828254610cfe9190614986565b9250508190555050505050565b606060008054610d1a90614b68565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4690614b68565b8015610d935780601f10610d6857610100808354040283529160200191610d93565b820191906000526020600020905b815481529060010190602001808311610d7657829003601f168201915b5050505050905090565b6000610da8826126ef565b610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906147bd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e2d8261169c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e959061485d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ebd612604565b73ffffffffffffffffffffffffffffffffffffffff161480610eec5750610eeb81610ee6612604565b61225a565b5b610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f229061469d565b60405180910390fd5b610f35838361275b565b505050565b600f5481565b60105481565b60155481565b610f54612604565b73ffffffffffffffffffffffffffffffffffffffff16610f72611b69565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906147dd565b60405180910390fd5b60011515601160039054906101000a900460ff1615151461101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906146bd565b60405180910390fd5b61102781612814565b60016016546110369190614986565b60168190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611076611070612604565b82612925565b6110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac9061487d565b60405180910390fd5b6110c0838383612a03565b505050565b601160029054906101000a900460ff1681565b60165481565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c38461112f9190614a0d565b61113991906149dc565b9081150290604051600060405180830381858888f19350505050158015611164573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c3846111b19190614a0d565b6111bb91906149dc565b9081150290604051600060405180830381858888f193505050501580156111e6573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c3846112339190614a0d565b61123d91906149dc565b9081150290604051600060405180830381858888f19350505050158015611268573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c3846112b59190614a0d565b6112bf91906149dc565b9081150290604051600060405180830381858888f193505050501580156112ea573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c3846113379190614a0d565b61134191906149dc565b9081150290604051600060405180830381858888f1935050505015801561136c573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86019846113b99190614a0d565b6113c391906149dc565b9081150290604051600060405180830381858888f193505050501580156113ee573d6000803e3d6000fd5b5050565b61140d83838360405180602001604052806000815250611e49565b505050565b601160009054906101000a900460ff1681565b601160019054906101000a900460ff16611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b906144fd565b60405180910390fd5b3484600f546114839190614a0d565b11156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb9061481d565b60405180910390fd5b600e54846015546114d59190614986565b1115611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d906145dd565b60405180910390fd5b60105484111561155b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115529061489d565b60405180910390fd5b6017600084815260200190815260200160002060009054906101000a900460ff16156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b39061451d565b60405180910390fd5b6115d06115ca84848761260c565b8261266d565b61160f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116069061477d565b60405180910390fd5b60016017600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8481101561167c576116693360018360155461165a9190614986565b6116649190614986565b6126d1565b808061167490614bcb565b91505061163e565b50836015600082825461168f9190614986565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c906146fd565b60405180910390fd5b80915050919050565b611756612604565b73ffffffffffffffffffffffffffffffffffffffff16611774611b69565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c1906147dd565b60405180910390fd5b8060108190555050565b6117dc612604565b73ffffffffffffffffffffffffffffffffffffffff166117fa611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611847906147dd565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60011515601160039054906101000a900460ff161515146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e1906146bd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661190a8261169c565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061467d565b60405180910390fd5b61196981612814565b60016016546119789190614986565b60168190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906146dd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a41612604565b73ffffffffffffffffffffffffffffffffffffffff16611a5f611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906147dd565b60405180910390fd5b611abf6000612c5f565b565b611ac9612604565b73ffffffffffffffffffffffffffffffffffffffff16611ae7611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b34906147dd565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ba290614b68565b80601f0160208091040260200160405190810160405280929190818152602001828054611bce90614b68565b8015611c1b5780601f10611bf057610100808354040283529160200191611c1b565b820191906000526020600020905b815481529060010190602001808311611bfe57829003601f168201915b5050505050905090565b611c2d612604565b73ffffffffffffffffffffffffffffffffffffffff16611c4b611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c98906147dd565b60405180910390fd5b818160139190611cb2929190613801565b505050565b611cc9611cc2612604565b8383612d25565b5050565b611cd5612604565b73ffffffffffffffffffffffffffffffffffffffff16611cf3611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d40906147dd565b60405180910390fd5b601160029054906101000a900460ff16611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f9061471d565b60405180910390fd5b600e5482601554611da99190614986565b1115611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de1906145dd565b60405180910390fd5b60005b82811015611e2b57611e1882600183601554611e099190614986565b611e139190614986565b6126d1565b8080611e2390614bcb565b915050611ded565b508160156000828254611e3e9190614986565b925050819055505050565b611e5a611e54612604565b83612925565b611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e909061487d565b60405180910390fd5b611ea584848484612e92565b50505050565b6060611eb6826126ef565b611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec9061483d565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611fa35760148054611f1e90614b68565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4a90614b68565b8015611f975780601f10611f6c57610100808354040283529160200191611f97565b820191906000526020600020905b815481529060010190602001808311611f7a57829003601f168201915b50505050509050611fd1565b6013611fae83612eee565b604051602001611fbf929190614362565b60405160208183030381529060405290505b919050565b611fde612604565b73ffffffffffffffffffffffffffffffffffffffff16611ffc611b69565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906147dd565b60405180910390fd5b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b612086612604565b73ffffffffffffffffffffffffffffffffffffffff166120a4611b69565b73ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906147dd565b60405180910390fd5b81816012919061210b929190613801565b505050565b601160039054906101000a900460ff1681565b61212b612604565b73ffffffffffffffffffffffffffffffffffffffff16612149611b69565b73ffffffffffffffffffffffffffffffffffffffff161461219f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612196906147dd565b60405180910390fd5b8181601491906121b0929190613801565b505050565b601160019054906101000a900460ff1681565b6060601280546121d790614b68565b80601f016020809104026020016040519081016040528092919081815260200182805461220390614b68565b80156122505780601f1061222557610100808354040283529160200191612250565b820191906000526020600020905b81548152906001019060200180831161223357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122f6612604565b73ffffffffffffffffffffffffffffffffffffffff16612314611b69565b73ffffffffffffffffffffffffffffffffffffffff161461236a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612361906147dd565b60405180910390fd5b601160039054906101000a900460ff1615601160036101000a81548160ff021916908315150217905550565b61239e612604565b73ffffffffffffffffffffffffffffffffffffffff166123bc611b69565b73ffffffffffffffffffffffffffffffffffffffff1614612412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612409906147dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124799061459d565b60405180910390fd5b61248b81612c5f565b50565b612496612604565b73ffffffffffffffffffffffffffffffffffffffff166124b4611b69565b73ffffffffffffffffffffffffffffffffffffffff161461250a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612501906147dd565b60405180910390fd5b80600f8190555050565b61251c612604565b73ffffffffffffffffffffffffffffffffffffffff1661253a611b69565b73ffffffffffffffffffffffffffffffffffffffff1614612590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612587906147dd565b60405180910390fd5b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600080848484604051602001612624939291906143b7565b6040516020818303038152906040528051906020012060405160200161264a9190614391565b604051602081830303815290604052805190602001209050809150509392505050565b6000612679838361304f565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6126eb828260405180602001604052806000815250613076565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ce8361169c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061281f8261169c565b905061282d816000846130d1565b61283860008361275b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128889190614a67565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612930826126ef565b61296f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129669061465d565b60405180910390fd5b600061297a8361169c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129e957508373ffffffffffffffffffffffffffffffffffffffff166129d184610d9d565b73ffffffffffffffffffffffffffffffffffffffff16145b806129fa57506129f9818561225a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a238261169c565b73ffffffffffffffffffffffffffffffffffffffff1614612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a70906147fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae0906145fd565b60405180910390fd5b612af48383836130d1565b612aff60008261275b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b4f9190614a67565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ba69190614986565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b9061461d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e85919061445b565b60405180910390a3505050565b612e9d848484612a03565b612ea9848484846130d6565b612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf9061457d565b60405180910390fd5b50505050565b60606000821415612f36576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061304a565b600082905060005b60008214612f68578080612f5190614bcb565b915050600a82612f6191906149dc565b9150612f3e565b60008167ffffffffffffffff811115612f8457612f83614d68565b5b6040519080825280601f01601f191660200182016040528015612fb65781602001600182028036833780820191505090505b5090505b6000851461304357600182612fcf9190614a67565b9150600a85612fde9190614c4c565b6030612fea9190614986565b60f81b81838151811061300057612fff614d39565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561303c91906149dc565b9450612fba565b8093505050505b919050565b600080600061305e858561326d565b9150915061306b816132f0565b819250505092915050565b61308083836134c5565b61308d60008484846130d6565b6130cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c39061457d565b60405180910390fd5b505050565b505050565b60006130f78473ffffffffffffffffffffffffffffffffffffffff16613693565b15613260578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613120612604565b8786866040518563ffffffff1660e01b8152600401613142949392919061440f565b602060405180830381600087803b15801561315c57600080fd5b505af192505050801561318d57506040513d601f19601f8201168201806040525081019061318a9190613bc3565b60015b613210573d80600081146131bd576040519150601f19603f3d011682016040523d82523d6000602084013e6131c2565b606091505b50600081511415613208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ff9061457d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613265565b600190505b949350505050565b6000806041835114156132af5760008060006020860151925060408601519150606086015160001a90506132a3878285856136a6565b945094505050506132e9565b6040835114156132e05760008060208501519150604085015190506132d58683836137b3565b9350935050506132e9565b60006002915091505b9250929050565b6000600481111561330457613303614cdb565b5b81600481111561331757613316614cdb565b5b1415613322576134c2565b6001600481111561333657613335614cdb565b5b81600481111561334957613348614cdb565b5b141561338a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613381906144dd565b60405180910390fd5b6002600481111561339e5761339d614cdb565b5b8160048111156133b1576133b0614cdb565b5b14156133f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e99061453d565b60405180910390fd5b6003600481111561340657613405614cdb565b5b81600481111561341957613418614cdb565b5b141561345a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134519061463d565b60405180910390fd5b60048081111561346d5761346c614cdb565b5b8160048111156134805761347f614cdb565b5b14156134c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b89061473d565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352c9061475d565b60405180910390fd5b61353e816126ef565b1561357e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613575906145bd565b60405180910390fd5b61358a600083836130d1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135da9190614986565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136e15760006003915091506137aa565b601b8560ff16141580156136f95750601c8560ff1614155b1561370b5760006004915091506137aa565b6000600187878787604051600081526020016040526040516137309493929190614476565b6020604051602081039080840390855afa158015613752573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156137a1576000600192509250506137aa565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506137f3878288856136a6565b935093505050935093915050565b82805461380d90614b68565b90600052602060002090601f01602090048101928261382f5760008555613876565b82601f1061384857803560ff1916838001178555613876565b82800160010185558215613876579182015b8281111561387557823582559160200191906001019061385a565b5b5090506138839190613887565b5090565b5b808211156138a0576000816000905550600101613888565b5090565b60006138b76138b2846148fd565b6148d8565b9050828152602081018484840111156138d3576138d2614da6565b5b6138de848285614b26565b509392505050565b6000813590506138f58161550a565b92915050565b60008135905061390a81615521565b92915050565b60008135905061391f81615538565b92915050565b60008151905061393481615538565b92915050565b600082601f83011261394f5761394e614d9c565b5b813561395f8482602086016138a4565b91505092915050565b60008083601f84011261397e5761397d614d9c565b5b8235905067ffffffffffffffff81111561399b5761399a614d97565b5b6020830191508360018202830111156139b7576139b6614da1565b5b9250929050565b6000813590506139cd8161554f565b92915050565b6000602082840312156139e9576139e8614db0565b5b60006139f7848285016138e6565b91505092915050565b60008060408385031215613a1757613a16614db0565b5b6000613a25858286016138e6565b9250506020613a36858286016138e6565b9150509250929050565b600080600060608486031215613a5957613a58614db0565b5b6000613a67868287016138e6565b9350506020613a78868287016138e6565b9250506040613a89868287016139be565b9150509250925092565b60008060008060808587031215613aad57613aac614db0565b5b6000613abb878288016138e6565b9450506020613acc878288016138e6565b9350506040613add878288016139be565b925050606085013567ffffffffffffffff811115613afe57613afd614dab565b5b613b0a8782880161393a565b91505092959194509250565b60008060408385031215613b2d57613b2c614db0565b5b6000613b3b858286016138e6565b9250506020613b4c858286016138fb565b9150509250929050565b60008060408385031215613b6d57613b6c614db0565b5b6000613b7b858286016138e6565b9250506020613b8c858286016139be565b9150509250929050565b600060208284031215613bac57613bab614db0565b5b6000613bba84828501613910565b91505092915050565b600060208284031215613bd957613bd8614db0565b5b6000613be784828501613925565b91505092915050565b60008060208385031215613c0757613c06614db0565b5b600083013567ffffffffffffffff811115613c2557613c24614dab565b5b613c3185828601613968565b92509250509250929050565b600060208284031215613c5357613c52614db0565b5b6000613c61848285016139be565b91505092915050565b60008060408385031215613c8157613c80614db0565b5b6000613c8f858286016139be565b9250506020613ca0858286016138e6565b9150509250929050565b60008060008060808587031215613cc457613cc3614db0565b5b6000613cd2878288016139be565b9450506020613ce3878288016139be565b9350506040613cf4878288016138e6565b925050606085013567ffffffffffffffff811115613d1557613d14614dab565b5b613d218782880161393a565b91505092959194509250565b613d3681614a9b565b82525050565b613d4d613d4882614a9b565b614c14565b82525050565b613d5c81614aad565b82525050565b613d6b81614ab9565b82525050565b613d82613d7d82614ab9565b614c26565b82525050565b6000613d9382614943565b613d9d8185614959565b9350613dad818560208601614b35565b613db681614db5565b840191505092915050565b6000613dcc8261494e565b613dd6818561496a565b9350613de6818560208601614b35565b613def81614db5565b840191505092915050565b6000613e058261494e565b613e0f818561497b565b9350613e1f818560208601614b35565b80840191505092915050565b60008154613e3881614b68565b613e42818661497b565b94506001821660008114613e5d5760018114613e6e57613ea1565b60ff19831686528186019350613ea1565b613e778561492e565b60005b83811015613e9957815481890152600182019150602081019050613e7a565b838801955050505b50505092915050565b6000613eb760188361496a565b9150613ec282614dd3565b602082019050919050565b6000613eda600e8361496a565b9150613ee582614dfc565b602082019050919050565b6000613efd600a8361496a565b9150613f0882614e25565b602082019050919050565b6000613f20601f8361496a565b9150613f2b82614e4e565b602082019050919050565b6000613f43601c8361497b565b9150613f4e82614e77565b601c82019050919050565b6000613f66600a8361496a565b9150613f7182614ea0565b602082019050919050565b6000613f8960328361496a565b9150613f9482614ec9565b604082019050919050565b6000613fac60268361496a565b9150613fb782614f18565b604082019050919050565b6000613fcf601c8361496a565b9150613fda82614f67565b602082019050919050565b6000613ff260118361496a565b9150613ffd82614f90565b602082019050919050565b600061401560248361496a565b915061402082614fb9565b604082019050919050565b600061403860198361496a565b915061404382615008565b602082019050919050565b600061405b60228361496a565b915061406682615031565b604082019050919050565b600061407e602c8361496a565b915061408982615080565b604082019050919050565b60006140a160148361496a565b91506140ac826150cf565b602082019050919050565b60006140c460388361496a565b91506140cf826150f8565b604082019050919050565b60006140e760108361496a565b91506140f282615147565b602082019050919050565b600061410a602a8361496a565b915061411582615170565b604082019050919050565b600061412d60298361496a565b9150614138826151bf565b604082019050919050565b6000614150600e8361496a565b915061415b8261520e565b602082019050919050565b600061417360228361496a565b915061417e82615237565b604082019050919050565b600061419660208361496a565b91506141a182615286565b602082019050919050565b60006141b960138361496a565b91506141c4826152af565b602082019050919050565b60006141dc600e8361496a565b91506141e7826152d8565b602082019050919050565b60006141ff602c8361496a565b915061420a82615301565b604082019050919050565b600061422260058361497b565b915061422d82615350565b600582019050919050565b600061424560208361496a565b915061425082615379565b602082019050919050565b600061426860298361496a565b9150614273826153a2565b604082019050919050565b600061428b600b8361496a565b9150614296826153f1565b602082019050919050565b60006142ae601f8361496a565b91506142b98261541a565b602082019050919050565b60006142d160218361496a565b91506142dc82615443565b604082019050919050565b60006142f460318361496a565b91506142ff82615492565b604082019050919050565b600061431760128361496a565b9150614322826154e1565b602082019050919050565b61433681614b0f565b82525050565b61434d61434882614b0f565b614c42565b82525050565b61435c81614b19565b82525050565b600061436e8285613e2b565b915061437a8284613dfa565b915061438582614215565b91508190509392505050565b600061439c82613f36565b91506143a88284613d71565b60208201915081905092915050565b60006143c3828661433c565b6020820191506143d38285613d3c565b6014820191506143e3828461433c565b602082019150819050949350505050565b60006020820190506144096000830184613d2d565b92915050565b60006080820190506144246000830187613d2d565b6144316020830186613d2d565b61443e604083018561432d565b81810360608301526144508184613d88565b905095945050505050565b60006020820190506144706000830184613d53565b92915050565b600060808201905061448b6000830187613d62565b6144986020830186614353565b6144a56040830185613d62565b6144b26060830184613d62565b95945050505050565b600060208201905081810360008301526144d58184613dc1565b905092915050565b600060208201905081810360008301526144f681613eaa565b9050919050565b6000602082019050818103600083015261451681613ecd565b9050919050565b6000602082019050818103600083015261453681613ef0565b9050919050565b6000602082019050818103600083015261455681613f13565b9050919050565b6000602082019050818103600083015261457681613f59565b9050919050565b6000602082019050818103600083015261459681613f7c565b9050919050565b600060208201905081810360008301526145b681613f9f565b9050919050565b600060208201905081810360008301526145d681613fc2565b9050919050565b600060208201905081810360008301526145f681613fe5565b9050919050565b6000602082019050818103600083015261461681614008565b9050919050565b600060208201905081810360008301526146368161402b565b9050919050565b600060208201905081810360008301526146568161404e565b9050919050565b6000602082019050818103600083015261467681614071565b9050919050565b6000602082019050818103600083015261469681614094565b9050919050565b600060208201905081810360008301526146b6816140b7565b9050919050565b600060208201905081810360008301526146d6816140da565b9050919050565b600060208201905081810360008301526146f6816140fd565b9050919050565b6000602082019050818103600083015261471681614120565b9050919050565b6000602082019050818103600083015261473681614143565b9050919050565b6000602082019050818103600083015261475681614166565b9050919050565b6000602082019050818103600083015261477681614189565b9050919050565b60006020820190508181036000830152614796816141ac565b9050919050565b600060208201905081810360008301526147b6816141cf565b9050919050565b600060208201905081810360008301526147d6816141f2565b9050919050565b600060208201905081810360008301526147f681614238565b9050919050565b600060208201905081810360008301526148168161425b565b9050919050565b600060208201905081810360008301526148368161427e565b9050919050565b60006020820190508181036000830152614856816142a1565b9050919050565b60006020820190508181036000830152614876816142c4565b9050919050565b60006020820190508181036000830152614896816142e7565b9050919050565b600060208201905081810360008301526148b68161430a565b9050919050565b60006020820190506148d2600083018461432d565b92915050565b60006148e26148f3565b90506148ee8282614b9a565b919050565b6000604051905090565b600067ffffffffffffffff82111561491857614917614d68565b5b61492182614db5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061499182614b0f565b915061499c83614b0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149d1576149d0614c7d565b5b828201905092915050565b60006149e782614b0f565b91506149f283614b0f565b925082614a0257614a01614cac565b5b828204905092915050565b6000614a1882614b0f565b9150614a2383614b0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a5c57614a5b614c7d565b5b828202905092915050565b6000614a7282614b0f565b9150614a7d83614b0f565b925082821015614a9057614a8f614c7d565b5b828203905092915050565b6000614aa682614aef565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b53578082015181840152602081019050614b38565b83811115614b62576000848401525b50505050565b60006002820490506001821680614b8057607f821691505b60208210811415614b9457614b93614d0a565b5b50919050565b614ba382614db5565b810181811067ffffffffffffffff82111715614bc257614bc1614d68565b5b80604052505050565b6000614bd682614b0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c0957614c08614c7d565b5b600182019050919050565b6000614c1f82614c30565b9050919050565b6000819050919050565b6000614c3b82614dc6565b9050919050565b6000819050919050565b6000614c5782614b0f565b9150614c6283614b0f565b925082614c7257614c71614cac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f53616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b7f4e6f6e6365207573656400000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4e6f6e6365205573656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f457863656564204e465420737570706c79000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e6572206973206e6f74206275726e696e67000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4275726e206973206e6f74206c69766500000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f47696674696e6720636c6f736564000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f7420616c6c6f77656420746f206d696e7400000000000000000000000000600082015250565b7f47696674696e6720436c6f736564000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f57726f6e67207072696365000000000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f457863656564206d617820746f206d696e740000000000000000000000000000600082015250565b61551381614a9b565b811461551e57600080fd5b50565b61552a81614aad565b811461553557600080fd5b50565b61554181614ac3565b811461554c57600080fd5b50565b61555881614b0f565b811461556357600080fd5b5056fea2646970667358221220e1565fe4d4c288a0dfb758c665d0c3ded76e4ce8c54b2cb8571d77faef356c3364736f6c6343000806003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d535855623150447057666f35665144736a32314a4a65526a523472776d67565639394b5a7639657234776f792f312e6a736f6e

Deployed Bytecode

0x6080604052600436106102675760003560e01c806370169b7f11610144578063cb908cce116100b6578063e8a3d4851161007a578063e8a3d48514610899578063e985e9c5146108c4578063ee37520b14610901578063f2fde38b14610918578063f7b9a72b14610941578063f7ea7a3d1461096a57610267565b8063cb908cce146107da578063ccb4807b146107f1578063d1b85c531461081a578063e06f63bb14610845578063e081b7811461086e57610267565b806395d89b411161010857806395d89b41146106ce578063a0bcfc7f146106f9578063a22cb46514610722578063b10b51121461074b578063b88d4fde14610774578063c87b56dd1461079d57610267565b806370169b7f1461060f57806370a0823114610638578063715018a6146106755780637f441e221461068c5780638da5cb5b146106a357610267565b8063238ac933116101dd57806342842e0e116101a157806342842e0e1461051057806351830227146105395780635ca5933a146105645780636352211e1461058057806367f029c2146105bd5780636c19e783146105e657610267565b8063238ac9331461044f57806323b872dd1461047a5780632cff9e06146104a357806339aba407146104ce5780633ccfd60b146104f957610267565b8063081812fc1161022f578063081812fc1461033f578063095ea7b31461037c5780630d39fc81146103a5578063143e7d49146103d057806318160ddd146103fb57806321a543c21461042657610267565b806301790e011461026c57806301ffc9a714610297578063049c5c49146102d45780630680a0e9146102eb57806306fdde0314610314575b600080fd5b34801561027857600080fd5b50610281610993565b60405161028e91906148bd565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190613b96565b610999565b6040516102cb919061445b565b60405180910390f35b3480156102e057600080fd5b506102e9610a7b565b005b3480156102f757600080fd5b50610312600480360381019061030d9190613caa565b610b23565b005b34801561032057600080fd5b50610329610d0b565b60405161033691906144bb565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190613c3d565b610d9d565b60405161037391906143f4565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190613b56565b610e22565b005b3480156103b157600080fd5b506103ba610f3a565b6040516103c791906148bd565b60405180910390f35b3480156103dc57600080fd5b506103e5610f40565b6040516103f291906148bd565b60405180910390f35b34801561040757600080fd5b50610410610f46565b60405161041d91906148bd565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190613c3d565b610f4c565b005b34801561045b57600080fd5b5061046461103f565b60405161047191906143f4565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613a40565b611065565b005b3480156104af57600080fd5b506104b86110c5565b6040516104c5919061445b565b60405180910390f35b3480156104da57600080fd5b506104e36110d8565b6040516104f091906148bd565b60405180910390f35b34801561050557600080fd5b5061050e6110de565b005b34801561051c57600080fd5b5061053760048036038101906105329190613a40565b6113f2565b005b34801561054557600080fd5b5061054e611412565b60405161055b919061445b565b60405180910390f35b61057e60048036038101906105799190613caa565b611425565b005b34801561058c57600080fd5b506105a760048036038101906105a29190613c3d565b61169c565b6040516105b491906143f4565b60405180910390f35b3480156105c957600080fd5b506105e460048036038101906105df9190613c3d565b61174e565b005b3480156105f257600080fd5b5061060d600480360381019061060891906139d3565b6117d4565b005b34801561061b57600080fd5b5061063660048036038101906106319190613c3d565b611894565b005b34801561064457600080fd5b5061065f600480360381019061065a91906139d3565b611981565b60405161066c91906148bd565b60405180910390f35b34801561068157600080fd5b5061068a611a39565b005b34801561069857600080fd5b506106a1611ac1565b005b3480156106af57600080fd5b506106b8611b69565b6040516106c591906143f4565b60405180910390f35b3480156106da57600080fd5b506106e3611b93565b6040516106f091906144bb565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b9190613bf0565b611c25565b005b34801561072e57600080fd5b5061074960048036038101906107449190613b16565b611cb7565b005b34801561075757600080fd5b50610772600480360381019061076d9190613c6a565b611ccd565b005b34801561078057600080fd5b5061079b60048036038101906107969190613a93565b611e49565b005b3480156107a957600080fd5b506107c460048036038101906107bf9190613c3d565b611eab565b6040516107d191906144bb565b60405180910390f35b3480156107e657600080fd5b506107ef611fd6565b005b3480156107fd57600080fd5b5061081860048036038101906108139190613bf0565b61207e565b005b34801561082657600080fd5b5061082f612110565b60405161083c919061445b565b60405180910390f35b34801561085157600080fd5b5061086c60048036038101906108679190613bf0565b612123565b005b34801561087a57600080fd5b506108836121b5565b604051610890919061445b565b60405180910390f35b3480156108a557600080fd5b506108ae6121c8565b6040516108bb91906144bb565b60405180910390f35b3480156108d057600080fd5b506108eb60048036038101906108e69190613a00565b61225a565b6040516108f8919061445b565b60405180910390f35b34801561090d57600080fd5b506109166122ee565b005b34801561092457600080fd5b5061093f600480360381019061093a91906139d3565b612396565b005b34801561094d57600080fd5b5061096860048036038101906109639190613c3d565b61248e565b005b34801561097657600080fd5b50610991600480360381019061098c9190613c3d565b612514565b005b600e5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a745750610a738261259a565b5b9050919050565b610a83612604565b73ffffffffffffffffffffffffffffffffffffffff16610aa1611b69565b73ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee906147dd565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b601160029054906101000a900460ff16610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b699061479d565b60405180910390fd5b600e5484601554610b839190614986565b1115610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb906145dd565b60405180910390fd5b600015156017600085815260200190815260200160002060009054906101000a900460ff16151514610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c229061455d565b60405180910390fd5b610c3f610c3984848761260c565b8261266d565b610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c759061477d565b60405180910390fd5b60016017600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b84811015610ceb57610cd883600183601554610cc99190614986565b610cd39190614986565b6126d1565b8080610ce390614bcb565b915050610cad565b508360156000828254610cfe9190614986565b9250508190555050505050565b606060008054610d1a90614b68565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4690614b68565b8015610d935780601f10610d6857610100808354040283529160200191610d93565b820191906000526020600020905b815481529060010190602001808311610d7657829003601f168201915b5050505050905090565b6000610da8826126ef565b610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde906147bd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e2d8261169c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e959061485d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ebd612604565b73ffffffffffffffffffffffffffffffffffffffff161480610eec5750610eeb81610ee6612604565b61225a565b5b610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f229061469d565b60405180910390fd5b610f35838361275b565b505050565b600f5481565b60105481565b60155481565b610f54612604565b73ffffffffffffffffffffffffffffffffffffffff16610f72611b69565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf906147dd565b60405180910390fd5b60011515601160039054906101000a900460ff1615151461101e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611015906146bd565b60405180910390fd5b61102781612814565b60016016546110369190614986565b60168190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611076611070612604565b82612925565b6110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac9061487d565b60405180910390fd5b6110c0838383612a03565b505050565b601160029054906101000a900460ff1681565b60165481565b6000479050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c38461112f9190614a0d565b61113991906149dc565b9081150290604051600060405180830381858888f19350505050158015611164573d6000803e3d6000fd5b50600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c3846111b19190614a0d565b6111bb91906149dc565b9081150290604051600060405180830381858888f193505050501580156111e6573d6000803e3d6000fd5b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c3846112339190614a0d565b61123d91906149dc565b9081150290604051600060405180830381858888f19350505050158015611268573d6000803e3d6000fd5b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c3846112b59190614a0d565b6112bf91906149dc565b9081150290604051600060405180830381858888f193505050501580156112ea573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e860c3846113379190614a0d565b61134191906149dc565b9081150290604051600060405180830381858888f1935050505015801561136c573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e86019846113b99190614a0d565b6113c391906149dc565b9081150290604051600060405180830381858888f193505050501580156113ee573d6000803e3d6000fd5b5050565b61140d83838360405180602001604052806000815250611e49565b505050565b601160009054906101000a900460ff1681565b601160019054906101000a900460ff16611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b906144fd565b60405180910390fd5b3484600f546114839190614a0d565b11156114c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bb9061481d565b60405180910390fd5b600e54846015546114d59190614986565b1115611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d906145dd565b60405180910390fd5b60105484111561155b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115529061489d565b60405180910390fd5b6017600084815260200190815260200160002060009054906101000a900460ff16156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b39061451d565b60405180910390fd5b6115d06115ca84848761260c565b8261266d565b61160f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116069061477d565b60405180910390fd5b60016017600085815260200190815260200160002060006101000a81548160ff02191690831515021790555060005b8481101561167c576116693360018360155461165a9190614986565b6116649190614986565b6126d1565b808061167490614bcb565b91505061163e565b50836015600082825461168f9190614986565b9250508190555050505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c906146fd565b60405180910390fd5b80915050919050565b611756612604565b73ffffffffffffffffffffffffffffffffffffffff16611774611b69565b73ffffffffffffffffffffffffffffffffffffffff16146117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c1906147dd565b60405180910390fd5b8060108190555050565b6117dc612604565b73ffffffffffffffffffffffffffffffffffffffff166117fa611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611847906147dd565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60011515601160039054906101000a900460ff161515146118ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e1906146bd565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff1661190a8261169c565b73ffffffffffffffffffffffffffffffffffffffff1614611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061467d565b60405180910390fd5b61196981612814565b60016016546119789190614986565b60168190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906146dd565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611a41612604565b73ffffffffffffffffffffffffffffffffffffffff16611a5f611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac906147dd565b60405180910390fd5b611abf6000612c5f565b565b611ac9612604565b73ffffffffffffffffffffffffffffffffffffffff16611ae7611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b34906147dd565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ba290614b68565b80601f0160208091040260200160405190810160405280929190818152602001828054611bce90614b68565b8015611c1b5780601f10611bf057610100808354040283529160200191611c1b565b820191906000526020600020905b815481529060010190602001808311611bfe57829003601f168201915b5050505050905090565b611c2d612604565b73ffffffffffffffffffffffffffffffffffffffff16611c4b611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c98906147dd565b60405180910390fd5b818160139190611cb2929190613801565b505050565b611cc9611cc2612604565b8383612d25565b5050565b611cd5612604565b73ffffffffffffffffffffffffffffffffffffffff16611cf3611b69565b73ffffffffffffffffffffffffffffffffffffffff1614611d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d40906147dd565b60405180910390fd5b601160029054906101000a900460ff16611d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8f9061471d565b60405180910390fd5b600e5482601554611da99190614986565b1115611dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de1906145dd565b60405180910390fd5b60005b82811015611e2b57611e1882600183601554611e099190614986565b611e139190614986565b6126d1565b8080611e2390614bcb565b915050611ded565b508160156000828254611e3e9190614986565b925050819055505050565b611e5a611e54612604565b83612925565b611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e909061487d565b60405180910390fd5b611ea584848484612e92565b50505050565b6060611eb6826126ef565b611ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eec9061483d565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611fa35760148054611f1e90614b68565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4a90614b68565b8015611f975780601f10611f6c57610100808354040283529160200191611f97565b820191906000526020600020905b815481529060010190602001808311611f7a57829003601f168201915b50505050509050611fd1565b6013611fae83612eee565b604051602001611fbf929190614362565b60405160208183030381529060405290505b919050565b611fde612604565b73ffffffffffffffffffffffffffffffffffffffff16611ffc611b69565b73ffffffffffffffffffffffffffffffffffffffff1614612052576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612049906147dd565b60405180910390fd5b601160029054906101000a900460ff1615601160026101000a81548160ff021916908315150217905550565b612086612604565b73ffffffffffffffffffffffffffffffffffffffff166120a4611b69565b73ffffffffffffffffffffffffffffffffffffffff16146120fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f1906147dd565b60405180910390fd5b81816012919061210b929190613801565b505050565b601160039054906101000a900460ff1681565b61212b612604565b73ffffffffffffffffffffffffffffffffffffffff16612149611b69565b73ffffffffffffffffffffffffffffffffffffffff161461219f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612196906147dd565b60405180910390fd5b8181601491906121b0929190613801565b505050565b601160019054906101000a900460ff1681565b6060601280546121d790614b68565b80601f016020809104026020016040519081016040528092919081815260200182805461220390614b68565b80156122505780601f1061222557610100808354040283529160200191612250565b820191906000526020600020905b81548152906001019060200180831161223357829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122f6612604565b73ffffffffffffffffffffffffffffffffffffffff16612314611b69565b73ffffffffffffffffffffffffffffffffffffffff161461236a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612361906147dd565b60405180910390fd5b601160039054906101000a900460ff1615601160036101000a81548160ff021916908315150217905550565b61239e612604565b73ffffffffffffffffffffffffffffffffffffffff166123bc611b69565b73ffffffffffffffffffffffffffffffffffffffff1614612412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612409906147dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612482576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124799061459d565b60405180910390fd5b61248b81612c5f565b50565b612496612604565b73ffffffffffffffffffffffffffffffffffffffff166124b4611b69565b73ffffffffffffffffffffffffffffffffffffffff161461250a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612501906147dd565b60405180910390fd5b80600f8190555050565b61251c612604565b73ffffffffffffffffffffffffffffffffffffffff1661253a611b69565b73ffffffffffffffffffffffffffffffffffffffff1614612590576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612587906147dd565b60405180910390fd5b80600e8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600080848484604051602001612624939291906143b7565b6040516020818303038152906040528051906020012060405160200161264a9190614391565b604051602081830303815290604052805190602001209050809150509392505050565b6000612679838361304f565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6126eb828260405180602001604052806000815250613076565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127ce8361169c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061281f8261169c565b905061282d816000846130d1565b61283860008361275b565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128889190614a67565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612930826126ef565b61296f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129669061465d565b60405180910390fd5b600061297a8361169c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129e957508373ffffffffffffffffffffffffffffffffffffffff166129d184610d9d565b73ffffffffffffffffffffffffffffffffffffffff16145b806129fa57506129f9818561225a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a238261169c565b73ffffffffffffffffffffffffffffffffffffffff1614612a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a70906147fd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae0906145fd565b60405180910390fd5b612af48383836130d1565b612aff60008261275b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b4f9190614a67565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ba69190614986565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8b9061461d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e85919061445b565b60405180910390a3505050565b612e9d848484612a03565b612ea9848484846130d6565b612ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612edf9061457d565b60405180910390fd5b50505050565b60606000821415612f36576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061304a565b600082905060005b60008214612f68578080612f5190614bcb565b915050600a82612f6191906149dc565b9150612f3e565b60008167ffffffffffffffff811115612f8457612f83614d68565b5b6040519080825280601f01601f191660200182016040528015612fb65781602001600182028036833780820191505090505b5090505b6000851461304357600182612fcf9190614a67565b9150600a85612fde9190614c4c565b6030612fea9190614986565b60f81b81838151811061300057612fff614d39565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561303c91906149dc565b9450612fba565b8093505050505b919050565b600080600061305e858561326d565b9150915061306b816132f0565b819250505092915050565b61308083836134c5565b61308d60008484846130d6565b6130cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c39061457d565b60405180910390fd5b505050565b505050565b60006130f78473ffffffffffffffffffffffffffffffffffffffff16613693565b15613260578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613120612604565b8786866040518563ffffffff1660e01b8152600401613142949392919061440f565b602060405180830381600087803b15801561315c57600080fd5b505af192505050801561318d57506040513d601f19601f8201168201806040525081019061318a9190613bc3565b60015b613210573d80600081146131bd576040519150601f19603f3d011682016040523d82523d6000602084013e6131c2565b606091505b50600081511415613208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ff9061457d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613265565b600190505b949350505050565b6000806041835114156132af5760008060006020860151925060408601519150606086015160001a90506132a3878285856136a6565b945094505050506132e9565b6040835114156132e05760008060208501519150604085015190506132d58683836137b3565b9350935050506132e9565b60006002915091505b9250929050565b6000600481111561330457613303614cdb565b5b81600481111561331757613316614cdb565b5b1415613322576134c2565b6001600481111561333657613335614cdb565b5b81600481111561334957613348614cdb565b5b141561338a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613381906144dd565b60405180910390fd5b6002600481111561339e5761339d614cdb565b5b8160048111156133b1576133b0614cdb565b5b14156133f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133e99061453d565b60405180910390fd5b6003600481111561340657613405614cdb565b5b81600481111561341957613418614cdb565b5b141561345a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134519061463d565b60405180910390fd5b60048081111561346d5761346c614cdb565b5b8160048111156134805761347f614cdb565b5b14156134c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b89061473d565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352c9061475d565b60405180910390fd5b61353e816126ef565b1561357e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613575906145bd565b60405180910390fd5b61358a600083836130d1565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135da9190614986565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136e15760006003915091506137aa565b601b8560ff16141580156136f95750601c8560ff1614155b1561370b5760006004915091506137aa565b6000600187878787604051600081526020016040526040516137309493929190614476565b6020604051602081039080840390855afa158015613752573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156137a1576000600192509250506137aa565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c0190506137f3878288856136a6565b935093505050935093915050565b82805461380d90614b68565b90600052602060002090601f01602090048101928261382f5760008555613876565b82601f1061384857803560ff1916838001178555613876565b82800160010185558215613876579182015b8281111561387557823582559160200191906001019061385a565b5b5090506138839190613887565b5090565b5b808211156138a0576000816000905550600101613888565b5090565b60006138b76138b2846148fd565b6148d8565b9050828152602081018484840111156138d3576138d2614da6565b5b6138de848285614b26565b509392505050565b6000813590506138f58161550a565b92915050565b60008135905061390a81615521565b92915050565b60008135905061391f81615538565b92915050565b60008151905061393481615538565b92915050565b600082601f83011261394f5761394e614d9c565b5b813561395f8482602086016138a4565b91505092915050565b60008083601f84011261397e5761397d614d9c565b5b8235905067ffffffffffffffff81111561399b5761399a614d97565b5b6020830191508360018202830111156139b7576139b6614da1565b5b9250929050565b6000813590506139cd8161554f565b92915050565b6000602082840312156139e9576139e8614db0565b5b60006139f7848285016138e6565b91505092915050565b60008060408385031215613a1757613a16614db0565b5b6000613a25858286016138e6565b9250506020613a36858286016138e6565b9150509250929050565b600080600060608486031215613a5957613a58614db0565b5b6000613a67868287016138e6565b9350506020613a78868287016138e6565b9250506040613a89868287016139be565b9150509250925092565b60008060008060808587031215613aad57613aac614db0565b5b6000613abb878288016138e6565b9450506020613acc878288016138e6565b9350506040613add878288016139be565b925050606085013567ffffffffffffffff811115613afe57613afd614dab565b5b613b0a8782880161393a565b91505092959194509250565b60008060408385031215613b2d57613b2c614db0565b5b6000613b3b858286016138e6565b9250506020613b4c858286016138fb565b9150509250929050565b60008060408385031215613b6d57613b6c614db0565b5b6000613b7b858286016138e6565b9250506020613b8c858286016139be565b9150509250929050565b600060208284031215613bac57613bab614db0565b5b6000613bba84828501613910565b91505092915050565b600060208284031215613bd957613bd8614db0565b5b6000613be784828501613925565b91505092915050565b60008060208385031215613c0757613c06614db0565b5b600083013567ffffffffffffffff811115613c2557613c24614dab565b5b613c3185828601613968565b92509250509250929050565b600060208284031215613c5357613c52614db0565b5b6000613c61848285016139be565b91505092915050565b60008060408385031215613c8157613c80614db0565b5b6000613c8f858286016139be565b9250506020613ca0858286016138e6565b9150509250929050565b60008060008060808587031215613cc457613cc3614db0565b5b6000613cd2878288016139be565b9450506020613ce3878288016139be565b9350506040613cf4878288016138e6565b925050606085013567ffffffffffffffff811115613d1557613d14614dab565b5b613d218782880161393a565b91505092959194509250565b613d3681614a9b565b82525050565b613d4d613d4882614a9b565b614c14565b82525050565b613d5c81614aad565b82525050565b613d6b81614ab9565b82525050565b613d82613d7d82614ab9565b614c26565b82525050565b6000613d9382614943565b613d9d8185614959565b9350613dad818560208601614b35565b613db681614db5565b840191505092915050565b6000613dcc8261494e565b613dd6818561496a565b9350613de6818560208601614b35565b613def81614db5565b840191505092915050565b6000613e058261494e565b613e0f818561497b565b9350613e1f818560208601614b35565b80840191505092915050565b60008154613e3881614b68565b613e42818661497b565b94506001821660008114613e5d5760018114613e6e57613ea1565b60ff19831686528186019350613ea1565b613e778561492e565b60005b83811015613e9957815481890152600182019150602081019050613e7a565b838801955050505b50505092915050565b6000613eb760188361496a565b9150613ec282614dd3565b602082019050919050565b6000613eda600e8361496a565b9150613ee582614dfc565b602082019050919050565b6000613efd600a8361496a565b9150613f0882614e25565b602082019050919050565b6000613f20601f8361496a565b9150613f2b82614e4e565b602082019050919050565b6000613f43601c8361497b565b9150613f4e82614e77565b601c82019050919050565b6000613f66600a8361496a565b9150613f7182614ea0565b602082019050919050565b6000613f8960328361496a565b9150613f9482614ec9565b604082019050919050565b6000613fac60268361496a565b9150613fb782614f18565b604082019050919050565b6000613fcf601c8361496a565b9150613fda82614f67565b602082019050919050565b6000613ff260118361496a565b9150613ffd82614f90565b602082019050919050565b600061401560248361496a565b915061402082614fb9565b604082019050919050565b600061403860198361496a565b915061404382615008565b602082019050919050565b600061405b60228361496a565b915061406682615031565b604082019050919050565b600061407e602c8361496a565b915061408982615080565b604082019050919050565b60006140a160148361496a565b91506140ac826150cf565b602082019050919050565b60006140c460388361496a565b91506140cf826150f8565b604082019050919050565b60006140e760108361496a565b91506140f282615147565b602082019050919050565b600061410a602a8361496a565b915061411582615170565b604082019050919050565b600061412d60298361496a565b9150614138826151bf565b604082019050919050565b6000614150600e8361496a565b915061415b8261520e565b602082019050919050565b600061417360228361496a565b915061417e82615237565b604082019050919050565b600061419660208361496a565b91506141a182615286565b602082019050919050565b60006141b960138361496a565b91506141c4826152af565b602082019050919050565b60006141dc600e8361496a565b91506141e7826152d8565b602082019050919050565b60006141ff602c8361496a565b915061420a82615301565b604082019050919050565b600061422260058361497b565b915061422d82615350565b600582019050919050565b600061424560208361496a565b915061425082615379565b602082019050919050565b600061426860298361496a565b9150614273826153a2565b604082019050919050565b600061428b600b8361496a565b9150614296826153f1565b602082019050919050565b60006142ae601f8361496a565b91506142b98261541a565b602082019050919050565b60006142d160218361496a565b91506142dc82615443565b604082019050919050565b60006142f460318361496a565b91506142ff82615492565b604082019050919050565b600061431760128361496a565b9150614322826154e1565b602082019050919050565b61433681614b0f565b82525050565b61434d61434882614b0f565b614c42565b82525050565b61435c81614b19565b82525050565b600061436e8285613e2b565b915061437a8284613dfa565b915061438582614215565b91508190509392505050565b600061439c82613f36565b91506143a88284613d71565b60208201915081905092915050565b60006143c3828661433c565b6020820191506143d38285613d3c565b6014820191506143e3828461433c565b602082019150819050949350505050565b60006020820190506144096000830184613d2d565b92915050565b60006080820190506144246000830187613d2d565b6144316020830186613d2d565b61443e604083018561432d565b81810360608301526144508184613d88565b905095945050505050565b60006020820190506144706000830184613d53565b92915050565b600060808201905061448b6000830187613d62565b6144986020830186614353565b6144a56040830185613d62565b6144b26060830184613d62565b95945050505050565b600060208201905081810360008301526144d58184613dc1565b905092915050565b600060208201905081810360008301526144f681613eaa565b9050919050565b6000602082019050818103600083015261451681613ecd565b9050919050565b6000602082019050818103600083015261453681613ef0565b9050919050565b6000602082019050818103600083015261455681613f13565b9050919050565b6000602082019050818103600083015261457681613f59565b9050919050565b6000602082019050818103600083015261459681613f7c565b9050919050565b600060208201905081810360008301526145b681613f9f565b9050919050565b600060208201905081810360008301526145d681613fc2565b9050919050565b600060208201905081810360008301526145f681613fe5565b9050919050565b6000602082019050818103600083015261461681614008565b9050919050565b600060208201905081810360008301526146368161402b565b9050919050565b600060208201905081810360008301526146568161404e565b9050919050565b6000602082019050818103600083015261467681614071565b9050919050565b6000602082019050818103600083015261469681614094565b9050919050565b600060208201905081810360008301526146b6816140b7565b9050919050565b600060208201905081810360008301526146d6816140da565b9050919050565b600060208201905081810360008301526146f6816140fd565b9050919050565b6000602082019050818103600083015261471681614120565b9050919050565b6000602082019050818103600083015261473681614143565b9050919050565b6000602082019050818103600083015261475681614166565b9050919050565b6000602082019050818103600083015261477681614189565b9050919050565b60006020820190508181036000830152614796816141ac565b9050919050565b600060208201905081810360008301526147b6816141cf565b9050919050565b600060208201905081810360008301526147d6816141f2565b9050919050565b600060208201905081810360008301526147f681614238565b9050919050565b600060208201905081810360008301526148168161425b565b9050919050565b600060208201905081810360008301526148368161427e565b9050919050565b60006020820190508181036000830152614856816142a1565b9050919050565b60006020820190508181036000830152614876816142c4565b9050919050565b60006020820190508181036000830152614896816142e7565b9050919050565b600060208201905081810360008301526148b68161430a565b9050919050565b60006020820190506148d2600083018461432d565b92915050565b60006148e26148f3565b90506148ee8282614b9a565b919050565b6000604051905090565b600067ffffffffffffffff82111561491857614917614d68565b5b61492182614db5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061499182614b0f565b915061499c83614b0f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149d1576149d0614c7d565b5b828201905092915050565b60006149e782614b0f565b91506149f283614b0f565b925082614a0257614a01614cac565b5b828204905092915050565b6000614a1882614b0f565b9150614a2383614b0f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a5c57614a5b614c7d565b5b828202905092915050565b6000614a7282614b0f565b9150614a7d83614b0f565b925082821015614a9057614a8f614c7d565b5b828203905092915050565b6000614aa682614aef565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b53578082015181840152602081019050614b38565b83811115614b62576000848401525b50505050565b60006002820490506001821680614b8057607f821691505b60208210811415614b9457614b93614d0a565b5b50919050565b614ba382614db5565b810181811067ffffffffffffffff82111715614bc257614bc1614d68565b5b80604052505050565b6000614bd682614b0f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c0957614c08614c7d565b5b600182019050919050565b6000614c1f82614c30565b9050919050565b6000819050919050565b6000614c3b82614dc6565b9050919050565b6000819050919050565b6000614c5782614b0f565b9150614c6283614b0f565b925082614c7257614c71614cac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f53616c6520697320636c6f736564000000000000000000000000000000000000600082015250565b7f4e6f6e6365207573656400000000000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b7f4e6f6e6365205573656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f457863656564204e465420737570706c79000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e6572206973206e6f74206275726e696e67000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4275726e206973206e6f74206c69766500000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f47696674696e6720636c6f736564000000000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f7420616c6c6f77656420746f206d696e7400000000000000000000000000600082015250565b7f47696674696e6720436c6f736564000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f57726f6e67207072696365000000000000000000000000000000000000000000600082015250565b7f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e00600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f457863656564206d617820746f206d696e740000000000000000000000000000600082015250565b61551381614a9b565b811461551e57600080fd5b50565b61552a81614aad565b811461553557600080fd5b50565b61554181614ac3565b811461554c57600080fd5b50565b61555881614b0f565b811461556357600080fd5b5056fea2646970667358221220e1565fe4d4c288a0dfb758c665d0c3ded76e4ce8c54b2cb8571d77faef356c3364736f6c63430008060033

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.