ETH Price: $3,102.90 (+1.13%)
Gas: 10 Gwei

Token

NFTYPass (NFTY)
 

Overview

Max Total Supply

222 NFTY

Holders

150

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
idriveactions.eth
Balance
1 NFTY
0x5B705164A2e3579dD7E2C1a0Ac8332ae53EbDF57
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:
NFTYPass

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

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

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

contract NFTYPass is ERC721, ERC721Enumerable, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    uint256 public constant TOKEN_COST = 2 ether;
    uint256 public constant TOKEN_RENEWAL = 1 ether;
    uint256 public constant TOKEN_MAXIMUM = 512;
    uint256 public constant OWNER_MAX_MINT = 10;

    bool public frozen;
    bool public purchasable;

    string public baseURI;

    uint256 public ownerMint;

    address private constant A = 0xc57112FB1872130A85ecF29877DD96042572a027;
    address private constant B = 0x69827Bf658898541380f78e0FBaF920ff020203b;

    address private signerAddress;

    mapping(uint256 => uint256) public tokenExpiry;
    mapping(address => uint256) private presalePurchases;

    constructor() ERC721("NFTYPass", "NFTY") {}

    modifier onlyEOA() {
        require(msg.sender == tx.origin, "NFTYPass: EOA Only");
        _;
    }

    function _isExpired(uint256 tokenId) internal view returns (bool) {
        return block.timestamp > tokenExpiry[tokenId];
    }

    function purchase() external payable onlyEOA {
        uint256 supply = totalSupply();

        require(!frozen, "NFTYPass: Contract frozen");
        require(msg.value >= TOKEN_COST, "NFTYPass: Invalid ether amount");
        require(purchasable, "NFTYPass: Sale is not live");
        require(
            supply + 1 <= TOKEN_MAXIMUM,
            "NFTYPass: Exceeds supply maximum"
        );
        require(
            balanceOf(msg.sender) == 0,
            "NFTYPass: One pass per individual"
        );

        uint256 tokenId = supply + 1;
        tokenExpiry[tokenId] = block.timestamp + 30 days;

        _safeMint(msg.sender, tokenId);
    }

    function validatePresale(bytes calldata signature)
        internal
        view
        returns (bool)
    {
        bytes32 hash = keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(msg.sender))
            )
        );

        return signerAddress == hash.recover(signature);
    }

    function presale(bytes calldata signature) external payable onlyEOA {
        uint256 supply = totalSupply();

        require(validatePresale(signature), "NFTYPass: Invalid Signature");
        require(!frozen, "NFTYPass: Contract frozen");
        require(msg.value >= TOKEN_COST, "NFTYPass: Invalid ether amount");
        require(
            supply + 1 <= TOKEN_MAXIMUM,
            "NFTYPass: Exceeds supply maximum"
        );
        require(
            presalePurchases[msg.sender] == 0,
            "NFTYPass: One pass per individual"
        );

        uint256 tokenId = supply + 1;
        presalePurchases[msg.sender]++;
        tokenExpiry[tokenId] = block.timestamp + 30 days;

        _safeMint(msg.sender, tokenId);
    }

    function sendGift(address to) external onlyOwner {
        uint256 supply = totalSupply();

        require(!frozen, "NFTYPass: Contract frozen");
        require(purchasable, "NFTYPass: Sale is not live");
        require(
            supply + 1 <= TOKEN_MAXIMUM,
            "NFTYPass: Exceeds supply maximum"
        );
        require(
            ownerMint + 1 <= OWNER_MAX_MINT,
            "NFTYPass: Exceeds owner mint"
        );
        require(balanceOf(to) == 0, "NFTYPass: One pass per individual");

        uint256 tokenId = supply + 1;

        ownerMint++;
        tokenExpiry[tokenId] = block.timestamp + 30 days;

        _safeMint(to, tokenId);
    }

    function renew(uint256 tokenId) external payable {
        require(_exists(tokenId), "NFTYPass: Token does not exist");
        require(msg.value >= TOKEN_RENEWAL, "NFTYPass: Invalid ether amount");

        if (_isExpired(tokenId)) {
            tokenExpiry[tokenId] = block.timestamp + 30 days;
        } else {
            tokenExpiry[tokenId] += 30 days;
        }
    }

    function enablePurchases() external onlyOwner {
        require(!frozen, "NFTYPass: Contract frozen");
        purchasable = true;
    }

    function freeze() external onlyOwner {
        require(!frozen, "NFTYPass: Contract frozen");
        frozen = true;
    }

    function setSignerAddress(address signer) external onlyOwner {
        signerAddress = signer;
    }

    function setExpiryTime(uint256 tokenId, uint256 time) external onlyOwner {
        require(!frozen, "NFTYPass: Contract frozen");
        require(_exists(tokenId), "NFTYPass: Token does not exist");

        tokenExpiry[tokenId] = time;
    }

    function isExpired(uint256 tokenId) external view returns (bool) {
        require(_exists(tokenId), "NFTYPass: Token does not exist");

        return _isExpired(tokenId);
    }

    function expiryTime(uint256 tokenId) external view returns (uint256) {
        require(_exists(tokenId), "NFTYPass: Token does not exist");

        return tokenExpiry[tokenId];
    }

    function _isTransferrable(uint256 tokenId) internal view returns (bool) {
        return
            !_isExpired(tokenId) &&
            (tokenExpiry[tokenId] - block.timestamp > 1 weeks);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        require(
            _isTransferrable(tokenId),
            "NFTYPass: Token must have at least 1 week remaining"
        );

        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string calldata uri) external onlyOwner {
        require(!frozen, "NFTYPass: Contract frozen");
        baseURI = uri;
    }

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

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

    function withdrawBalance() external onlyOwner {
        uint256 share = address(this).balance / 3;
        uint256 valueA = share * 2;
        uint256 valueB = share;

        (bool successA, ) = A.call{value: valueA}("");
        (bool successB, ) = B.call{value: valueB}("");

        require(successA && successB, "NFTYPass: Failed to withdraw");
    }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

File 3 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 4 of 14 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 5 of 14 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 6 of 14 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 7 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 14 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OWNER_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_MAXIMUM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_RENEWAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enablePurchases","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"expiryTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isExpired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"presale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"purchasable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"renew","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"sendGift","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setExpiryTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenExpiry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600881526020017f4e465459506173730000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4e46545900000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001a6565b508060019080519060200190620000af929190620001a6565b505050620000d2620000c6620000d860201b60201c565b620000e060201b60201c565b620002bb565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b49062000285565b90600052602060002090601f016020900481019282620001d8576000855562000224565b82601f10620001f357805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022357825182559160200191906001019062000206565b5b50905062000233919062000237565b5090565b5b808211156200025257600081600090555060010162000238565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200029e57607f821691505b60208210811415620002b557620002b462000256565b5b50919050565b615a0f80620002cb6000396000f3fe60806040526004361061023b5760003560e01c806364edfbf01161012e578063be010c40116100ab578063de2e61361161006f578063de2e613614610838578063dea8b74714610861578063e45393041461088c578063e985e9c5146108b5578063f2fde38b146108f25761023b565b8063be010c401461073f578063c87b56dd1461077c578063d5122350146107b9578063d6ee0639146107d0578063d9548e53146107fb5761023b565b806395d89b41116100f257806395d89b411461065a578063a22cb46514610685578063acced426146106ae578063b12dc991146106eb578063b88d4fde146107165761023b565b806364edfbf0146105a65780636c0360eb146105b057806370a08231146105db578063715018a6146106185780638da5cb5b1461062f5761023b565b80633aa35ee0116101bc5780635a88fd70116101805780635a88fd70146104f45780635baa75091461051f5780635fd8c7101461053b57806362a5af3b146105525780636352211e146105695761023b565b80633aa35ee01461040f5780633f3d83c31461043a57806342842e0e146104655780634f6ccce71461048e57806355f804b3146104cb5761023b565b8063095ea7b311610203578063095ea7b31461033957806318160ddd1461036257806323b872dd1461038d5780632665525f146103b65780632f745c59146103d25761023b565b806301ffc9a714610240578063046dc1661461027d578063054f7d9c146102a657806306fdde03146102d1578063081812fc146102fc575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613bf2565b61091b565b6040516102749190613c3a565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613cb3565b61092d565b005b3480156102b257600080fd5b506102bb6109ed565b6040516102c89190613c3a565b60405180910390f35b3480156102dd57600080fd5b506102e6610a00565b6040516102f39190613d79565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613dd1565b610a92565b6040516103309190613e0d565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613e28565b610b17565b005b34801561036e57600080fd5b50610377610c2f565b6040516103849190613e77565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613e92565b610c3c565b005b6103d060048036038101906103cb9190613f4a565b610c9c565b005b3480156103de57600080fd5b506103f960048036038101906103f49190613e28565b610f69565b6040516104069190613e77565b60405180910390f35b34801561041b57600080fd5b5061042461100e565b6040516104319190613e77565b60405180910390f35b34801561044657600080fd5b5061044f61101a565b60405161045c9190613c3a565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190613e92565b61102d565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613dd1565b61104d565b6040516104c29190613e77565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613fed565b6110be565b005b34801561050057600080fd5b506105096111a0565b6040516105169190613e77565b60405180910390f35b61053960048036038101906105349190613dd1565b6111a5565b005b34801561054757600080fd5b506105506112a2565b005b34801561055e57600080fd5b50610567611495565b005b34801561057557600080fd5b50610590600480360381019061058b9190613dd1565b61157e565b60405161059d9190613e0d565b60405180910390f35b6105ae611630565b005b3480156105bc57600080fd5b506105c5611875565b6040516105d29190613d79565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613cb3565b611903565b60405161060f9190613e77565b60405180910390f35b34801561062457600080fd5b5061062d6119bb565b005b34801561063b57600080fd5b50610644611a43565b6040516106519190613e0d565b60405180910390f35b34801561066657600080fd5b5061066f611a6d565b60405161067c9190613d79565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190614066565b611aff565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190613dd1565b611c80565b6040516106e29190613e77565b60405180910390f35b3480156106f757600080fd5b50610700611c98565b60405161070d9190613e77565b60405180910390f35b34801561072257600080fd5b5061073d600480360381019061073891906141d6565b611c9e565b005b34801561074b57600080fd5b5061076660048036038101906107619190613dd1565b611d00565b6040516107739190613e77565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613dd1565b611d65565b6040516107b09190613d79565b60405180910390f35b3480156107c557600080fd5b506107ce611e0d565b005b3480156107dc57600080fd5b506107e5611ef6565b6040516107f29190613e77565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190613dd1565b611f02565b60405161082f9190613c3a565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613cb3565b611f5c565b005b34801561086d57600080fd5b506108766121cf565b6040516108839190613e77565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190614259565b6121d5565b005b3480156108c157600080fd5b506108dc60048036038101906108d79190614299565b612305565b6040516108e99190613c3a565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613cb3565b612399565b005b600061092682612491565b9050919050565b61093561250b565b73ffffffffffffffffffffffffffffffffffffffff16610953611a43565b73ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090614325565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60149054906101000a900460ff1681565b606060008054610a0f90614374565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3b90614374565b8015610a885780601f10610a5d57610100808354040283529160200191610a88565b820191906000526020600020905b815481529060010190602001808311610a6b57829003601f168201915b5050505050905090565b6000610a9d82612513565b610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390614418565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b228261157e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906144aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb261250b565b73ffffffffffffffffffffffffffffffffffffffff161480610be15750610be081610bdb61250b565b612305565b5b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c179061453c565b60405180910390fd5b610c2a838361257f565b505050565b6000600880549050905090565b610c4d610c4761250b565b82612638565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906145ce565b60405180910390fd5b610c97838383612716565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d019061463a565b60405180910390fd5b6000610d14610c2f565b9050610d208383612972565b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906146a6565b60405180910390fd5b600a60149054906101000a900460ff1615610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690614712565b60405180910390fd5b671bc16d674ec80000341015610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df19061477e565b60405180910390fd5b610200600182610e0a91906147cd565b1115610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e429061486f565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490614901565b60405180910390fd5b6000600182610edc91906147cd565b9050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f2e90614921565b919050555062278d0042610f4291906147cd565b600e600083815260200190815260200160002081905550610f633382612a74565b50505050565b6000610f7483611903565b8210610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac906149dc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b671bc16d674ec8000081565b600a60159054906101000a900460ff1681565b61104883838360405180602001604052806000815250611c9e565b505050565b6000611057610c2f565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90614a6e565b60405180910390fd5b600882815481106110ac576110ab614a8e565b5b90600052602060002001549050919050565b6110c661250b565b73ffffffffffffffffffffffffffffffffffffffff166110e4611a43565b73ffffffffffffffffffffffffffffffffffffffff161461113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190614325565b60405180910390fd5b600a60149054906101000a900460ff161561118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614712565b60405180910390fd5b8181600b919061119b929190613ae3565b505050565b600a81565b6111ae81612513565b6111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490614b09565b60405180910390fd5b670de0b6b3a7640000341015611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f9061477e565b60405180910390fd5b61124181612a92565b156112715762278d004261125591906147cd565b600e60008381526020019081526020016000208190555061129f565b62278d00600e6000838152602001908152602001600020600082825461129791906147cd565b925050819055505b50565b6112aa61250b565b73ffffffffffffffffffffffffffffffffffffffff166112c8611a43565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590614325565b60405180910390fd5b600060034761132d9190614b58565b9050600060028261133e9190614b89565b90506000829050600073c57112fb1872130a85ecf29877dd96042572a02773ffffffffffffffffffffffffffffffffffffffff168360405161137f90614c14565b60006040518083038185875af1925050503d80600081146113bc576040519150601f19603f3d011682016040523d82523d6000602084013e6113c1565b606091505b5050905060007369827bf658898541380f78e0fbaf920ff020203b73ffffffffffffffffffffffffffffffffffffffff16836040516113ff90614c14565b60006040518083038185875af1925050503d806000811461143c576040519150601f19603f3d011682016040523d82523d6000602084013e611441565b606091505b5050905081801561144f5750805b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614c75565b60405180910390fd5b5050505050565b61149d61250b565b73ffffffffffffffffffffffffffffffffffffffff166114bb611a43565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890614325565b60405180910390fd5b600a60149054906101000a900460ff1615611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890614712565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90614d07565b60405180910390fd5b80915050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116959061463a565b60405180910390fd5b60006116a8610c2f565b9050600a60149054906101000a900460ff16156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190614712565b60405180910390fd5b671bc16d674ec80000341015611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c9061477e565b60405180910390fd5b600a60159054906101000a900460ff16611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90614d73565b60405180910390fd5b6102006001826117a491906147cd565b11156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc9061486f565b60405180910390fd5b60006117f033611903565b14611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790614901565b60405180910390fd5b600060018261183f91906147cd565b905062278d004261185091906147cd565b600e6000838152602001908152602001600020819055506118713382612a74565b5050565b600b805461188290614374565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90614374565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90614e05565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119c361250b565b73ffffffffffffffffffffffffffffffffffffffff166119e1611a43565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90614325565b60405180910390fd5b611a416000612ab1565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a7c90614374565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa890614374565b8015611af55780601f10611aca57610100808354040283529160200191611af5565b820191906000526020600020905b815481529060010190602001808311611ad857829003601f168201915b5050505050905090565b611b0761250b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614e71565b60405180910390fd5b8060056000611b8261250b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c2f61250b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c749190613c3a565b60405180910390a35050565b600e6020528060005260406000206000915090505481565b600c5481565b611caf611ca961250b565b83612638565b611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce5906145ce565b60405180910390fd5b611cfa84848484612b77565b50505050565b6000611d0b82612513565b611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190614b09565b60405180910390fd5b600e6000838152602001908152602001600020549050919050565b6060611d7082612513565b611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614f03565b60405180910390fd5b6000600b8054611dbe90614374565b905011611dda5760405180602001604052806000815250611e06565b600b611de583612bd3565b604051602001611df6929190614ff3565b6040516020818303038152906040525b9050919050565b611e1561250b565b73ffffffffffffffffffffffffffffffffffffffff16611e33611a43565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090614325565b60405180910390fd5b600a60149054906101000a900460ff1615611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed090614712565b60405180910390fd5b6001600a60156101000a81548160ff021916908315150217905550565b670de0b6b3a764000081565b6000611f0d82612513565b611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390614b09565b60405180910390fd5b611f5582612a92565b9050919050565b611f6461250b565b73ffffffffffffffffffffffffffffffffffffffff16611f82611a43565b73ffffffffffffffffffffffffffffffffffffffff1614611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf90614325565b60405180910390fd5b6000611fe2610c2f565b9050600a60149054906101000a900460ff1615612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b90614712565b60405180910390fd5b600a60159054906101000a900460ff16612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a90614d73565b60405180910390fd5b61020060018261209391906147cd565b11156120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb9061486f565b60405180910390fd5b600a6001600c546120e591906147cd565b1115612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90615063565b60405180910390fd5b600061213183611903565b14612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890614901565b60405180910390fd5b600060018261218091906147cd565b9050600c600081548092919061219590614921565b919050555062278d00426121a991906147cd565b600e6000838152602001908152602001600020819055506121ca8382612a74565b505050565b61020081565b6121dd61250b565b73ffffffffffffffffffffffffffffffffffffffff166121fb611a43565b73ffffffffffffffffffffffffffffffffffffffff1614612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890614325565b60405180910390fd5b600a60149054906101000a900460ff16156122a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229890614712565b60405180910390fd5b6122aa82612513565b6122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e090614b09565b60405180910390fd5b80600e6000848152602001908152602001600020819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123a161250b565b73ffffffffffffffffffffffffffffffffffffffff166123bf611a43565b73ffffffffffffffffffffffffffffffffffffffff1614612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c90614325565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c906150f5565b60405180910390fd5b61248e81612ab1565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612504575061250382612d34565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125f28361157e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061264382612513565b612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990615187565b60405180910390fd5b600061268d8361157e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126fc57508373ffffffffffffffffffffffffffffffffffffffff166126e484610a92565b73ffffffffffffffffffffffffffffffffffffffff16145b8061270d575061270c8185612305565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127368261157e565b73ffffffffffffffffffffffffffffffffffffffff161461278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390615219565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f3906152ab565b60405180910390fd5b612807838383612e16565b61281260008261257f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461286291906152cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b991906147cd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080336040516020016129869190615347565b604051602081830303815290604052805190602001206040516020016129ac91906153d9565b604051602081830303815290604052805190602001209050612a1b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505082612e6e90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161491505092915050565b612a8e828260405180602001604052806000815250612e95565b5050565b6000600e60008381526020019081526020016000205442119050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b82848484612716565b612b8e84848484612ef0565b612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490615471565b60405180910390fd5b50505050565b60606000821415612c1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d2f565b600082905060005b60008214612c4d578080612c3690614921565b915050600a82612c469190614b58565b9150612c23565b60008167ffffffffffffffff811115612c6957612c686140ab565b5b6040519080825280601f01601f191660200182016040528015612c9b5781602001600182028036833780820191505090505b5090505b60008514612d2857600182612cb491906152cb565b9150600a85612cc39190615491565b6030612ccf91906147cd565b60f81b818381518110612ce557612ce4614a8e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d219190614b58565b9450612c9f565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e0f5750612e0e82613087565b5b9050919050565b612e1f816130f1565b612e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5590615534565b60405180910390fd5b612e69838383613130565b505050565b6000806000612e7d8585613244565b91509150612e8a816132c7565b819250505092915050565b612e9f838361349c565b612eac6000848484612ef0565b612eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee290615471565b60405180910390fd5b505050565b6000612f118473ffffffffffffffffffffffffffffffffffffffff1661366a565b1561307a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3a61250b565b8786866040518563ffffffff1660e01b8152600401612f5c94939291906155a9565b602060405180830381600087803b158015612f7657600080fd5b505af1925050508015612fa757506040513d601f19601f82011682018060405250810190612fa4919061560a565b60015b61302a573d8060008114612fd7576040519150601f19603f3d011682016040523d82523d6000602084013e612fdc565b606091505b50600081511415613022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301990615471565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061307f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006130fc82612a92565b158015613129575062093a8042600e60008581526020019081526020016000205461312791906152cb565b115b9050919050565b61313b83838361367d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561317e5761317981613682565b6131bd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131bc576131bb83826136cb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613200576131fb81613838565b61323f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461323e5761323d8282613909565b5b5b505050565b6000806041835114156132865760008060006020860151925060408601519150606086015160001a905061327a87828585613988565b945094505050506132c0565b6040835114156132b75760008060208501519150604085015190506132ac868383613a95565b9350935050506132c0565b60006002915091505b9250929050565b600060048111156132db576132da615637565b5b8160048111156132ee576132ed615637565b5b14156132f957613499565b6001600481111561330d5761330c615637565b5b8160048111156133205761331f615637565b5b1415613361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613358906156b2565b60405180910390fd5b6002600481111561337557613374615637565b5b81600481111561338857613387615637565b5b14156133c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c09061571e565b60405180910390fd5b600360048111156133dd576133dc615637565b5b8160048111156133f0576133ef615637565b5b1415613431576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613428906157b0565b60405180910390fd5b60048081111561344457613443615637565b5b81600481111561345757613456615637565b5b1415613498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348f90615842565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561350c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613503906158ae565b60405180910390fd5b61351581612513565b15613555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354c9061591a565b60405180910390fd5b61356160008383612e16565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135b191906147cd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136d884611903565b6136e291906152cb565b90506000600760008481526020019081526020016000205490508181146137c7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061384c91906152cb565b905060006009600084815260200190815260200160002054905060006008838154811061387c5761387b614a8e565b5b90600052602060002001549050806008838154811061389e5761389d614a8e565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138ed576138ec61593a565b5b6001900381819060005260206000200160009055905550505050565b600061391483611903565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156139c3576000600391509150613a8c565b601b8560ff16141580156139db5750601c8560ff1614155b156139ed576000600491509150613a8c565b600060018787878760405160008152602001604052604051613a129493929190615994565b6020604051602081039080840390855afa158015613a34573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613a8357600060019250925050613a8c565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613ad587828885613988565b935093505050935093915050565b828054613aef90614374565b90600052602060002090601f016020900481019282613b115760008555613b58565b82601f10613b2a57803560ff1916838001178555613b58565b82800160010185558215613b58579182015b82811115613b57578235825591602001919060010190613b3c565b5b509050613b659190613b69565b5090565b5b80821115613b82576000816000905550600101613b6a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bcf81613b9a565b8114613bda57600080fd5b50565b600081359050613bec81613bc6565b92915050565b600060208284031215613c0857613c07613b90565b5b6000613c1684828501613bdd565b91505092915050565b60008115159050919050565b613c3481613c1f565b82525050565b6000602082019050613c4f6000830184613c2b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c8082613c55565b9050919050565b613c9081613c75565b8114613c9b57600080fd5b50565b600081359050613cad81613c87565b92915050565b600060208284031215613cc957613cc8613b90565b5b6000613cd784828501613c9e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d1a578082015181840152602081019050613cff565b83811115613d29576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4b82613ce0565b613d558185613ceb565b9350613d65818560208601613cfc565b613d6e81613d2f565b840191505092915050565b60006020820190508181036000830152613d938184613d40565b905092915050565b6000819050919050565b613dae81613d9b565b8114613db957600080fd5b50565b600081359050613dcb81613da5565b92915050565b600060208284031215613de757613de6613b90565b5b6000613df584828501613dbc565b91505092915050565b613e0781613c75565b82525050565b6000602082019050613e226000830184613dfe565b92915050565b60008060408385031215613e3f57613e3e613b90565b5b6000613e4d85828601613c9e565b9250506020613e5e85828601613dbc565b9150509250929050565b613e7181613d9b565b82525050565b6000602082019050613e8c6000830184613e68565b92915050565b600080600060608486031215613eab57613eaa613b90565b5b6000613eb986828701613c9e565b9350506020613eca86828701613c9e565b9250506040613edb86828701613dbc565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112613f0a57613f09613ee5565b5b8235905067ffffffffffffffff811115613f2757613f26613eea565b5b602083019150836001820283011115613f4357613f42613eef565b5b9250929050565b60008060208385031215613f6157613f60613b90565b5b600083013567ffffffffffffffff811115613f7f57613f7e613b95565b5b613f8b85828601613ef4565b92509250509250929050565b60008083601f840112613fad57613fac613ee5565b5b8235905067ffffffffffffffff811115613fca57613fc9613eea565b5b602083019150836001820283011115613fe657613fe5613eef565b5b9250929050565b6000806020838503121561400457614003613b90565b5b600083013567ffffffffffffffff81111561402257614021613b95565b5b61402e85828601613f97565b92509250509250929050565b61404381613c1f565b811461404e57600080fd5b50565b6000813590506140608161403a565b92915050565b6000806040838503121561407d5761407c613b90565b5b600061408b85828601613c9e565b925050602061409c85828601614051565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140e382613d2f565b810181811067ffffffffffffffff82111715614102576141016140ab565b5b80604052505050565b6000614115613b86565b905061412182826140da565b919050565b600067ffffffffffffffff821115614141576141406140ab565b5b61414a82613d2f565b9050602081019050919050565b82818337600083830152505050565b600061417961417484614126565b61410b565b905082815260208101848484011115614195576141946140a6565b5b6141a0848285614157565b509392505050565b600082601f8301126141bd576141bc613ee5565b5b81356141cd848260208601614166565b91505092915050565b600080600080608085870312156141f0576141ef613b90565b5b60006141fe87828801613c9e565b945050602061420f87828801613c9e565b935050604061422087828801613dbc565b925050606085013567ffffffffffffffff81111561424157614240613b95565b5b61424d878288016141a8565b91505092959194509250565b600080604083850312156142705761426f613b90565b5b600061427e85828601613dbc565b925050602061428f85828601613dbc565b9150509250929050565b600080604083850312156142b0576142af613b90565b5b60006142be85828601613c9e565b92505060206142cf85828601613c9e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061430f602083613ceb565b915061431a826142d9565b602082019050919050565b6000602082019050818103600083015261433e81614302565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061438c57607f821691505b602082108114156143a05761439f614345565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614402602c83613ceb565b915061440d826143a6565b604082019050919050565b60006020820190508181036000830152614431816143f5565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614494602183613ceb565b915061449f82614438565b604082019050919050565b600060208201905081810360008301526144c381614487565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614526603883613ceb565b9150614531826144ca565b604082019050919050565b6000602082019050818103600083015261455581614519565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006145b8603183613ceb565b91506145c38261455c565b604082019050919050565b600060208201905081810360008301526145e7816145ab565b9050919050565b7f4e465459506173733a20454f41204f6e6c790000000000000000000000000000600082015250565b6000614624601283613ceb565b915061462f826145ee565b602082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b7f4e465459506173733a20496e76616c6964205369676e61747572650000000000600082015250565b6000614690601b83613ceb565b915061469b8261465a565b602082019050919050565b600060208201905081810360008301526146bf81614683565b9050919050565b7f4e465459506173733a20436f6e74726163742066726f7a656e00000000000000600082015250565b60006146fc601983613ceb565b9150614707826146c6565b602082019050919050565b6000602082019050818103600083015261472b816146ef565b9050919050565b7f4e465459506173733a20496e76616c696420657468657220616d6f756e740000600082015250565b6000614768601e83613ceb565b915061477382614732565b602082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147d882613d9b565b91506147e383613d9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148185761481761479e565b5b828201905092915050565b7f4e465459506173733a204578636565647320737570706c79206d6178696d756d600082015250565b6000614859602083613ceb565b915061486482614823565b602082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b7f4e465459506173733a204f6e6520706173732070657220696e6469766964756160008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b60006148eb602183613ceb565b91506148f68261488f565b604082019050919050565b6000602082019050818103600083015261491a816148de565b9050919050565b600061492c82613d9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495f5761495e61479e565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006149c6602b83613ceb565b91506149d18261496a565b604082019050919050565b600060208201905081810360008301526149f5816149b9565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614a58602c83613ceb565b9150614a63826149fc565b604082019050919050565b60006020820190508181036000830152614a8781614a4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e465459506173733a20546f6b656e20646f6573206e6f742065786973740000600082015250565b6000614af3601e83613ceb565b9150614afe82614abd565b602082019050919050565b60006020820190508181036000830152614b2281614ae6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b6382613d9b565b9150614b6e83613d9b565b925082614b7e57614b7d614b29565b5b828204905092915050565b6000614b9482613d9b565b9150614b9f83613d9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bd857614bd761479e565b5b828202905092915050565b600081905092915050565b50565b6000614bfe600083614be3565b9150614c0982614bee565b600082019050919050565b6000614c1f82614bf1565b9150819050919050565b7f4e465459506173733a204661696c656420746f20776974686472617700000000600082015250565b6000614c5f601c83613ceb565b9150614c6a82614c29565b602082019050919050565b60006020820190508181036000830152614c8e81614c52565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614cf1602983613ceb565b9150614cfc82614c95565b604082019050919050565b60006020820190508181036000830152614d2081614ce4565b9050919050565b7f4e465459506173733a2053616c65206973206e6f74206c697665000000000000600082015250565b6000614d5d601a83613ceb565b9150614d6882614d27565b602082019050919050565b60006020820190508181036000830152614d8c81614d50565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614def602a83613ceb565b9150614dfa82614d93565b604082019050919050565b60006020820190508181036000830152614e1e81614de2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e5b601983613ceb565b9150614e6682614e25565b602082019050919050565b60006020820190508181036000830152614e8a81614e4e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614eed602f83613ceb565b9150614ef882614e91565b604082019050919050565b60006020820190508181036000830152614f1c81614ee0565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614f5081614374565b614f5a8186614f23565b94506001821660008114614f755760018114614f8657614fb9565b60ff19831686528186019350614fb9565b614f8f85614f2e565b60005b83811015614fb157815481890152600182019150602081019050614f92565b838801955050505b50505092915050565b6000614fcd82613ce0565b614fd78185614f23565b9350614fe7818560208601613cfc565b80840191505092915050565b6000614fff8285614f43565b915061500b8284614fc2565b91508190509392505050565b7f4e465459506173733a2045786365656473206f776e6572206d696e7400000000600082015250565b600061504d601c83613ceb565b915061505882615017565b602082019050919050565b6000602082019050818103600083015261507c81615040565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150df602683613ceb565b91506150ea82615083565b604082019050919050565b6000602082019050818103600083015261510e816150d2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615171602c83613ceb565b915061517c82615115565b604082019050919050565b600060208201905081810360008301526151a081615164565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615203602983613ceb565b915061520e826151a7565b604082019050919050565b60006020820190508181036000830152615232816151f6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615295602483613ceb565b91506152a082615239565b604082019050919050565b600060208201905081810360008301526152c481615288565b9050919050565b60006152d682613d9b565b91506152e183613d9b565b9250828210156152f4576152f361479e565b5b828203905092915050565b60008160601b9050919050565b6000615317826152ff565b9050919050565b60006153298261530c565b9050919050565b61534161533c82613c75565b61531e565b82525050565b60006153538284615330565b60148201915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615398601c83614f23565b91506153a382615362565b601c82019050919050565b6000819050919050565b6000819050919050565b6153d36153ce826153ae565b6153b8565b82525050565b60006153e48261538b565b91506153f082846153c2565b60208201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061545b603283613ceb565b9150615466826153ff565b604082019050919050565b6000602082019050818103600083015261548a8161544e565b9050919050565b600061549c82613d9b565b91506154a783613d9b565b9250826154b7576154b6614b29565b5b828206905092915050565b7f4e465459506173733a20546f6b656e206d7573742068617665206174206c656160008201527f73742031207765656b2072656d61696e696e6700000000000000000000000000602082015250565b600061551e603383613ceb565b9150615529826154c2565b604082019050919050565b6000602082019050818103600083015261554d81615511565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061557b82615554565b615585818561555f565b9350615595818560208601613cfc565b61559e81613d2f565b840191505092915050565b60006080820190506155be6000830187613dfe565b6155cb6020830186613dfe565b6155d86040830185613e68565b81810360608301526155ea8184615570565b905095945050505050565b60008151905061560481613bc6565b92915050565b6000602082840312156156205761561f613b90565b5b600061562e848285016155f5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061569c601883613ceb565b91506156a782615666565b602082019050919050565b600060208201905081810360008301526156cb8161568f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615708601f83613ceb565b9150615713826156d2565b602082019050919050565b60006020820190508181036000830152615737816156fb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061579a602283613ceb565b91506157a58261573e565b604082019050919050565b600060208201905081810360008301526157c98161578d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061582c602283613ceb565b9150615837826157d0565b604082019050919050565b6000602082019050818103600083015261585b8161581f565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615898602083613ceb565b91506158a382615862565b602082019050919050565b600060208201905081810360008301526158c78161588b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615904601c83613ceb565b915061590f826158ce565b602082019050919050565b60006020820190508181036000830152615933816158f7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b615972816153ae565b82525050565b600060ff82169050919050565b61598e81615978565b82525050565b60006080820190506159a96000830187615969565b6159b66020830186615985565b6159c36040830185615969565b6159d06060830184615969565b9594505050505056fea2646970667358221220da4eb88a1ab79dc4d71e97be920817ed1bc986f48a8f6f0cba86137930f8630564736f6c63430008090033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806364edfbf01161012e578063be010c40116100ab578063de2e61361161006f578063de2e613614610838578063dea8b74714610861578063e45393041461088c578063e985e9c5146108b5578063f2fde38b146108f25761023b565b8063be010c401461073f578063c87b56dd1461077c578063d5122350146107b9578063d6ee0639146107d0578063d9548e53146107fb5761023b565b806395d89b41116100f257806395d89b411461065a578063a22cb46514610685578063acced426146106ae578063b12dc991146106eb578063b88d4fde146107165761023b565b806364edfbf0146105a65780636c0360eb146105b057806370a08231146105db578063715018a6146106185780638da5cb5b1461062f5761023b565b80633aa35ee0116101bc5780635a88fd70116101805780635a88fd70146104f45780635baa75091461051f5780635fd8c7101461053b57806362a5af3b146105525780636352211e146105695761023b565b80633aa35ee01461040f5780633f3d83c31461043a57806342842e0e146104655780634f6ccce71461048e57806355f804b3146104cb5761023b565b8063095ea7b311610203578063095ea7b31461033957806318160ddd1461036257806323b872dd1461038d5780632665525f146103b65780632f745c59146103d25761023b565b806301ffc9a714610240578063046dc1661461027d578063054f7d9c146102a657806306fdde03146102d1578063081812fc146102fc575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613bf2565b61091b565b6040516102749190613c3a565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613cb3565b61092d565b005b3480156102b257600080fd5b506102bb6109ed565b6040516102c89190613c3a565b60405180910390f35b3480156102dd57600080fd5b506102e6610a00565b6040516102f39190613d79565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190613dd1565b610a92565b6040516103309190613e0d565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190613e28565b610b17565b005b34801561036e57600080fd5b50610377610c2f565b6040516103849190613e77565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613e92565b610c3c565b005b6103d060048036038101906103cb9190613f4a565b610c9c565b005b3480156103de57600080fd5b506103f960048036038101906103f49190613e28565b610f69565b6040516104069190613e77565b60405180910390f35b34801561041b57600080fd5b5061042461100e565b6040516104319190613e77565b60405180910390f35b34801561044657600080fd5b5061044f61101a565b60405161045c9190613c3a565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190613e92565b61102d565b005b34801561049a57600080fd5b506104b560048036038101906104b09190613dd1565b61104d565b6040516104c29190613e77565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed9190613fed565b6110be565b005b34801561050057600080fd5b506105096111a0565b6040516105169190613e77565b60405180910390f35b61053960048036038101906105349190613dd1565b6111a5565b005b34801561054757600080fd5b506105506112a2565b005b34801561055e57600080fd5b50610567611495565b005b34801561057557600080fd5b50610590600480360381019061058b9190613dd1565b61157e565b60405161059d9190613e0d565b60405180910390f35b6105ae611630565b005b3480156105bc57600080fd5b506105c5611875565b6040516105d29190613d79565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190613cb3565b611903565b60405161060f9190613e77565b60405180910390f35b34801561062457600080fd5b5061062d6119bb565b005b34801561063b57600080fd5b50610644611a43565b6040516106519190613e0d565b60405180910390f35b34801561066657600080fd5b5061066f611a6d565b60405161067c9190613d79565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190614066565b611aff565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190613dd1565b611c80565b6040516106e29190613e77565b60405180910390f35b3480156106f757600080fd5b50610700611c98565b60405161070d9190613e77565b60405180910390f35b34801561072257600080fd5b5061073d600480360381019061073891906141d6565b611c9e565b005b34801561074b57600080fd5b5061076660048036038101906107619190613dd1565b611d00565b6040516107739190613e77565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613dd1565b611d65565b6040516107b09190613d79565b60405180910390f35b3480156107c557600080fd5b506107ce611e0d565b005b3480156107dc57600080fd5b506107e5611ef6565b6040516107f29190613e77565b60405180910390f35b34801561080757600080fd5b50610822600480360381019061081d9190613dd1565b611f02565b60405161082f9190613c3a565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a9190613cb3565b611f5c565b005b34801561086d57600080fd5b506108766121cf565b6040516108839190613e77565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190614259565b6121d5565b005b3480156108c157600080fd5b506108dc60048036038101906108d79190614299565b612305565b6040516108e99190613c3a565b60405180910390f35b3480156108fe57600080fd5b5061091960048036038101906109149190613cb3565b612399565b005b600061092682612491565b9050919050565b61093561250b565b73ffffffffffffffffffffffffffffffffffffffff16610953611a43565b73ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090614325565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60149054906101000a900460ff1681565b606060008054610a0f90614374565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3b90614374565b8015610a885780601f10610a5d57610100808354040283529160200191610a88565b820191906000526020600020905b815481529060010190602001808311610a6b57829003601f168201915b5050505050905090565b6000610a9d82612513565b610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad390614418565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b228261157e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906144aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb261250b565b73ffffffffffffffffffffffffffffffffffffffff161480610be15750610be081610bdb61250b565b612305565b5b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c179061453c565b60405180910390fd5b610c2a838361257f565b505050565b6000600880549050905090565b610c4d610c4761250b565b82612638565b610c8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c83906145ce565b60405180910390fd5b610c97838383612716565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d019061463a565b60405180910390fd5b6000610d14610c2f565b9050610d208383612972565b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906146a6565b60405180910390fd5b600a60149054906101000a900460ff1615610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690614712565b60405180910390fd5b671bc16d674ec80000341015610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df19061477e565b60405180910390fd5b610200600182610e0a91906147cd565b1115610e4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e429061486f565b60405180910390fd5b6000600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490614901565b60405180910390fd5b6000600182610edc91906147cd565b9050600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610f2e90614921565b919050555062278d0042610f4291906147cd565b600e600083815260200190815260200160002081905550610f633382612a74565b50505050565b6000610f7483611903565b8210610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac906149dc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b671bc16d674ec8000081565b600a60159054906101000a900460ff1681565b61104883838360405180602001604052806000815250611c9e565b505050565b6000611057610c2f565b8210611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90614a6e565b60405180910390fd5b600882815481106110ac576110ab614a8e565b5b90600052602060002001549050919050565b6110c661250b565b73ffffffffffffffffffffffffffffffffffffffff166110e4611a43565b73ffffffffffffffffffffffffffffffffffffffff161461113a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113190614325565b60405180910390fd5b600a60149054906101000a900460ff161561118a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118190614712565b60405180910390fd5b8181600b919061119b929190613ae3565b505050565b600a81565b6111ae81612513565b6111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e490614b09565b60405180910390fd5b670de0b6b3a7640000341015611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122f9061477e565b60405180910390fd5b61124181612a92565b156112715762278d004261125591906147cd565b600e60008381526020019081526020016000208190555061129f565b62278d00600e6000838152602001908152602001600020600082825461129791906147cd565b925050819055505b50565b6112aa61250b565b73ffffffffffffffffffffffffffffffffffffffff166112c8611a43565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590614325565b60405180910390fd5b600060034761132d9190614b58565b9050600060028261133e9190614b89565b90506000829050600073c57112fb1872130a85ecf29877dd96042572a02773ffffffffffffffffffffffffffffffffffffffff168360405161137f90614c14565b60006040518083038185875af1925050503d80600081146113bc576040519150601f19603f3d011682016040523d82523d6000602084013e6113c1565b606091505b5050905060007369827bf658898541380f78e0fbaf920ff020203b73ffffffffffffffffffffffffffffffffffffffff16836040516113ff90614c14565b60006040518083038185875af1925050503d806000811461143c576040519150601f19603f3d011682016040523d82523d6000602084013e611441565b606091505b5050905081801561144f5750805b61148e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148590614c75565b60405180910390fd5b5050505050565b61149d61250b565b73ffffffffffffffffffffffffffffffffffffffff166114bb611a43565b73ffffffffffffffffffffffffffffffffffffffff1614611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890614325565b60405180910390fd5b600a60149054906101000a900460ff1615611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890614712565b60405180910390fd5b6001600a60146101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90614d07565b60405180910390fd5b80915050919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116959061463a565b60405180910390fd5b60006116a8610c2f565b9050600a60149054906101000a900460ff16156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190614712565b60405180910390fd5b671bc16d674ec80000341015611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c9061477e565b60405180910390fd5b600a60159054906101000a900460ff16611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90614d73565b60405180910390fd5b6102006001826117a491906147cd565b11156117e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dc9061486f565b60405180910390fd5b60006117f033611903565b14611830576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182790614901565b60405180910390fd5b600060018261183f91906147cd565b905062278d004261185091906147cd565b600e6000838152602001908152602001600020819055506118713382612a74565b5050565b600b805461188290614374565b80601f01602080910402602001604051908101604052809291908181526020018280546118ae90614374565b80156118fb5780601f106118d0576101008083540402835291602001916118fb565b820191906000526020600020905b8154815290600101906020018083116118de57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196b90614e05565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119c361250b565b73ffffffffffffffffffffffffffffffffffffffff166119e1611a43565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90614325565b60405180910390fd5b611a416000612ab1565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611a7c90614374565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa890614374565b8015611af55780601f10611aca57610100808354040283529160200191611af5565b820191906000526020600020905b815481529060010190602001808311611ad857829003601f168201915b5050505050905090565b611b0761250b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614e71565b60405180910390fd5b8060056000611b8261250b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c2f61250b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c749190613c3a565b60405180910390a35050565b600e6020528060005260406000206000915090505481565b600c5481565b611caf611ca961250b565b83612638565b611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce5906145ce565b60405180910390fd5b611cfa84848484612b77565b50505050565b6000611d0b82612513565b611d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4190614b09565b60405180910390fd5b600e6000838152602001908152602001600020549050919050565b6060611d7082612513565b611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614f03565b60405180910390fd5b6000600b8054611dbe90614374565b905011611dda5760405180602001604052806000815250611e06565b600b611de583612bd3565b604051602001611df6929190614ff3565b6040516020818303038152906040525b9050919050565b611e1561250b565b73ffffffffffffffffffffffffffffffffffffffff16611e33611a43565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8090614325565b60405180910390fd5b600a60149054906101000a900460ff1615611ed9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed090614712565b60405180910390fd5b6001600a60156101000a81548160ff021916908315150217905550565b670de0b6b3a764000081565b6000611f0d82612513565b611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390614b09565b60405180910390fd5b611f5582612a92565b9050919050565b611f6461250b565b73ffffffffffffffffffffffffffffffffffffffff16611f82611a43565b73ffffffffffffffffffffffffffffffffffffffff1614611fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fcf90614325565b60405180910390fd5b6000611fe2610c2f565b9050600a60149054906101000a900460ff1615612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b90614712565b60405180910390fd5b600a60159054906101000a900460ff16612083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207a90614d73565b60405180910390fd5b61020060018261209391906147cd565b11156120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb9061486f565b60405180910390fd5b600a6001600c546120e591906147cd565b1115612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90615063565b60405180910390fd5b600061213183611903565b14612171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216890614901565b60405180910390fd5b600060018261218091906147cd565b9050600c600081548092919061219590614921565b919050555062278d00426121a991906147cd565b600e6000838152602001908152602001600020819055506121ca8382612a74565b505050565b61020081565b6121dd61250b565b73ffffffffffffffffffffffffffffffffffffffff166121fb611a43565b73ffffffffffffffffffffffffffffffffffffffff1614612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224890614325565b60405180910390fd5b600a60149054906101000a900460ff16156122a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229890614712565b60405180910390fd5b6122aa82612513565b6122e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e090614b09565b60405180910390fd5b80600e6000848152602001908152602001600020819055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123a161250b565b73ffffffffffffffffffffffffffffffffffffffff166123bf611a43565b73ffffffffffffffffffffffffffffffffffffffff1614612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c90614325565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c906150f5565b60405180910390fd5b61248e81612ab1565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612504575061250382612d34565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125f28361157e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061264382612513565b612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990615187565b60405180910390fd5b600061268d8361157e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126fc57508373ffffffffffffffffffffffffffffffffffffffff166126e484610a92565b73ffffffffffffffffffffffffffffffffffffffff16145b8061270d575061270c8185612305565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166127368261157e565b73ffffffffffffffffffffffffffffffffffffffff161461278c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278390615219565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f3906152ab565b60405180910390fd5b612807838383612e16565b61281260008261257f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461286291906152cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128b991906147cd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080336040516020016129869190615347565b604051602081830303815290604052805190602001206040516020016129ac91906153d9565b604051602081830303815290604052805190602001209050612a1b84848080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505082612e6e90919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161491505092915050565b612a8e828260405180602001604052806000815250612e95565b5050565b6000600e60008381526020019081526020016000205442119050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612b82848484612716565b612b8e84848484612ef0565b612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490615471565b60405180910390fd5b50505050565b60606000821415612c1b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d2f565b600082905060005b60008214612c4d578080612c3690614921565b915050600a82612c469190614b58565b9150612c23565b60008167ffffffffffffffff811115612c6957612c686140ab565b5b6040519080825280601f01601f191660200182016040528015612c9b5781602001600182028036833780820191505090505b5090505b60008514612d2857600182612cb491906152cb565b9150600a85612cc39190615491565b6030612ccf91906147cd565b60f81b818381518110612ce557612ce4614a8e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d219190614b58565b9450612c9f565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612dff57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e0f5750612e0e82613087565b5b9050919050565b612e1f816130f1565b612e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5590615534565b60405180910390fd5b612e69838383613130565b505050565b6000806000612e7d8585613244565b91509150612e8a816132c7565b819250505092915050565b612e9f838361349c565b612eac6000848484612ef0565b612eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee290615471565b60405180910390fd5b505050565b6000612f118473ffffffffffffffffffffffffffffffffffffffff1661366a565b1561307a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f3a61250b565b8786866040518563ffffffff1660e01b8152600401612f5c94939291906155a9565b602060405180830381600087803b158015612f7657600080fd5b505af1925050508015612fa757506040513d601f19601f82011682018060405250810190612fa4919061560a565b60015b61302a573d8060008114612fd7576040519150601f19603f3d011682016040523d82523d6000602084013e612fdc565b606091505b50600081511415613022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301990615471565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061307f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006130fc82612a92565b158015613129575062093a8042600e60008581526020019081526020016000205461312791906152cb565b115b9050919050565b61313b83838361367d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561317e5761317981613682565b6131bd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131bc576131bb83826136cb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613200576131fb81613838565b61323f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461323e5761323d8282613909565b5b5b505050565b6000806041835114156132865760008060006020860151925060408601519150606086015160001a905061327a87828585613988565b945094505050506132c0565b6040835114156132b75760008060208501519150604085015190506132ac868383613a95565b9350935050506132c0565b60006002915091505b9250929050565b600060048111156132db576132da615637565b5b8160048111156132ee576132ed615637565b5b14156132f957613499565b6001600481111561330d5761330c615637565b5b8160048111156133205761331f615637565b5b1415613361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613358906156b2565b60405180910390fd5b6002600481111561337557613374615637565b5b81600481111561338857613387615637565b5b14156133c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c09061571e565b60405180910390fd5b600360048111156133dd576133dc615637565b5b8160048111156133f0576133ef615637565b5b1415613431576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613428906157b0565b60405180910390fd5b60048081111561344457613443615637565b5b81600481111561345757613456615637565b5b1415613498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348f90615842565b60405180910390fd5b5b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561350c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613503906158ae565b60405180910390fd5b61351581612513565b15613555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354c9061591a565b60405180910390fd5b61356160008383612e16565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135b191906147cd565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136d884611903565b6136e291906152cb565b90506000600760008481526020019081526020016000205490508181146137c7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061384c91906152cb565b905060006009600084815260200190815260200160002054905060006008838154811061387c5761387b614a8e565b5b90600052602060002001549050806008838154811061389e5761389d614a8e565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138ed576138ec61593a565b5b6001900381819060005260206000200160009055905550505050565b600061391483611903565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156139c3576000600391509150613a8c565b601b8560ff16141580156139db5750601c8560ff1614155b156139ed576000600491509150613a8c565b600060018787878760405160008152602001604052604051613a129493929190615994565b6020604051602081039080840390855afa158015613a34573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613a8357600060019250925050613a8c565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613ad587828885613988565b935093505050935093915050565b828054613aef90614374565b90600052602060002090601f016020900481019282613b115760008555613b58565b82601f10613b2a57803560ff1916838001178555613b58565b82800160010185558215613b58579182015b82811115613b57578235825591602001919060010190613b3c565b5b509050613b659190613b69565b5090565b5b80821115613b82576000816000905550600101613b6a565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bcf81613b9a565b8114613bda57600080fd5b50565b600081359050613bec81613bc6565b92915050565b600060208284031215613c0857613c07613b90565b5b6000613c1684828501613bdd565b91505092915050565b60008115159050919050565b613c3481613c1f565b82525050565b6000602082019050613c4f6000830184613c2b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c8082613c55565b9050919050565b613c9081613c75565b8114613c9b57600080fd5b50565b600081359050613cad81613c87565b92915050565b600060208284031215613cc957613cc8613b90565b5b6000613cd784828501613c9e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613d1a578082015181840152602081019050613cff565b83811115613d29576000848401525b50505050565b6000601f19601f8301169050919050565b6000613d4b82613ce0565b613d558185613ceb565b9350613d65818560208601613cfc565b613d6e81613d2f565b840191505092915050565b60006020820190508181036000830152613d938184613d40565b905092915050565b6000819050919050565b613dae81613d9b565b8114613db957600080fd5b50565b600081359050613dcb81613da5565b92915050565b600060208284031215613de757613de6613b90565b5b6000613df584828501613dbc565b91505092915050565b613e0781613c75565b82525050565b6000602082019050613e226000830184613dfe565b92915050565b60008060408385031215613e3f57613e3e613b90565b5b6000613e4d85828601613c9e565b9250506020613e5e85828601613dbc565b9150509250929050565b613e7181613d9b565b82525050565b6000602082019050613e8c6000830184613e68565b92915050565b600080600060608486031215613eab57613eaa613b90565b5b6000613eb986828701613c9e565b9350506020613eca86828701613c9e565b9250506040613edb86828701613dbc565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112613f0a57613f09613ee5565b5b8235905067ffffffffffffffff811115613f2757613f26613eea565b5b602083019150836001820283011115613f4357613f42613eef565b5b9250929050565b60008060208385031215613f6157613f60613b90565b5b600083013567ffffffffffffffff811115613f7f57613f7e613b95565b5b613f8b85828601613ef4565b92509250509250929050565b60008083601f840112613fad57613fac613ee5565b5b8235905067ffffffffffffffff811115613fca57613fc9613eea565b5b602083019150836001820283011115613fe657613fe5613eef565b5b9250929050565b6000806020838503121561400457614003613b90565b5b600083013567ffffffffffffffff81111561402257614021613b95565b5b61402e85828601613f97565b92509250509250929050565b61404381613c1f565b811461404e57600080fd5b50565b6000813590506140608161403a565b92915050565b6000806040838503121561407d5761407c613b90565b5b600061408b85828601613c9e565b925050602061409c85828601614051565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140e382613d2f565b810181811067ffffffffffffffff82111715614102576141016140ab565b5b80604052505050565b6000614115613b86565b905061412182826140da565b919050565b600067ffffffffffffffff821115614141576141406140ab565b5b61414a82613d2f565b9050602081019050919050565b82818337600083830152505050565b600061417961417484614126565b61410b565b905082815260208101848484011115614195576141946140a6565b5b6141a0848285614157565b509392505050565b600082601f8301126141bd576141bc613ee5565b5b81356141cd848260208601614166565b91505092915050565b600080600080608085870312156141f0576141ef613b90565b5b60006141fe87828801613c9e565b945050602061420f87828801613c9e565b935050604061422087828801613dbc565b925050606085013567ffffffffffffffff81111561424157614240613b95565b5b61424d878288016141a8565b91505092959194509250565b600080604083850312156142705761426f613b90565b5b600061427e85828601613dbc565b925050602061428f85828601613dbc565b9150509250929050565b600080604083850312156142b0576142af613b90565b5b60006142be85828601613c9e565b92505060206142cf85828601613c9e565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061430f602083613ceb565b915061431a826142d9565b602082019050919050565b6000602082019050818103600083015261433e81614302565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061438c57607f821691505b602082108114156143a05761439f614345565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614402602c83613ceb565b915061440d826143a6565b604082019050919050565b60006020820190508181036000830152614431816143f5565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614494602183613ceb565b915061449f82614438565b604082019050919050565b600060208201905081810360008301526144c381614487565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614526603883613ceb565b9150614531826144ca565b604082019050919050565b6000602082019050818103600083015261455581614519565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006145b8603183613ceb565b91506145c38261455c565b604082019050919050565b600060208201905081810360008301526145e7816145ab565b9050919050565b7f4e465459506173733a20454f41204f6e6c790000000000000000000000000000600082015250565b6000614624601283613ceb565b915061462f826145ee565b602082019050919050565b6000602082019050818103600083015261465381614617565b9050919050565b7f4e465459506173733a20496e76616c6964205369676e61747572650000000000600082015250565b6000614690601b83613ceb565b915061469b8261465a565b602082019050919050565b600060208201905081810360008301526146bf81614683565b9050919050565b7f4e465459506173733a20436f6e74726163742066726f7a656e00000000000000600082015250565b60006146fc601983613ceb565b9150614707826146c6565b602082019050919050565b6000602082019050818103600083015261472b816146ef565b9050919050565b7f4e465459506173733a20496e76616c696420657468657220616d6f756e740000600082015250565b6000614768601e83613ceb565b915061477382614732565b602082019050919050565b600060208201905081810360008301526147978161475b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006147d882613d9b565b91506147e383613d9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148185761481761479e565b5b828201905092915050565b7f4e465459506173733a204578636565647320737570706c79206d6178696d756d600082015250565b6000614859602083613ceb565b915061486482614823565b602082019050919050565b600060208201905081810360008301526148888161484c565b9050919050565b7f4e465459506173733a204f6e6520706173732070657220696e6469766964756160008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b60006148eb602183613ceb565b91506148f68261488f565b604082019050919050565b6000602082019050818103600083015261491a816148de565b9050919050565b600061492c82613d9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561495f5761495e61479e565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006149c6602b83613ceb565b91506149d18261496a565b604082019050919050565b600060208201905081810360008301526149f5816149b9565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614a58602c83613ceb565b9150614a63826149fc565b604082019050919050565b60006020820190508181036000830152614a8781614a4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e465459506173733a20546f6b656e20646f6573206e6f742065786973740000600082015250565b6000614af3601e83613ceb565b9150614afe82614abd565b602082019050919050565b60006020820190508181036000830152614b2281614ae6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b6382613d9b565b9150614b6e83613d9b565b925082614b7e57614b7d614b29565b5b828204905092915050565b6000614b9482613d9b565b9150614b9f83613d9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bd857614bd761479e565b5b828202905092915050565b600081905092915050565b50565b6000614bfe600083614be3565b9150614c0982614bee565b600082019050919050565b6000614c1f82614bf1565b9150819050919050565b7f4e465459506173733a204661696c656420746f20776974686472617700000000600082015250565b6000614c5f601c83613ceb565b9150614c6a82614c29565b602082019050919050565b60006020820190508181036000830152614c8e81614c52565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614cf1602983613ceb565b9150614cfc82614c95565b604082019050919050565b60006020820190508181036000830152614d2081614ce4565b9050919050565b7f4e465459506173733a2053616c65206973206e6f74206c697665000000000000600082015250565b6000614d5d601a83613ceb565b9150614d6882614d27565b602082019050919050565b60006020820190508181036000830152614d8c81614d50565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614def602a83613ceb565b9150614dfa82614d93565b604082019050919050565b60006020820190508181036000830152614e1e81614de2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614e5b601983613ceb565b9150614e6682614e25565b602082019050919050565b60006020820190508181036000830152614e8a81614e4e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614eed602f83613ceb565b9150614ef882614e91565b604082019050919050565b60006020820190508181036000830152614f1c81614ee0565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614f5081614374565b614f5a8186614f23565b94506001821660008114614f755760018114614f8657614fb9565b60ff19831686528186019350614fb9565b614f8f85614f2e565b60005b83811015614fb157815481890152600182019150602081019050614f92565b838801955050505b50505092915050565b6000614fcd82613ce0565b614fd78185614f23565b9350614fe7818560208601613cfc565b80840191505092915050565b6000614fff8285614f43565b915061500b8284614fc2565b91508190509392505050565b7f4e465459506173733a2045786365656473206f776e6572206d696e7400000000600082015250565b600061504d601c83613ceb565b915061505882615017565b602082019050919050565b6000602082019050818103600083015261507c81615040565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150df602683613ceb565b91506150ea82615083565b604082019050919050565b6000602082019050818103600083015261510e816150d2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615171602c83613ceb565b915061517c82615115565b604082019050919050565b600060208201905081810360008301526151a081615164565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615203602983613ceb565b915061520e826151a7565b604082019050919050565b60006020820190508181036000830152615232816151f6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615295602483613ceb565b91506152a082615239565b604082019050919050565b600060208201905081810360008301526152c481615288565b9050919050565b60006152d682613d9b565b91506152e183613d9b565b9250828210156152f4576152f361479e565b5b828203905092915050565b60008160601b9050919050565b6000615317826152ff565b9050919050565b60006153298261530c565b9050919050565b61534161533c82613c75565b61531e565b82525050565b60006153538284615330565b60148201915081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615398601c83614f23565b91506153a382615362565b601c82019050919050565b6000819050919050565b6000819050919050565b6153d36153ce826153ae565b6153b8565b82525050565b60006153e48261538b565b91506153f082846153c2565b60208201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061545b603283613ceb565b9150615466826153ff565b604082019050919050565b6000602082019050818103600083015261548a8161544e565b9050919050565b600061549c82613d9b565b91506154a783613d9b565b9250826154b7576154b6614b29565b5b828206905092915050565b7f4e465459506173733a20546f6b656e206d7573742068617665206174206c656160008201527f73742031207765656b2072656d61696e696e6700000000000000000000000000602082015250565b600061551e603383613ceb565b9150615529826154c2565b604082019050919050565b6000602082019050818103600083015261554d81615511565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061557b82615554565b615585818561555f565b9350615595818560208601613cfc565b61559e81613d2f565b840191505092915050565b60006080820190506155be6000830187613dfe565b6155cb6020830186613dfe565b6155d86040830185613e68565b81810360608301526155ea8184615570565b905095945050505050565b60008151905061560481613bc6565b92915050565b6000602082840312156156205761561f613b90565b5b600061562e848285016155f5565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061569c601883613ceb565b91506156a782615666565b602082019050919050565b600060208201905081810360008301526156cb8161568f565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615708601f83613ceb565b9150615713826156d2565b602082019050919050565b60006020820190508181036000830152615737816156fb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061579a602283613ceb565b91506157a58261573e565b604082019050919050565b600060208201905081810360008301526157c98161578d565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061582c602283613ceb565b9150615837826157d0565b604082019050919050565b6000602082019050818103600083015261585b8161581f565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615898602083613ceb565b91506158a382615862565b602082019050919050565b600060208201905081810360008301526158c78161588b565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615904601c83613ceb565b915061590f826158ce565b602082019050919050565b60006020820190508181036000830152615933816158f7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b615972816153ae565b82525050565b600060ff82169050919050565b61598e81615978565b82525050565b60006080820190506159a96000830187615969565b6159b66020830186615985565b6159c36040830185615969565b6159d06060830184615969565b9594505050505056fea2646970667358221220da4eb88a1ab79dc4d71e97be920817ed1bc986f48a8f6f0cba86137930f8630564736f6c63430008090033

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.