ETH Price: $3,281.30 (+0.81%)
Gas: 8 Gwei

Token

Intimita: By Stefano Contiero (INTIMITA)
 

Overview

Max Total Supply

333 INTIMITA

Holders

211

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 INTIMITA
0x6f8f40153f0a77f9A9EcC54a13E8Fc609262C8F6
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:
PaperCompatibleContract

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 22 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 2 of 22 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 3 of 22 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 4 of 22 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

File 5 of 22 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

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 See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        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 22 : ERC721Royalty.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Royalty.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../common/ERC2981.sol";
import "../../../utils/introspection/ERC165.sol";

/**
 * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment
 * information.
 *
 * Royalty information can be specified globally for all token ids via {ERC2981-_setDefaultRoyalty}, and/or individually for
 * specific token ids via {ERC2981-_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC721Royalty is ERC2981, ERC721 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);
        _resetTokenRoyalty(tokenId);
    }
}

File 7 of 22 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

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

    /**
     * @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);
}

File 8 of 22 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 22 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 10 of 22 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 11 of 22 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 12 of 22 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 13 of 22 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 14 of 22 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 15 of 22 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 16 of 22 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 17 of 22 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 18 of 22 : PaperCompatibleContract.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";

contract PaperCompatibleContract is 
    ERC721,
    ERC721Enumerable,
    Ownable, 
    ERC721Royalty,
    DefaultOperatorFilterer
{
    event ApprovedMinter(address indexed _minter);
    event RevokedMinter(address indexed _minter);

    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;
    string public uriPrefix;
    string public contractURI;
    uint public maxSupply;
    uint public startsAt;
    uint public startPrice;
    uint public floorPrice;
    uint public halfLifeIncrement;
    uint public secsBetweenLinearDecay;
    mapping (address => bool) public approvedToMint;

    constructor(uint _startsAt, string memory _uriPrefix, string memory _contractURI)
        ERC721("Intimita: By Stefano Contiero", "INTIMITA")
    {
        startsAt = _startsAt;
        uriPrefix = _uriPrefix;
        contractURI = _contractURI;

        maxSupply = 333;
        startPrice = 1.5 ether;
        floorPrice = 0.33 ether;
        halfLifeIncrement = 1080;
        secsBetweenLinearDecay = 180;
    }

    function isLive() public view returns (bool) {
        return block.timestamp >= startsAt;
    }

    function priceAt(uint timestamp) public view returns(uint){
        uint elapsed = timestamp - startsAt;
        uint half_life_period = elapsed / halfLifeIncrement;
        
        if(half_life_period > 20) return floorPrice;
        uint half_life_price = startPrice / (2 ** half_life_period);

        uint linear_period = elapsed % halfLifeIncrement / secsBetweenLinearDecay;
        uint linear_discount = (half_life_price / 2) * secsBetweenLinearDecay * linear_period / halfLifeIncrement;
        uint current_price = half_life_price - linear_discount;

        return Math.max(floorPrice,current_price);
    }

    function price() public view returns(uint){
        return priceAt(block.timestamp);
    }

    function remainingSupply() public view returns(uint) {
        uint256 tokenId = _tokenIdCounter.current();
        return Math.max(0, maxSupply-tokenId);
    }
    
    function safeMint(address _to, uint quantity) private
    {
        for (uint i = 0; i < quantity; i++) {
            uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
            _safeMint(_to, tokenId);
        }
    }

    function publicMint(address _to)
        external
        payable
    {
        require(isLive(), "Not live");
        require(msg.value >= price(),"Insufficient funds");
        require(remainingSupply() > 0, "Collection is sold out");
        require(approvedToMint[msg.sender],"unauthorized");
        safeMint(_to, 1);
    }

    function adminMint(address _to, uint quantity)
        external
        onlyOwner
    {
        require(remainingSupply() >= quantity, "Collection is sold out");
        safeMint(_to, quantity);
    }
    
    function getClaimIneligibilityReason() external view returns (string memory) {		
        if (isLive() == false) {		
            return "Token is not available for minting yet";		
        } else if (remainingSupply() < 1) {		
            return "Not enough supply";		
        }
        return "";		
    }

    function authorizeMinter(address _wallet) external onlyOwner {
        approvedToMint[_wallet]=true;
        emit ApprovedMinter(_wallet);
    }

    function revokeMinter(address _wallet) external onlyOwner {
       approvedToMint[_wallet]=false;
        emit RevokedMinter(_wallet);
    }

    /*
     * Set secondary market royalties using the EIP2981 standard
     * Royalties will be sent to the supplied `reciever` address
     * The royalty is calcuated feeNumerator / 10000
     * A 5% royalty, would use a feeNumerator of 500 (500/10000=.05)
     */
    function setRoyalties(address reciever, uint96 feeNumerator) external onlyOwner {
        _setDefaultRoyalty(reciever, feeNumerator);
    }

    function setStartsAt(uint256 _startsAt) public onlyOwner {
        startsAt = _startsAt;
    }

    function setStartPrice(uint _startPrice) public onlyOwner {
        startPrice = _startPrice;
    }

    function setFloorPrice(uint _floorPrice) public onlyOwner {
        floorPrice = _floorPrice;
    }

    function setMaxSupply(uint _maxSupply) public onlyOwner {		
         maxSupply = _maxSupply;
     }

    function setUriPrefix(string memory _prefix) public onlyOwner {		
         uriPrefix = _prefix;
     }

    function withdraw(address payable _to) external onlyOwner {
        (bool success, ) = _to.call{value: address(this).balance}("");
        require(success, "failure");
    }
 
    function tokenURI(uint256 _tokenId) public view virtual override (ERC721) returns (string memory) {
        require(_exists(_tokenId),"query for nonexistent token");
        return string.concat(uriPrefix,Strings.toString(_tokenId));
    }

    // The following functions are overrides required by Solidity.
    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

    function _burn(uint256 tokenId) internal override(ERC721,ERC721Royalty) {
        super._burn(tokenId);
    }

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

    // The following functions are required by OpenSea Operator Filter (https://github.com/ProjectOpenSea/operator-filter-registry)
    function setApprovalForAll(address operator, bool approved) public override(ERC721,IERC721) onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override(ERC721,IERC721) onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override(ERC721,IERC721) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721,IERC721) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override(ERC721,IERC721) onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

File 19 of 22 : DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {OperatorFilterer} from "./OperatorFilterer.sol";
import {CANONICAL_CORI_SUBSCRIPTION} from "./lib/Constants.sol";
/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 * @dev    Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    /// @dev The constructor that is called when the contract is being deployed.
    constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}

File 20 of 22 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    /**
     * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
     *         true if supplied registrant address is not registered.
     */
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);

    /**
     * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
     */
    function register(address registrant) external;

    /**
     * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
     */
    function registerAndSubscribe(address registrant, address subscription) external;

    /**
     * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
     *         address without subscribing.
     */
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;

    /**
     * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
     *         Note that this does not remove any filtered addresses or codeHashes.
     *         Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
     */
    function unregister(address addr) external;

    /**
     * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
     */
    function updateOperator(address registrant, address operator, bool filtered) external;

    /**
     * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
     */
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;

    /**
     * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
     */
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;

    /**
     * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
     */
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;

    /**
     * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
     *         subscription if present.
     *         Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
     *         subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
     *         used.
     */
    function subscribe(address registrant, address registrantToSubscribe) external;

    /**
     * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
     */
    function unsubscribe(address registrant, bool copyExistingEntries) external;

    /**
     * @notice Get the subscription address of a given registrant, if any.
     */
    function subscriptionOf(address addr) external returns (address registrant);

    /**
     * @notice Get the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscribers(address registrant) external returns (address[] memory);

    /**
     * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
     *         Note that order is not guaranteed as updates are made.
     */
    function subscriberAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
     */
    function copyEntriesOf(address registrant, address registrantToCopy) external;

    /**
     * @notice Returns true if operator is filtered by a given address or its subscription.
     */
    function isOperatorFiltered(address registrant, address operator) external returns (bool);

    /**
     * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
     */
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);

    /**
     * @notice Returns true if a codeHash is filtered by a given address or its subscription.
     */
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);

    /**
     * @notice Returns a list of filtered operators for a given address or its subscription.
     */
    function filteredOperators(address addr) external returns (address[] memory);

    /**
     * @notice Returns the set of filtered codeHashes for a given address or its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);

    /**
     * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);

    /**
     * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
     *         its subscription.
     *         Note that order is not guaranteed as updates are made.
     */
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);

    /**
     * @notice Returns true if an address has registered
     */
    function isRegistered(address addr) external returns (bool);

    /**
     * @dev Convenience method to compute the code hash of an arbitrary contract
     */
    function codeHashOf(address addr) external returns (bytes32);
}

File 21 of 22 : Constants.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E;
address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

File 22 of 22 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol";
/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 *         Please note that if your token contract does not provide an owner with EIP-173, it must provide
 *         administration methods on the contract itself to interact with the registry otherwise the subscription
 *         will be locked to the options set during construction.
 */

abstract contract OperatorFilterer {
    /// @dev Emitted when an operator is not allowed.
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);

    /// @dev The constructor that is called when the contract is being deployed.
    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @dev A helper function to check if an operator is allowed.
     */
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // under normal circumstances, this function will revert rather than return false, but inheriting contracts
            // may specify their own OperatorFilterRegistry implementations, which may behave differently
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startsAt","type":"uint256"},{"internalType":"string","name":"_uriPrefix","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":"_minter","type":"address"}],"name":"ApprovedMinter","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":"_minter","type":"address"}],"name":"RevokedMinter","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"approvedToMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"authorizeMinter","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"floorPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimIneligibilityReason","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"halfLifeIncrement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"priceAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"revokeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secsBetweenLinearDecay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_floorPrice","type":"uint256"}],"name":"setFloorPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"reciever","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startPrice","type":"uint256"}],"name":"setStartPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startsAt","type":"uint256"}],"name":"setStartsAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_prefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162005e8e38038062005e8e8339818101604052810190620000379190620005ff565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601d81526020017f496e74696d6974613a2042792053746566616e6f20436f6e746965726f0000008152506040518060400160405280600881526020017f494e54494d4954410000000000000000000000000000000000000000000000008152508160029081620000cb9190620008da565b508060039081620000dd9190620008da565b50505062000100620000f46200036360201b60201c565b6200036b60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002f5578015620001bb576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200018192919062000a06565b600060405180830381600087803b1580156200019c57600080fd5b505af1158015620001b1573d6000803e3d6000fd5b50505050620002f4565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000275576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200023b92919062000a06565b600060405180830381600087803b1580156200025657600080fd5b505af11580156200026b573d6000803e3d6000fd5b50505050620002f3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002be919062000a33565b600060405180830381600087803b158015620002d957600080fd5b505af1158015620002ee573d6000803e3d6000fd5b505050505b5b5b50508260118190555081600e90816200030f9190620008da565b5080600f9081620003219190620008da565b5061014d6010819055506714d1120d7b160000601281905550670494654067e1000060138190555061043860148190555060b460158190555050505062000a50565b600033905090565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b6200045a8162000445565b81146200046657600080fd5b50565b6000815190506200047a816200044f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004d5826200048a565b810181811067ffffffffffffffff82111715620004f757620004f66200049b565b5b80604052505050565b60006200050c62000431565b90506200051a8282620004ca565b919050565b600067ffffffffffffffff8211156200053d576200053c6200049b565b5b62000548826200048a565b9050602081019050919050565b60005b838110156200057557808201518184015260208101905062000558565b60008484015250505050565b60006200059862000592846200051f565b62000500565b905082815260208101848484011115620005b757620005b662000485565b5b620005c484828562000555565b509392505050565b600082601f830112620005e457620005e362000480565b5b8151620005f684826020860162000581565b91505092915050565b6000806000606084860312156200061b576200061a6200043b565b5b60006200062b8682870162000469565b935050602084015167ffffffffffffffff8111156200064f576200064e62000440565b5b6200065d86828701620005cc565b925050604084015167ffffffffffffffff81111562000681576200068062000440565b5b6200068f86828701620005cc565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006ec57607f821691505b602082108103620007025762000701620006a4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200076c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200072d565b6200077886836200072d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007bb620007b5620007af8462000445565b62000790565b62000445565b9050919050565b6000819050919050565b620007d7836200079a565b620007ef620007e682620007c2565b8484546200073a565b825550505050565b600090565b62000806620007f7565b62000813818484620007cc565b505050565b5b818110156200083b576200082f600082620007fc565b60018101905062000819565b5050565b601f8211156200088a57620008548162000708565b6200085f846200071d565b810160208510156200086f578190505b620008876200087e856200071d565b83018262000818565b50505b505050565b600082821c905092915050565b6000620008af600019846008026200088f565b1980831691505092915050565b6000620008ca83836200089c565b9150826002028217905092915050565b620008e58262000699565b67ffffffffffffffff8111156200090157620009006200049b565b5b6200090d8254620006d3565b6200091a8282856200083f565b600060209050601f8311600181146200095257600084156200093d578287015190505b620009498582620008bc565b865550620009b9565b601f198416620009628662000708565b60005b828110156200098c5784890151825560018201915060208501945060208101905062000965565b86831015620009ac5784890151620009a8601f8916826200089c565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009ee82620009c1565b9050919050565b62000a0081620009e1565b82525050565b600060408201905062000a1d6000830185620009f5565b62000a2c6020830184620009f5565b9392505050565b600060208201905062000a4a6000830184620009f5565b92915050565b61542e8062000a606000396000f3fe60806040526004361061027d5760003560e01c80637ec4a6591161014f578063c21b471b116100c1578063e58306f91161007a578063e58306f9146109b0578063e8a3d485146109d9578063e985e9c514610a04578063ee948c4014610a41578063f1a9af8914610a6c578063f2fde38b14610a975761027d565b8063c21b471b146108a0578063c87b56dd146108c9578063cfbd488514610906578063d595370c1461092f578063d5abeb011461095a578063da0239a6146109855761027d565b8063a035b1fe11610113578063a035b1fe146107a4578063a22cb465146107cf578063af468682146107f8578063b88d4fde14610823578063b8f7a6651461084c578063bf5fc2ee146108775761027d565b80637ec4a659146106bd5780638da5cb5b146106e65780639363c8121461071157806395d89b411461073c5780639dab2054146107675761027d565b806332a93a3a116101f35780635c27100f116101ac5780635c27100f146105ad57806362b99ad4146105d85780636352211e146106035780636f8b44b01461064057806370a0823114610669578063715018a6146106a65761027d565b806332a93a3a146104ae5780633d05829d146104ca57806341f43434146104f357806342842e0e1461051e5780634f6ccce71461054757806351cff8d9146105845761027d565b806317d861541161024557806317d861541461037957806318160ddd146103a257806323b872dd146103cd5780632a55205a146103f65780632f745c59146104345780632fe549e1146104715761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630c98483214610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613707565b610ac0565b6040516102b6919061374f565b60405180910390f35b3480156102cb57600080fd5b506102d4610ad2565b6040516102e191906137fa565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613852565b610b64565b60405161031e91906138c0565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613907565b610baa565b005b34801561035c57600080fd5b5061037760048036038101906103729190613947565b610bc3565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613852565b610c69565b005b3480156103ae57600080fd5b506103b7610c7b565b6040516103c49190613983565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef919061399e565b610c88565b005b34801561040257600080fd5b5061041d600480360381019061041891906139f1565b610cd7565b60405161042b929190613a31565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613907565b610ec1565b6040516104689190613983565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613947565b610f66565b6040516104a5919061374f565b60405180910390f35b6104c860048036038101906104c39190613947565b610f86565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190613852565b6110fb565b005b3480156104ff57600080fd5b5061050861110d565b6040516105159190613ab9565b60405180910390f35b34801561052a57600080fd5b506105456004803603810190610540919061399e565b61111f565b005b34801561055357600080fd5b5061056e60048036038101906105699190613852565b61116e565b60405161057b9190613983565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613b12565b6111df565b005b3480156105b957600080fd5b506105c2611297565b6040516105cf9190613983565b60405180910390f35b3480156105e457600080fd5b506105ed61129d565b6040516105fa91906137fa565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613852565b61132b565b60405161063791906138c0565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190613852565b6113b1565b005b34801561067557600080fd5b50610690600480360381019061068b9190613947565b6113c3565b60405161069d9190613983565b60405180910390f35b3480156106b257600080fd5b506106bb61147a565b005b3480156106c957600080fd5b506106e460048036038101906106df9190613c74565b61148e565b005b3480156106f257600080fd5b506106fb6114a9565b60405161070891906138c0565b60405180910390f35b34801561071d57600080fd5b506107266114d3565b6040516107339190613983565b60405180910390f35b34801561074857600080fd5b506107516114d9565b60405161075e91906137fa565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613852565b61156b565b60405161079b9190613983565b60405180910390f35b3480156107b057600080fd5b506107b9611642565b6040516107c69190613983565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613ce9565b611652565b005b34801561080457600080fd5b5061080d61166b565b60405161081a9190613983565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613dca565b611671565b005b34801561085857600080fd5b506108616116c2565b60405161086e919061374f565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613852565b6116cf565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613e91565b6116e1565b005b3480156108d557600080fd5b506108f060048036038101906108eb9190613852565b6116f7565b6040516108fd91906137fa565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190613947565b611773565b005b34801561093b57600080fd5b50610944611819565b6040516109519190613983565b60405180910390f35b34801561096657600080fd5b5061096f61181f565b60405161097c9190613983565b60405180910390f35b34801561099157600080fd5b5061099a611825565b6040516109a79190613983565b60405180910390f35b3480156109bc57600080fd5b506109d760048036038101906109d29190613907565b611852565b005b3480156109e557600080fd5b506109ee6118b2565b6040516109fb91906137fa565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a269190613ed1565b611940565b604051610a38919061374f565b60405180910390f35b348015610a4d57600080fd5b50610a566119d4565b604051610a6391906137fa565b60405180910390f35b348015610a7857600080fd5b50610a81611a6c565b604051610a8e9190613983565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190613947565b611a72565b005b6000610acb82611af5565b9050919050565b606060028054610ae190613f40565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0d90613f40565b8015610b5a5780601f10610b2f57610100808354040283529160200191610b5a565b820191906000526020600020905b815481529060010190602001808311610b3d57829003601f168201915b5050505050905090565b6000610b6f82611b07565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610bb481611b52565b610bbe8383611c4f565b505050565b610bcb611d66565b6001601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f47832ac497f485ee699e2d5493b0c49bfc5171587baea9dec6ae8ef434e8b69660405160405180910390a250565b610c71611d66565b8060128190555050565b6000600a80549050905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cc657610cc533611b52565b5b610cd1848484611de4565b50505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610e6c5760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e76611e44565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ea29190613fa0565b610eac9190614011565b90508160000151819350935050509250929050565b6000610ecc836113c3565b8210610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f04906140b4565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b610f8e6116c2565b610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490614120565b60405180910390fd5b610fd5611642565b341015611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e9061418c565b60405180910390fd5b6000611021611825565b11611061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611058906141f8565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490614264565b60405180910390fd5b6110f8816001611e4e565b50565b611103611d66565b8060138190555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461115d5761115c33611b52565b5b611168848484611e94565b50505050565b6000611178610c7b565b82106111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906142f6565b60405180910390fd5b600a82815481106111cd576111cc614316565b5b90600052602060002001549050919050565b6111e7611d66565b60008173ffffffffffffffffffffffffffffffffffffffff164760405161120d90614376565b60006040518083038185875af1925050503d806000811461124a576040519150601f19603f3d011682016040523d82523d6000602084013e61124f565b606091505b5050905080611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906143d7565b60405180910390fd5b5050565b60145481565b600e80546112aa90613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546112d690613f40565b80156113235780601f106112f857610100808354040283529160200191611323565b820191906000526020600020905b81548152906001019060200180831161130657829003601f168201915b505050505081565b60008061133783611eb4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90614443565b60405180910390fd5b80915050919050565b6113b9611d66565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a906144d5565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611482611d66565b61148c6000611ef1565b565b611496611d66565b80600e90816114a59190614697565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b6060600380546114e890613f40565b80601f016020809104026020016040519081016040528092919081815260200182805461151490613f40565b80156115615780601f1061153657610100808354040283529160200191611561565b820191906000526020600020905b81548152906001019060200180831161154457829003601f168201915b5050505050905090565b6000806011548361157c9190614769565b905060006014548261158e9190614011565b905060148111156115a5576013549250505061163d565b60008160026115b491906148d0565b6012546115c19190614011565b90506000601554601454856115d6919061491b565b6115e09190614011565b90506000601454826015546002866115f89190614011565b6116029190613fa0565b61160c9190613fa0565b6116169190614011565b9050600081846116269190614769565b905061163460135482611fb7565b96505050505050505b919050565b600061164d4261156b565b905090565b8161165c81611b52565b6116668383611fd0565b505050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116af576116ae33611b52565b5b6116bb85858585611fe6565b5050505050565b6000601154421015905090565b6116d7611d66565b8060118190555050565b6116e9611d66565b6116f38282612048565b5050565b6060611702826121dc565b611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890614998565b60405180910390fd5b600e61174c8361221d565b60405160200161175d929190614a77565b6040516020818303038152906040529050919050565b61177b611d66565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f8e768d7a5530d1f68e76ded405597f5ab4e340da31733f8704353e0b62b911f860405160405180910390a250565b60155481565b60105481565b600080611832600d6122eb565b905061184c6000826010546118479190614769565b611fb7565b91505090565b61185a611d66565b80611863611825565b10156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b906141f8565b60405180910390fd5b6118ae8282611e4e565b5050565b600f80546118bf90613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546118eb90613f40565b80156119385780601f1061190d57610100808354040283529160200191611938565b820191906000526020600020905b81548152906001019060200180831161191b57829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600015156119e26116c2565b151503611a09576040518060600160405280602681526020016153d3602691399050611a69565b6001611a13611825565b1015611a56576040518060400160405280601181526020017f4e6f7420656e6f75676820737570706c790000000000000000000000000000008152509050611a69565b6040518060200160405280600081525090505b90565b60125481565b611a7a611d66565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090614b0d565b60405180910390fd5b611af281611ef1565b50565b6000611b00826122f9565b9050919050565b611b10816121dc565b611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690614443565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c4c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611bc9929190614b2d565b602060405180830381865afa158015611be6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0a9190614b6b565b611c4b57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c4291906138c0565b60405180910390fd5b5b50565b6000611c5a8261132b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190614c0a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611ce9612373565b73ffffffffffffffffffffffffffffffffffffffff161480611d185750611d1781611d12612373565b611940565b5b611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90614c9c565b60405180910390fd5b611d61838361237b565b505050565b611d6e612373565b73ffffffffffffffffffffffffffffffffffffffff16611d8c6114a9565b73ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990614d08565b60405180910390fd5b565b611df5611def612373565b82612434565b611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90614d9a565b60405180910390fd5b611e3f8383836124c9565b505050565b6000612710905090565b60005b81811015611e8f576000611e65600d6122eb565b9050611e71600d6127c2565b611e7b84826127d8565b508080611e8790614dba565b915050611e51565b505050565b611eaf83838360405180602001604052806000815250611671565b505050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818311611fc65781611fc8565b825b905092915050565b611fe2611fdb612373565b83836127f6565b5050565b611ff7611ff1612373565b83612434565b612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90614d9a565b60405180910390fd5b61204284848484612962565b50505050565b612050611e44565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590614e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361211d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211490614ee0565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166121fe83611eb4565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161222c846129be565b01905060008167ffffffffffffffff81111561224b5761224a613b49565b5b6040519080825280601f01601f19166020018201604052801561227d5781602001600182028036833780820191505090505b509050600082602001820190505b6001156122e0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122d4576122d3613fe2565b5b0494506000850361228b575b819350505050919050565b600081600001549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061236c575061236b82612b11565b5b9050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123ee8361132b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806124408361132b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061248257506124818185611940565b5b806124c057508373ffffffffffffffffffffffffffffffffffffffff166124a884610b64565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124e98261132b565b73ffffffffffffffffffffffffffffffffffffffff161461253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690614f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a590615004565b60405180910390fd5b6125bb8383836001612bf3565b8273ffffffffffffffffffffffffffffffffffffffff166125db8261132b565b73ffffffffffffffffffffffffffffffffffffffff1614612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890614f72565b60405180910390fd5b6006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127bd8383836001612c05565b505050565b6001816000016000828254019250508190555050565b6127f2828260405180602001604052806000815250612c0b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90615070565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612955919061374f565b60405180910390a3505050565b61296d8484846124c9565b61297984848484612c66565b6129b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129af90615102565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a1c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a1257612a11613fe2565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a59576d04ee2d6d415b85acef81000000008381612a4f57612a4e613fe2565b5b0492506020810190505b662386f26fc100008310612a8857662386f26fc100008381612a7e57612a7d613fe2565b5b0492506010810190505b6305f5e1008310612ab1576305f5e1008381612aa757612aa6613fe2565b5b0492506008810190505b6127108310612ad6576127108381612acc57612acb613fe2565b5b0492506004810190505b60648310612af95760648381612aef57612aee613fe2565b5b0492506002810190505b600a8310612b08576001810190505b80915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bdc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bec5750612beb82612ded565b5b9050919050565b612bff84848484612e67565b50505050565b50505050565b612c158383612fc5565b612c226000848484612c66565b612c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5890615102565b60405180910390fd5b505050565b6000612c878473ffffffffffffffffffffffffffffffffffffffff166131e2565b15612de0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cb0612373565b8786866040518563ffffffff1660e01b8152600401612cd29493929190615177565b6020604051808303816000875af1925050508015612d0e57506040513d601f19601f82011682018060405250810190612d0b91906151d8565b60015b612d90573d8060008114612d3e576040519150601f19603f3d011682016040523d82523d6000602084013e612d43565b606091505b506000815103612d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7f90615102565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612de5565b600190505b949350505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e605750612e5f82613205565b5b9050919050565b612e738484848461326f565b6001811115612eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eae90615277565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612efe57612ef981613395565b612f3d565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612f3c57612f3b85826133de565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612f7f57612f7a8161354b565b612fbe565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612fbd57612fbc848261361c565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b906152e3565b60405180910390fd5b61303d816121dc565b1561307d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130749061534f565b60405180910390fd5b61308b600083836001612bf3565b613094816121dc565b156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb9061534f565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131de600083836001612c05565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600181111561338f57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146133035780600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132fb9190614769565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461338e5780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613386919061536f565b925050819055505b5b50505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133eb846113c3565b6133f59190614769565b90506000600960008481526020019081526020016000205490508181146134da576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061355f9190614769565b90506000600b60008481526020019081526020016000205490506000600a838154811061358f5761358e614316565b5b9060005260206000200154905080600a83815481106135b1576135b0614316565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613600576135ff6153a3565b5b6001900381819060005260206000200160009055905550505050565b6000613627836113c3565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136e4816136af565b81146136ef57600080fd5b50565b600081359050613701816136db565b92915050565b60006020828403121561371d5761371c6136a5565b5b600061372b848285016136f2565b91505092915050565b60008115159050919050565b61374981613734565b82525050565b60006020820190506137646000830184613740565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137a4578082015181840152602081019050613789565b60008484015250505050565b6000601f19601f8301169050919050565b60006137cc8261376a565b6137d68185613775565b93506137e6818560208601613786565b6137ef816137b0565b840191505092915050565b6000602082019050818103600083015261381481846137c1565b905092915050565b6000819050919050565b61382f8161381c565b811461383a57600080fd5b50565b60008135905061384c81613826565b92915050565b600060208284031215613868576138676136a5565b5b60006138768482850161383d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138aa8261387f565b9050919050565b6138ba8161389f565b82525050565b60006020820190506138d560008301846138b1565b92915050565b6138e48161389f565b81146138ef57600080fd5b50565b600081359050613901816138db565b92915050565b6000806040838503121561391e5761391d6136a5565b5b600061392c858286016138f2565b925050602061393d8582860161383d565b9150509250929050565b60006020828403121561395d5761395c6136a5565b5b600061396b848285016138f2565b91505092915050565b61397d8161381c565b82525050565b60006020820190506139986000830184613974565b92915050565b6000806000606084860312156139b7576139b66136a5565b5b60006139c5868287016138f2565b93505060206139d6868287016138f2565b92505060406139e78682870161383d565b9150509250925092565b60008060408385031215613a0857613a076136a5565b5b6000613a168582860161383d565b9250506020613a278582860161383d565b9150509250929050565b6000604082019050613a4660008301856138b1565b613a536020830184613974565b9392505050565b6000819050919050565b6000613a7f613a7a613a758461387f565b613a5a565b61387f565b9050919050565b6000613a9182613a64565b9050919050565b6000613aa382613a86565b9050919050565b613ab381613a98565b82525050565b6000602082019050613ace6000830184613aaa565b92915050565b6000613adf8261387f565b9050919050565b613aef81613ad4565b8114613afa57600080fd5b50565b600081359050613b0c81613ae6565b92915050565b600060208284031215613b2857613b276136a5565b5b6000613b3684828501613afd565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b81826137b0565b810181811067ffffffffffffffff82111715613ba057613b9f613b49565b5b80604052505050565b6000613bb361369b565b9050613bbf8282613b78565b919050565b600067ffffffffffffffff821115613bdf57613bde613b49565b5b613be8826137b0565b9050602081019050919050565b82818337600083830152505050565b6000613c17613c1284613bc4565b613ba9565b905082815260208101848484011115613c3357613c32613b44565b5b613c3e848285613bf5565b509392505050565b600082601f830112613c5b57613c5a613b3f565b5b8135613c6b848260208601613c04565b91505092915050565b600060208284031215613c8a57613c896136a5565b5b600082013567ffffffffffffffff811115613ca857613ca76136aa565b5b613cb484828501613c46565b91505092915050565b613cc681613734565b8114613cd157600080fd5b50565b600081359050613ce381613cbd565b92915050565b60008060408385031215613d0057613cff6136a5565b5b6000613d0e858286016138f2565b9250506020613d1f85828601613cd4565b9150509250929050565b600067ffffffffffffffff821115613d4457613d43613b49565b5b613d4d826137b0565b9050602081019050919050565b6000613d6d613d6884613d29565b613ba9565b905082815260208101848484011115613d8957613d88613b44565b5b613d94848285613bf5565b509392505050565b600082601f830112613db157613db0613b3f565b5b8135613dc1848260208601613d5a565b91505092915050565b60008060008060808587031215613de457613de36136a5565b5b6000613df2878288016138f2565b9450506020613e03878288016138f2565b9350506040613e148782880161383d565b925050606085013567ffffffffffffffff811115613e3557613e346136aa565b5b613e4187828801613d9c565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b613e6e81613e4d565b8114613e7957600080fd5b50565b600081359050613e8b81613e65565b92915050565b60008060408385031215613ea857613ea76136a5565b5b6000613eb6858286016138f2565b9250506020613ec785828601613e7c565b9150509250929050565b60008060408385031215613ee857613ee76136a5565b5b6000613ef6858286016138f2565b9250506020613f07858286016138f2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5857607f821691505b602082108103613f6b57613f6a613f11565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fab8261381c565b9150613fb68361381c565b9250828202613fc48161381c565b91508282048414831517613fdb57613fda613f71565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061401c8261381c565b91506140278361381c565b92508261403757614036613fe2565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061409e602b83613775565b91506140a982614042565b604082019050919050565b600060208201905081810360008301526140cd81614091565b9050919050565b7f4e6f74206c697665000000000000000000000000000000000000000000000000600082015250565b600061410a600883613775565b9150614115826140d4565b602082019050919050565b60006020820190508181036000830152614139816140fd565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614176601283613775565b915061418182614140565b602082019050919050565b600060208201905081810360008301526141a581614169565b9050919050565b7f436f6c6c656374696f6e20697320736f6c64206f757400000000000000000000600082015250565b60006141e2601683613775565b91506141ed826141ac565b602082019050919050565b60006020820190508181036000830152614211816141d5565b9050919050565b7f756e617574686f72697a65640000000000000000000000000000000000000000600082015250565b600061424e600c83613775565b915061425982614218565b602082019050919050565b6000602082019050818103600083015261427d81614241565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006142e0602c83613775565b91506142eb82614284565b604082019050919050565b6000602082019050818103600083015261430f816142d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b50565b6000614360600083614345565b915061436b82614350565b600082019050919050565b600061438182614353565b9150819050919050565b7f6661696c75726500000000000000000000000000000000000000000000000000600082015250565b60006143c1600783613775565b91506143cc8261438b565b602082019050919050565b600060208201905081810360008301526143f0816143b4565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061442d601883613775565b9150614438826143f7565b602082019050919050565b6000602082019050818103600083015261445c81614420565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006144bf602983613775565b91506144ca82614463565b604082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261451a565b614561868361451a565b95508019841693508086168417925050509392505050565b600061459461458f61458a8461381c565b613a5a565b61381c565b9050919050565b6000819050919050565b6145ae83614579565b6145c26145ba8261459b565b848454614527565b825550505050565b600090565b6145d76145ca565b6145e28184846145a5565b505050565b5b81811015614606576145fb6000826145cf565b6001810190506145e8565b5050565b601f82111561464b5761461c816144f5565b6146258461450a565b81016020851015614634578190505b6146486146408561450a565b8301826145e7565b50505b505050565b600082821c905092915050565b600061466e60001984600802614650565b1980831691505092915050565b6000614687838361465d565b9150826002028217905092915050565b6146a08261376a565b67ffffffffffffffff8111156146b9576146b8613b49565b5b6146c38254613f40565b6146ce82828561460a565b600060209050601f83116001811461470157600084156146ef578287015190505b6146f9858261467b565b865550614761565b601f19841661470f866144f5565b60005b8281101561473757848901518255600182019150602085019450602081019050614712565b868310156147545784890151614750601f89168261465d565b8355505b6001600288020188555050505b505050505050565b60006147748261381c565b915061477f8361381c565b925082820390508181111561479757614796613f71565b5b92915050565b60008160011c9050919050565b6000808291508390505b60018511156147f4578086048111156147d0576147cf613f71565b5b60018516156147df5780820291505b80810290506147ed8561479d565b94506147b4565b94509492505050565b60008261480d57600190506148c9565b8161481b57600090506148c9565b8160018114614831576002811461483b5761486a565b60019150506148c9565b60ff84111561484d5761484c613f71565b5b8360020a91508482111561486457614863613f71565b5b506148c9565b5060208310610133831016604e8410600b841016171561489f5782820a90508381111561489a57614899613f71565b5b6148c9565b6148ac84848460016147aa565b925090508184048111156148c3576148c2613f71565b5b81810290505b9392505050565b60006148db8261381c565b91506148e68361381c565b92506149137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846147fd565b905092915050565b60006149268261381c565b91506149318361381c565b92508261494157614940613fe2565b5b828206905092915050565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b6000614982601b83613775565b915061498d8261494c565b602082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b600081905092915050565b600081546149d081613f40565b6149da81866149b8565b945060018216600081146149f55760018114614a0a57614a3d565b60ff1983168652811515820286019350614a3d565b614a13856144f5565b60005b83811015614a3557815481890152600182019150602081019050614a16565b838801955050505b50505092915050565b6000614a518261376a565b614a5b81856149b8565b9350614a6b818560208601613786565b80840191505092915050565b6000614a8382856149c3565b9150614a8f8284614a46565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614af7602683613775565b9150614b0282614a9b565b604082019050919050565b60006020820190508181036000830152614b2681614aea565b9050919050565b6000604082019050614b4260008301856138b1565b614b4f60208301846138b1565b9392505050565b600081519050614b6581613cbd565b92915050565b600060208284031215614b8157614b806136a5565b5b6000614b8f84828501614b56565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf4602183613775565b9150614bff82614b98565b604082019050919050565b60006020820190508181036000830152614c2381614be7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614c86603d83613775565b9150614c9182614c2a565b604082019050919050565b60006020820190508181036000830152614cb581614c79565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614cf2602083613775565b9150614cfd82614cbc565b602082019050919050565b60006020820190508181036000830152614d2181614ce5565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614d84602d83613775565b9150614d8f82614d28565b604082019050919050565b60006020820190508181036000830152614db381614d77565b9050919050565b6000614dc58261381c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614df757614df6613f71565b5b600182019050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614e5e602a83613775565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614eca601983613775565b9150614ed582614e94565b602082019050919050565b60006020820190508181036000830152614ef981614ebd565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614f5c602583613775565b9150614f6782614f00565b604082019050919050565b60006020820190508181036000830152614f8b81614f4f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fee602483613775565b9150614ff982614f92565b604082019050919050565b6000602082019050818103600083015261501d81614fe1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061505a601983613775565b915061506582615024565b602082019050919050565b600060208201905081810360008301526150898161504d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006150ec603283613775565b91506150f782615090565b604082019050919050565b6000602082019050818103600083015261511b816150df565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061514982615122565b615153818561512d565b9350615163818560208601613786565b61516c816137b0565b840191505092915050565b600060808201905061518c60008301876138b1565b61519960208301866138b1565b6151a66040830185613974565b81810360608301526151b8818461513e565b905095945050505050565b6000815190506151d2816136db565b92915050565b6000602082840312156151ee576151ed6136a5565b5b60006151fc848285016151c3565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000615261603583613775565b915061526c82615205565b604082019050919050565b6000602082019050818103600083015261529081615254565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006152cd602083613775565b91506152d882615297565b602082019050919050565b600060208201905081810360008301526152fc816152c0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615339601c83613775565b915061534482615303565b602082019050919050565b600060208201905081810360008301526153688161532c565b9050919050565b600061537a8261381c565b91506153858361381c565b925082820190508082111561539d5761539c613f71565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe546f6b656e206973206e6f7420617661696c61626c6520666f72206d696e74696e6720796574a2646970667358221220841d303a56efcdb5911c39768815a8c799f410153d62d21fb63c5ab8ed8588cf64736f6c634300081100330000000000000000000000000000000000000000000000000000000063f7a9a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000035442410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6d6574612e746f6e69632e78797a2f636f6c6c656374696f6e732f696e74696d697461000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80637ec4a6591161014f578063c21b471b116100c1578063e58306f91161007a578063e58306f9146109b0578063e8a3d485146109d9578063e985e9c514610a04578063ee948c4014610a41578063f1a9af8914610a6c578063f2fde38b14610a975761027d565b8063c21b471b146108a0578063c87b56dd146108c9578063cfbd488514610906578063d595370c1461092f578063d5abeb011461095a578063da0239a6146109855761027d565b8063a035b1fe11610113578063a035b1fe146107a4578063a22cb465146107cf578063af468682146107f8578063b88d4fde14610823578063b8f7a6651461084c578063bf5fc2ee146108775761027d565b80637ec4a659146106bd5780638da5cb5b146106e65780639363c8121461071157806395d89b411461073c5780639dab2054146107675761027d565b806332a93a3a116101f35780635c27100f116101ac5780635c27100f146105ad57806362b99ad4146105d85780636352211e146106035780636f8b44b01461064057806370a0823114610669578063715018a6146106a65761027d565b806332a93a3a146104ae5780633d05829d146104ca57806341f43434146104f357806342842e0e1461051e5780634f6ccce71461054757806351cff8d9146105845761027d565b806317d861541161024557806317d861541461037957806318160ddd146103a257806323b872dd146103cd5780632a55205a146103f65780632f745c59146104345780632fe549e1146104715761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063095ea7b3146103275780630c98483214610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613707565b610ac0565b6040516102b6919061374f565b60405180910390f35b3480156102cb57600080fd5b506102d4610ad2565b6040516102e191906137fa565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190613852565b610b64565b60405161031e91906138c0565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613907565b610baa565b005b34801561035c57600080fd5b5061037760048036038101906103729190613947565b610bc3565b005b34801561038557600080fd5b506103a0600480360381019061039b9190613852565b610c69565b005b3480156103ae57600080fd5b506103b7610c7b565b6040516103c49190613983565b60405180910390f35b3480156103d957600080fd5b506103f460048036038101906103ef919061399e565b610c88565b005b34801561040257600080fd5b5061041d600480360381019061041891906139f1565b610cd7565b60405161042b929190613a31565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613907565b610ec1565b6040516104689190613983565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613947565b610f66565b6040516104a5919061374f565b60405180910390f35b6104c860048036038101906104c39190613947565b610f86565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190613852565b6110fb565b005b3480156104ff57600080fd5b5061050861110d565b6040516105159190613ab9565b60405180910390f35b34801561052a57600080fd5b506105456004803603810190610540919061399e565b61111f565b005b34801561055357600080fd5b5061056e60048036038101906105699190613852565b61116e565b60405161057b9190613983565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190613b12565b6111df565b005b3480156105b957600080fd5b506105c2611297565b6040516105cf9190613983565b60405180910390f35b3480156105e457600080fd5b506105ed61129d565b6040516105fa91906137fa565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613852565b61132b565b60405161063791906138c0565b60405180910390f35b34801561064c57600080fd5b5061066760048036038101906106629190613852565b6113b1565b005b34801561067557600080fd5b50610690600480360381019061068b9190613947565b6113c3565b60405161069d9190613983565b60405180910390f35b3480156106b257600080fd5b506106bb61147a565b005b3480156106c957600080fd5b506106e460048036038101906106df9190613c74565b61148e565b005b3480156106f257600080fd5b506106fb6114a9565b60405161070891906138c0565b60405180910390f35b34801561071d57600080fd5b506107266114d3565b6040516107339190613983565b60405180910390f35b34801561074857600080fd5b506107516114d9565b60405161075e91906137fa565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613852565b61156b565b60405161079b9190613983565b60405180910390f35b3480156107b057600080fd5b506107b9611642565b6040516107c69190613983565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613ce9565b611652565b005b34801561080457600080fd5b5061080d61166b565b60405161081a9190613983565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613dca565b611671565b005b34801561085857600080fd5b506108616116c2565b60405161086e919061374f565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613852565b6116cf565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613e91565b6116e1565b005b3480156108d557600080fd5b506108f060048036038101906108eb9190613852565b6116f7565b6040516108fd91906137fa565b60405180910390f35b34801561091257600080fd5b5061092d60048036038101906109289190613947565b611773565b005b34801561093b57600080fd5b50610944611819565b6040516109519190613983565b60405180910390f35b34801561096657600080fd5b5061096f61181f565b60405161097c9190613983565b60405180910390f35b34801561099157600080fd5b5061099a611825565b6040516109a79190613983565b60405180910390f35b3480156109bc57600080fd5b506109d760048036038101906109d29190613907565b611852565b005b3480156109e557600080fd5b506109ee6118b2565b6040516109fb91906137fa565b60405180910390f35b348015610a1057600080fd5b50610a2b6004803603810190610a269190613ed1565b611940565b604051610a38919061374f565b60405180910390f35b348015610a4d57600080fd5b50610a566119d4565b604051610a6391906137fa565b60405180910390f35b348015610a7857600080fd5b50610a81611a6c565b604051610a8e9190613983565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190613947565b611a72565b005b6000610acb82611af5565b9050919050565b606060028054610ae190613f40565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0d90613f40565b8015610b5a5780601f10610b2f57610100808354040283529160200191610b5a565b820191906000526020600020905b815481529060010190602001808311610b3d57829003601f168201915b5050505050905090565b6000610b6f82611b07565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610bb481611b52565b610bbe8383611c4f565b505050565b610bcb611d66565b6001601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f47832ac497f485ee699e2d5493b0c49bfc5171587baea9dec6ae8ef434e8b69660405160405180910390a250565b610c71611d66565b8060128190555050565b6000600a80549050905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cc657610cc533611b52565b5b610cd1848484611de4565b50505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610e6c5760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610e76611e44565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610ea29190613fa0565b610eac9190614011565b90508160000151819350935050509250929050565b6000610ecc836113c3565b8210610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f04906140b4565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b610f8e6116c2565b610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490614120565b60405180910390fd5b610fd5611642565b341015611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e9061418c565b60405180910390fd5b6000611021611825565b11611061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611058906141f8565b60405180910390fd5b601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166110ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e490614264565b60405180910390fd5b6110f8816001611e4e565b50565b611103611d66565b8060138190555050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461115d5761115c33611b52565b5b611168848484611e94565b50505050565b6000611178610c7b565b82106111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b0906142f6565b60405180910390fd5b600a82815481106111cd576111cc614316565b5b90600052602060002001549050919050565b6111e7611d66565b60008173ffffffffffffffffffffffffffffffffffffffff164760405161120d90614376565b60006040518083038185875af1925050503d806000811461124a576040519150601f19603f3d011682016040523d82523d6000602084013e61124f565b606091505b5050905080611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a906143d7565b60405180910390fd5b5050565b60145481565b600e80546112aa90613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546112d690613f40565b80156113235780601f106112f857610100808354040283529160200191611323565b820191906000526020600020905b81548152906001019060200180831161130657829003601f168201915b505050505081565b60008061133783611eb4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139f90614443565b60405180910390fd5b80915050919050565b6113b9611d66565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142a906144d5565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611482611d66565b61148c6000611ef1565b565b611496611d66565b80600e90816114a59190614697565b5050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60135481565b6060600380546114e890613f40565b80601f016020809104026020016040519081016040528092919081815260200182805461151490613f40565b80156115615780601f1061153657610100808354040283529160200191611561565b820191906000526020600020905b81548152906001019060200180831161154457829003601f168201915b5050505050905090565b6000806011548361157c9190614769565b905060006014548261158e9190614011565b905060148111156115a5576013549250505061163d565b60008160026115b491906148d0565b6012546115c19190614011565b90506000601554601454856115d6919061491b565b6115e09190614011565b90506000601454826015546002866115f89190614011565b6116029190613fa0565b61160c9190613fa0565b6116169190614011565b9050600081846116269190614769565b905061163460135482611fb7565b96505050505050505b919050565b600061164d4261156b565b905090565b8161165c81611b52565b6116668383611fd0565b505050565b60115481565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116af576116ae33611b52565b5b6116bb85858585611fe6565b5050505050565b6000601154421015905090565b6116d7611d66565b8060118190555050565b6116e9611d66565b6116f38282612048565b5050565b6060611702826121dc565b611741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173890614998565b60405180910390fd5b600e61174c8361221d565b60405160200161175d929190614a77565b6040516020818303038152906040529050919050565b61177b611d66565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f8e768d7a5530d1f68e76ded405597f5ab4e340da31733f8704353e0b62b911f860405160405180910390a250565b60155481565b60105481565b600080611832600d6122eb565b905061184c6000826010546118479190614769565b611fb7565b91505090565b61185a611d66565b80611863611825565b10156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b906141f8565b60405180910390fd5b6118ae8282611e4e565b5050565b600f80546118bf90613f40565b80601f01602080910402602001604051908101604052809291908181526020018280546118eb90613f40565b80156119385780601f1061190d57610100808354040283529160200191611938565b820191906000526020600020905b81548152906001019060200180831161191b57829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600015156119e26116c2565b151503611a09576040518060600160405280602681526020016153d3602691399050611a69565b6001611a13611825565b1015611a56576040518060400160405280601181526020017f4e6f7420656e6f75676820737570706c790000000000000000000000000000008152509050611a69565b6040518060200160405280600081525090505b90565b60125481565b611a7a611d66565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae090614b0d565b60405180910390fd5b611af281611ef1565b50565b6000611b00826122f9565b9050919050565b611b10816121dc565b611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690614443565b60405180910390fd5b50565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611c4c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611bc9929190614b2d565b602060405180830381865afa158015611be6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c0a9190614b6b565b611c4b57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611c4291906138c0565b60405180910390fd5b5b50565b6000611c5a8261132b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc190614c0a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611ce9612373565b73ffffffffffffffffffffffffffffffffffffffff161480611d185750611d1781611d12612373565b611940565b5b611d57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4e90614c9c565b60405180910390fd5b611d61838361237b565b505050565b611d6e612373565b73ffffffffffffffffffffffffffffffffffffffff16611d8c6114a9565b73ffffffffffffffffffffffffffffffffffffffff1614611de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd990614d08565b60405180910390fd5b565b611df5611def612373565b82612434565b611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90614d9a565b60405180910390fd5b611e3f8383836124c9565b505050565b6000612710905090565b60005b81811015611e8f576000611e65600d6122eb565b9050611e71600d6127c2565b611e7b84826127d8565b508080611e8790614dba565b915050611e51565b505050565b611eaf83838360405180602001604052806000815250611671565b505050565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818311611fc65781611fc8565b825b905092915050565b611fe2611fdb612373565b83836127f6565b5050565b611ff7611ff1612373565b83612434565b612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d90614d9a565b60405180910390fd5b61204284848484612962565b50505050565b612050611e44565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590614e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361211d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211490614ee0565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166121fe83611eb4565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161222c846129be565b01905060008167ffffffffffffffff81111561224b5761224a613b49565b5b6040519080825280601f01601f19166020018201604052801561227d5781602001600182028036833780820191505090505b509050600082602001820190505b6001156122e0578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122d4576122d3613fe2565b5b0494506000850361228b575b819350505050919050565b600081600001549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061236c575061236b82612b11565b5b9050919050565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123ee8361132b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806124408361132b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061248257506124818185611940565b5b806124c057508373ffffffffffffffffffffffffffffffffffffffff166124a884610b64565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124e98261132b565b73ffffffffffffffffffffffffffffffffffffffff161461253f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253690614f72565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036125ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a590615004565b60405180910390fd5b6125bb8383836001612bf3565b8273ffffffffffffffffffffffffffffffffffffffff166125db8261132b565b73ffffffffffffffffffffffffffffffffffffffff1614612631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262890614f72565b60405180910390fd5b6006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127bd8383836001612c05565b505050565b6001816000016000828254019250508190555050565b6127f2828260405180602001604052806000815250612c0b565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90615070565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612955919061374f565b60405180910390a3505050565b61296d8484846124c9565b61297984848484612c66565b6129b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129af90615102565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612a1c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612a1257612a11613fe2565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612a59576d04ee2d6d415b85acef81000000008381612a4f57612a4e613fe2565b5b0492506020810190505b662386f26fc100008310612a8857662386f26fc100008381612a7e57612a7d613fe2565b5b0492506010810190505b6305f5e1008310612ab1576305f5e1008381612aa757612aa6613fe2565b5b0492506008810190505b6127108310612ad6576127108381612acc57612acb613fe2565b5b0492506004810190505b60648310612af95760648381612aef57612aee613fe2565b5b0492506002810190505b600a8310612b08576001810190505b80915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bdc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612bec5750612beb82612ded565b5b9050919050565b612bff84848484612e67565b50505050565b50505050565b612c158383612fc5565b612c226000848484612c66565b612c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5890615102565b60405180910390fd5b505050565b6000612c878473ffffffffffffffffffffffffffffffffffffffff166131e2565b15612de0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cb0612373565b8786866040518563ffffffff1660e01b8152600401612cd29493929190615177565b6020604051808303816000875af1925050508015612d0e57506040513d601f19601f82011682018060405250810190612d0b91906151d8565b60015b612d90573d8060008114612d3e576040519150601f19603f3d011682016040523d82523d6000602084013e612d43565b606091505b506000815103612d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7f90615102565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612de5565b600190505b949350505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e605750612e5f82613205565b5b9050919050565b612e738484848461326f565b6001811115612eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eae90615277565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612efe57612ef981613395565b612f3d565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614612f3c57612f3b85826133de565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612f7f57612f7a8161354b565b612fbe565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612fbd57612fbc848261361c565b5b5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302b906152e3565b60405180910390fd5b61303d816121dc565b1561307d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130749061534f565b60405180910390fd5b61308b600083836001612bf3565b613094816121dc565b156130d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cb9061534f565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131de600083836001612c05565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600181111561338f57600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146133035780600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132fb9190614769565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461338e5780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613386919061536f565b925050819055505b5b50505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133eb846113c3565b6133f59190614769565b90506000600960008481526020019081526020016000205490508181146134da576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a8054905061355f9190614769565b90506000600b60008481526020019081526020016000205490506000600a838154811061358f5761358e614316565b5b9060005260206000200154905080600a83815481106135b1576135b0614316565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a805480613600576135ff6153a3565b5b6001900381819060005260206000200160009055905550505050565b6000613627836113c3565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136e4816136af565b81146136ef57600080fd5b50565b600081359050613701816136db565b92915050565b60006020828403121561371d5761371c6136a5565b5b600061372b848285016136f2565b91505092915050565b60008115159050919050565b61374981613734565b82525050565b60006020820190506137646000830184613740565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137a4578082015181840152602081019050613789565b60008484015250505050565b6000601f19601f8301169050919050565b60006137cc8261376a565b6137d68185613775565b93506137e6818560208601613786565b6137ef816137b0565b840191505092915050565b6000602082019050818103600083015261381481846137c1565b905092915050565b6000819050919050565b61382f8161381c565b811461383a57600080fd5b50565b60008135905061384c81613826565b92915050565b600060208284031215613868576138676136a5565b5b60006138768482850161383d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138aa8261387f565b9050919050565b6138ba8161389f565b82525050565b60006020820190506138d560008301846138b1565b92915050565b6138e48161389f565b81146138ef57600080fd5b50565b600081359050613901816138db565b92915050565b6000806040838503121561391e5761391d6136a5565b5b600061392c858286016138f2565b925050602061393d8582860161383d565b9150509250929050565b60006020828403121561395d5761395c6136a5565b5b600061396b848285016138f2565b91505092915050565b61397d8161381c565b82525050565b60006020820190506139986000830184613974565b92915050565b6000806000606084860312156139b7576139b66136a5565b5b60006139c5868287016138f2565b93505060206139d6868287016138f2565b92505060406139e78682870161383d565b9150509250925092565b60008060408385031215613a0857613a076136a5565b5b6000613a168582860161383d565b9250506020613a278582860161383d565b9150509250929050565b6000604082019050613a4660008301856138b1565b613a536020830184613974565b9392505050565b6000819050919050565b6000613a7f613a7a613a758461387f565b613a5a565b61387f565b9050919050565b6000613a9182613a64565b9050919050565b6000613aa382613a86565b9050919050565b613ab381613a98565b82525050565b6000602082019050613ace6000830184613aaa565b92915050565b6000613adf8261387f565b9050919050565b613aef81613ad4565b8114613afa57600080fd5b50565b600081359050613b0c81613ae6565b92915050565b600060208284031215613b2857613b276136a5565b5b6000613b3684828501613afd565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b81826137b0565b810181811067ffffffffffffffff82111715613ba057613b9f613b49565b5b80604052505050565b6000613bb361369b565b9050613bbf8282613b78565b919050565b600067ffffffffffffffff821115613bdf57613bde613b49565b5b613be8826137b0565b9050602081019050919050565b82818337600083830152505050565b6000613c17613c1284613bc4565b613ba9565b905082815260208101848484011115613c3357613c32613b44565b5b613c3e848285613bf5565b509392505050565b600082601f830112613c5b57613c5a613b3f565b5b8135613c6b848260208601613c04565b91505092915050565b600060208284031215613c8a57613c896136a5565b5b600082013567ffffffffffffffff811115613ca857613ca76136aa565b5b613cb484828501613c46565b91505092915050565b613cc681613734565b8114613cd157600080fd5b50565b600081359050613ce381613cbd565b92915050565b60008060408385031215613d0057613cff6136a5565b5b6000613d0e858286016138f2565b9250506020613d1f85828601613cd4565b9150509250929050565b600067ffffffffffffffff821115613d4457613d43613b49565b5b613d4d826137b0565b9050602081019050919050565b6000613d6d613d6884613d29565b613ba9565b905082815260208101848484011115613d8957613d88613b44565b5b613d94848285613bf5565b509392505050565b600082601f830112613db157613db0613b3f565b5b8135613dc1848260208601613d5a565b91505092915050565b60008060008060808587031215613de457613de36136a5565b5b6000613df2878288016138f2565b9450506020613e03878288016138f2565b9350506040613e148782880161383d565b925050606085013567ffffffffffffffff811115613e3557613e346136aa565b5b613e4187828801613d9c565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b613e6e81613e4d565b8114613e7957600080fd5b50565b600081359050613e8b81613e65565b92915050565b60008060408385031215613ea857613ea76136a5565b5b6000613eb6858286016138f2565b9250506020613ec785828601613e7c565b9150509250929050565b60008060408385031215613ee857613ee76136a5565b5b6000613ef6858286016138f2565b9250506020613f07858286016138f2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613f5857607f821691505b602082108103613f6b57613f6a613f11565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fab8261381c565b9150613fb68361381c565b9250828202613fc48161381c565b91508282048414831517613fdb57613fda613f71565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061401c8261381c565b91506140278361381c565b92508261403757614036613fe2565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b600061409e602b83613775565b91506140a982614042565b604082019050919050565b600060208201905081810360008301526140cd81614091565b9050919050565b7f4e6f74206c697665000000000000000000000000000000000000000000000000600082015250565b600061410a600883613775565b9150614115826140d4565b602082019050919050565b60006020820190508181036000830152614139816140fd565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000614176601283613775565b915061418182614140565b602082019050919050565b600060208201905081810360008301526141a581614169565b9050919050565b7f436f6c6c656374696f6e20697320736f6c64206f757400000000000000000000600082015250565b60006141e2601683613775565b91506141ed826141ac565b602082019050919050565b60006020820190508181036000830152614211816141d5565b9050919050565b7f756e617574686f72697a65640000000000000000000000000000000000000000600082015250565b600061424e600c83613775565b915061425982614218565b602082019050919050565b6000602082019050818103600083015261427d81614241565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006142e0602c83613775565b91506142eb82614284565b604082019050919050565b6000602082019050818103600083015261430f816142d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b50565b6000614360600083614345565b915061436b82614350565b600082019050919050565b600061438182614353565b9150819050919050565b7f6661696c75726500000000000000000000000000000000000000000000000000600082015250565b60006143c1600783613775565b91506143cc8261438b565b602082019050919050565b600060208201905081810360008301526143f0816143b4565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061442d601883613775565b9150614438826143f7565b602082019050919050565b6000602082019050818103600083015261445c81614420565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006144bf602983613775565b91506144ca82614463565b604082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026145577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261451a565b614561868361451a565b95508019841693508086168417925050509392505050565b600061459461458f61458a8461381c565b613a5a565b61381c565b9050919050565b6000819050919050565b6145ae83614579565b6145c26145ba8261459b565b848454614527565b825550505050565b600090565b6145d76145ca565b6145e28184846145a5565b505050565b5b81811015614606576145fb6000826145cf565b6001810190506145e8565b5050565b601f82111561464b5761461c816144f5565b6146258461450a565b81016020851015614634578190505b6146486146408561450a565b8301826145e7565b50505b505050565b600082821c905092915050565b600061466e60001984600802614650565b1980831691505092915050565b6000614687838361465d565b9150826002028217905092915050565b6146a08261376a565b67ffffffffffffffff8111156146b9576146b8613b49565b5b6146c38254613f40565b6146ce82828561460a565b600060209050601f83116001811461470157600084156146ef578287015190505b6146f9858261467b565b865550614761565b601f19841661470f866144f5565b60005b8281101561473757848901518255600182019150602085019450602081019050614712565b868310156147545784890151614750601f89168261465d565b8355505b6001600288020188555050505b505050505050565b60006147748261381c565b915061477f8361381c565b925082820390508181111561479757614796613f71565b5b92915050565b60008160011c9050919050565b6000808291508390505b60018511156147f4578086048111156147d0576147cf613f71565b5b60018516156147df5780820291505b80810290506147ed8561479d565b94506147b4565b94509492505050565b60008261480d57600190506148c9565b8161481b57600090506148c9565b8160018114614831576002811461483b5761486a565b60019150506148c9565b60ff84111561484d5761484c613f71565b5b8360020a91508482111561486457614863613f71565b5b506148c9565b5060208310610133831016604e8410600b841016171561489f5782820a90508381111561489a57614899613f71565b5b6148c9565b6148ac84848460016147aa565b925090508184048111156148c3576148c2613f71565b5b81810290505b9392505050565b60006148db8261381c565b91506148e68361381c565b92506149137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846147fd565b905092915050565b60006149268261381c565b91506149318361381c565b92508261494157614940613fe2565b5b828206905092915050565b7f717565727920666f72206e6f6e6578697374656e7420746f6b656e0000000000600082015250565b6000614982601b83613775565b915061498d8261494c565b602082019050919050565b600060208201905081810360008301526149b181614975565b9050919050565b600081905092915050565b600081546149d081613f40565b6149da81866149b8565b945060018216600081146149f55760018114614a0a57614a3d565b60ff1983168652811515820286019350614a3d565b614a13856144f5565b60005b83811015614a3557815481890152600182019150602081019050614a16565b838801955050505b50505092915050565b6000614a518261376a565b614a5b81856149b8565b9350614a6b818560208601613786565b80840191505092915050565b6000614a8382856149c3565b9150614a8f8284614a46565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614af7602683613775565b9150614b0282614a9b565b604082019050919050565b60006020820190508181036000830152614b2681614aea565b9050919050565b6000604082019050614b4260008301856138b1565b614b4f60208301846138b1565b9392505050565b600081519050614b6581613cbd565b92915050565b600060208284031215614b8157614b806136a5565b5b6000614b8f84828501614b56565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf4602183613775565b9150614bff82614b98565b604082019050919050565b60006020820190508181036000830152614c2381614be7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614c86603d83613775565b9150614c9182614c2a565b604082019050919050565b60006020820190508181036000830152614cb581614c79565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614cf2602083613775565b9150614cfd82614cbc565b602082019050919050565b60006020820190508181036000830152614d2181614ce5565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614d84602d83613775565b9150614d8f82614d28565b604082019050919050565b60006020820190508181036000830152614db381614d77565b9050919050565b6000614dc58261381c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614df757614df6613f71565b5b600182019050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614e5e602a83613775565b9150614e6982614e02565b604082019050919050565b60006020820190508181036000830152614e8d81614e51565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6000614eca601983613775565b9150614ed582614e94565b602082019050919050565b60006020820190508181036000830152614ef981614ebd565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614f5c602583613775565b9150614f6782614f00565b604082019050919050565b60006020820190508181036000830152614f8b81614f4f565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fee602483613775565b9150614ff982614f92565b604082019050919050565b6000602082019050818103600083015261501d81614fe1565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061505a601983613775565b915061506582615024565b602082019050919050565b600060208201905081810360008301526150898161504d565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006150ec603283613775565b91506150f782615090565b604082019050919050565b6000602082019050818103600083015261511b816150df565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061514982615122565b615153818561512d565b9350615163818560208601613786565b61516c816137b0565b840191505092915050565b600060808201905061518c60008301876138b1565b61519960208301866138b1565b6151a66040830185613974565b81810360608301526151b8818461513e565b905095945050505050565b6000815190506151d2816136db565b92915050565b6000602082840312156151ee576151ed6136a5565b5b60006151fc848285016151c3565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b6000615261603583613775565b915061526c82615205565b604082019050919050565b6000602082019050818103600083015261529081615254565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006152cd602083613775565b91506152d882615297565b602082019050919050565b600060208201905081810360008301526152fc816152c0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615339601c83613775565b915061534482615303565b602082019050919050565b600060208201905081810360008301526153688161532c565b9050919050565b600061537a8261381c565b91506153858361381c565b925082820190508082111561539d5761539c613f71565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe546f6b656e206973206e6f7420617661696c61626c6520666f72206d696e74696e6720796574a2646970667358221220841d303a56efcdb5911c39768815a8c799f410153d62d21fb63c5ab8ed8588cf64736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000063f7a9a0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000035442410000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b68747470733a2f2f6d6574612e746f6e69632e78797a2f636f6c6c656374696f6e732f696e74696d697461000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _startsAt (uint256): 1677175200
Arg [1] : _uriPrefix (string): TBA
Arg [2] : _contractURI (string): https://meta.tonic.xyz/collections/intimita

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000063f7a9a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 5442410000000000000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [6] : 68747470733a2f2f6d6574612e746f6e69632e78797a2f636f6c6c656374696f
Arg [7] : 6e732f696e74696d697461000000000000000000000000000000000000000000


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.