ETH Price: $2,649.97 (+0.29%)

Token

FANA HOODIES TEST (WINTER22)
 

Overview

Max Total Supply

5 WINTER22

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 WINTER22
0xcdf3425216b7cfd2f939f9b92e3cb6d4160523f3
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:
hoodie

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-13
*/

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @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.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

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

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

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    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) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// File: @openzeppelin/contracts/utils/Counters.sol


// 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: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

    /**
     * @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: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.15;


/**
 * @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: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.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 functionCall(target, data, "Address: low-level call failed");
    }

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// 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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// 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: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @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: contracts/hoodie.sol

/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@                                            @@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@                                                @@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@                                                  @@@@@@@@@@@@@
@@@@@@@@@@@@@@@(                                                  @@@@@@@@@@@@@@
@@@@@@@@@@@@@@%                                                 @@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@                                            *&@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@                 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@               @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@%                %@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@                     @@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@*                      @@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@                       @@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@%                      @@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@                   *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@///////((((#&@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@              @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*/

pragma solidity ^0.8.4;







contract hoodie is ERC721, ERC721Enumerable, DefaultOperatorFilterer, Ownable {
    using Counters for Counters.Counter;
    
    uint256 maxSupply = 5;

    Counters.Counter private _tokenIdCounter;

    constructor() ERC721("FANA HOODIES TEST", "WINTER22") {}

    function _baseURI() internal pure override returns (string memory) {
        return "ipfs://QmNgfR3Y159MEYA1kf5BhpuncJQKDzHepj55uXDtq8csGk/";
    }

    function safeMint(uint256 amount) public onlyOwner {
        uint256 tokenId = _tokenIdCounter.current();
        require(totalSupply() + amount <= maxSupply, "We have hit the cap.");
        for(uint256 i; i < amount; i++){
            _safeMint(msg.sender, tokenId + i);
            _tokenIdCounter.increment();
        }
    }

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

    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, Strings.toString(tokenId), ".json")) : ""; 
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":[{"internalType":"address","name":"_addr","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526005600b553480156200001657600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601181526020017011905390481213d3d1125154c8151154d5607a1b815250604051806040016040528060088152602001672ba4a72a22a9191960c11b81525081600090816200008a9190620002ec565b506001620000998282620002ec565b5050506daaeb6d7670e522a718067333cd4e3b15620001e15780156200012f57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200011057600080fd5b505af115801562000125573d6000803e3d6000fd5b50505050620001e1565b6001600160a01b03821615620001805760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000f5565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001c757600080fd5b505af1158015620001dc573d6000803e3d6000fd5b505050505b50620001ef905033620001f5565b620003b8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200027257607f821691505b6020821081036200029357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002e757600081815260208120601f850160051c81016020861015620002c25750805b601f850160051c820191505b81811015620002e357828155600101620002ce565b5050505b505050565b81516001600160401b0381111562000308576200030862000247565b62000320816200031984546200025d565b8462000299565b602080601f8311600181146200035857600084156200033f5750858301515b600019600386901b1c1916600185901b178555620002e3565b600085815260208120601f198616915b82811015620003895788860151825594840194600190910190840162000368565b5085821015620003a85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611cfc80620003c86000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806351cff8d9116100b857806395d89b411161007c57806395d89b411461029c578063a22cb465146102a4578063b88d4fde146102b7578063c87b56dd146102ca578063e985e9c5146102dd578063f2fde38b1461031957600080fd5b806351cff8d91461024a5780636352211e1461025d57806370a0823114610270578063715018a6146102835780638da5cb5b1461028b57600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806331c864e8146101fc57806341f434341461020f57806342842e0e146102245780634f6ccce71461023757600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a61015536600461175d565b61032c565b60405190151581526020015b60405180910390f35b61017761033d565b60405161016691906117ca565b6101976101923660046117dd565b6103cf565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611812565b6103f6565b005b6008545b604051908152602001610166565b6101c26101e436600461183c565b61040f565b6101c86101f7366004611812565b61043a565b6101c261020a3660046117dd565b6104d5565b6101976daaeb6d7670e522a718067333cd4e81565b6101c261023236600461183c565b610584565b6101c86102453660046117dd565b6105a9565b6101c2610258366004611878565b61063c565b61019761026b3660046117dd565b61067c565b6101c861027e366004611878565b6106dc565b6101c2610762565b600a546001600160a01b0316610197565b610177610776565b6101c26102b23660046118a1565b610785565b6101c26102c53660046118ee565b610799565b6101776102d83660046117dd565b6107c6565b61015a6102eb3660046119ca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c2610327366004611878565b61082d565b6000610337826108a6565b92915050565b60606000805461034c906119fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610378906119fd565b80156103c55780601f1061039a576101008083540402835291602001916103c5565b820191906000526020600020905b8154815290600101906020018083116103a857829003601f168201915b5050505050905090565b60006103da826108cb565b506000908152600460205260409020546001600160a01b031690565b816104008161092a565b61040a83836109e3565b505050565b826001600160a01b0381163314610429576104293361092a565b610434848484610af3565b50505050565b6000610445836106dc565b82106104ac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6104dd610b24565b60006104e8600c5490565b9050600b54826104f760085490565b6105019190611a4d565b11156105465760405162461bcd60e51b81526020600482015260146024820152732bb2903430bb32903434ba103a34329031b0b81760611b60448201526064016104a3565b60005b8281101561040a576105643361055f8385611a4d565b610b7e565b610572600c80546001019055565b8061057c81611a60565b915050610549565b826001600160a01b038116331461059e5761059e3361092a565b610434848484610b9c565b60006105b460085490565b82106106175760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104a3565b6008828154811061062a5761062a611a79565b90600052602060002001549050919050565b610644610b24565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561040a573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806103375760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a3565b60006001600160a01b0382166107465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104a3565b506001600160a01b031660009081526003602052604090205490565b61076a610b24565b6107746000610bb7565b565b60606001805461034c906119fd565b8161078f8161092a565b61040a8383610c09565b836001600160a01b03811633146107b3576107b33361092a565b6107bf85858585610c14565b5050505050565b60606107d1826108cb565b60006107db610c46565b905060008151116107fb5760405180602001604052806000815250610826565b8061080584610c66565b604051602001610816929190611a8f565b6040516020818303038152906040525b9392505050565b610835610b24565b6001600160a01b03811661089a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a3565b6108a381610bb7565b50565b60006001600160e01b0319821663780e9d6360e01b1480610337575061033782610d6f565b6000818152600260205260409020546001600160a01b03166108a35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a3565b6daaeb6d7670e522a718067333cd4e3b156108a357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610997573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bb9190611ace565b6108a357604051633b79c77360e21b81526001600160a01b03821660048201526024016104a3565b60006109ee8261067c565b9050806001600160a01b0316836001600160a01b031603610a5b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104a3565b336001600160a01b0382161480610a775750610a7781336102eb565b610ae95760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016104a3565b61040a8383610dbf565b610afd3382610e2d565b610b195760405162461bcd60e51b81526004016104a390611aeb565b61040a838383610eab565b600a546001600160a01b031633146107745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a3565b610b9882826040518060200160405280600081525061101c565b5050565b61040a83838360405180602001604052806000815250610799565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b9833838361104f565b610c1e3383610e2d565b610c3a5760405162461bcd60e51b81526004016104a390611aeb565b6104348484848461111d565b6060604051806060016040528060368152602001611c9160369139905090565b606081600003610c8d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610cb75780610ca181611a60565b9150610cb09050600a83611b4e565b9150610c91565b60008167ffffffffffffffff811115610cd257610cd26118d8565b6040519080825280601f01601f191660200182016040528015610cfc576020820181803683370190505b5090505b8415610d6757610d11600183611b62565b9150610d1e600a86611b75565b610d29906030611a4d565b60f81b818381518110610d3e57610d3e611a79565b60200101906001600160f81b031916908160001a905350610d60600a86611b4e565b9450610d00565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480610da057506001600160e01b03198216635b5e139f60e01b145b8061033757506301ffc9a760e01b6001600160e01b0319831614610337565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610df48261067c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e398361067c565b9050806001600160a01b0316846001600160a01b03161480610e8057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610d675750836001600160a01b0316610e99846103cf565b6001600160a01b031614949350505050565b826001600160a01b0316610ebe8261067c565b6001600160a01b031614610ee45760405162461bcd60e51b81526004016104a390611b89565b6001600160a01b038216610f465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104a3565b610f538383836001611150565b826001600160a01b0316610f668261067c565b6001600160a01b031614610f8c5760405162461bcd60e51b81526004016104a390611b89565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611026838361115c565b61103360008484846112f5565b61040a5760405162461bcd60e51b81526004016104a390611bce565b816001600160a01b0316836001600160a01b0316036110b05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611128848484610eab565b611134848484846112f5565b6104345760405162461bcd60e51b81526004016104a390611bce565b610434848484846113f6565b6001600160a01b0382166111b25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a3565b6000818152600260205260409020546001600160a01b0316156112175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a3565b611225600083836001611150565b6000818152600260205260409020546001600160a01b03161561128a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a3565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156113eb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611339903390899088908890600401611c20565b6020604051808303816000875af1925050508015611374575060408051601f3d908101601f1916820190925261137191810190611c5d565b60015b6113d1573d8080156113a2576040519150601f19603f3d011682016040523d82523d6000602084013e6113a7565b606091505b5080516000036113c95760405162461bcd60e51b81526004016104a390611bce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d67565b506001949350505050565b6114028484848461152f565b60018111156114715760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016104a3565b816001600160a01b0385166114cd576114c881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6114f0565b836001600160a01b0316856001600160a01b0316146114f0576114f085826115b7565b6001600160a01b03841661150c5761150781611654565b6107bf565b846001600160a01b0316846001600160a01b0316146107bf576107bf8482611703565b6001811115610434576001600160a01b03841615611575576001600160a01b0384166000908152600360205260408120805483929061156f908490611b62565b90915550505b6001600160a01b03831615610434576001600160a01b038316600090815260036020526040812080548392906115ac908490611a4d565b909155505050505050565b600060016115c4846106dc565b6115ce9190611b62565b600083815260076020526040902054909150808214611621576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061166690600190611b62565b6000838152600960205260408120546008805493945090928490811061168e5761168e611a79565b9060005260206000200154905080600883815481106116af576116af611a79565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116e7576116e7611c7a565b6001900381819060005260206000200160009055905550505050565b600061170e836106dc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b0319811681146108a357600080fd5b60006020828403121561176f57600080fd5b813561082681611747565b60005b8381101561179557818101518382015260200161177d565b50506000910152565b600081518084526117b681602086016020860161177a565b601f01601f19169290920160200192915050565b602081526000610826602083018461179e565b6000602082840312156117ef57600080fd5b5035919050565b80356001600160a01b038116811461180d57600080fd5b919050565b6000806040838503121561182557600080fd5b61182e836117f6565b946020939093013593505050565b60008060006060848603121561185157600080fd5b61185a846117f6565b9250611868602085016117f6565b9150604084013590509250925092565b60006020828403121561188a57600080fd5b610826826117f6565b80151581146108a357600080fd5b600080604083850312156118b457600080fd5b6118bd836117f6565b915060208301356118cd81611893565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561190457600080fd5b61190d856117f6565b935061191b602086016117f6565b925060408501359150606085013567ffffffffffffffff8082111561193f57600080fd5b818701915087601f83011261195357600080fd5b813581811115611965576119656118d8565b604051601f8201601f19908116603f0116810190838211818310171561198d5761198d6118d8565b816040528281528a60208487010111156119a657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119dd57600080fd5b6119e6836117f6565b91506119f4602084016117f6565b90509250929050565b600181811c90821680611a1157607f821691505b602082108103611a3157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561033757610337611a37565b600060018201611a7257611a72611a37565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008351611aa181846020880161177a565b835190830190611ab581836020880161177a565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215611ae057600080fd5b815161082681611893565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611b5d57611b5d611b38565b500490565b8181038181111561033757610337611a37565b600082611b8457611b84611b38565b500690565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c539083018461179e565b9695505050505050565b600060208284031215611c6f57600080fd5b815161082681611747565b634e487b7160e01b600052603160045260246000fdfe697066733a2f2f516d4e67665233593135394d455941316b6635426870756e634a514b447a4865706a35357558447471386373476b2fa2646970667358221220c39e99143ba3cbb55c26bf4895811f8b5f30d546aac06682345c6aed2777aeec64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806351cff8d9116100b857806395d89b411161007c57806395d89b411461029c578063a22cb465146102a4578063b88d4fde146102b7578063c87b56dd146102ca578063e985e9c5146102dd578063f2fde38b1461031957600080fd5b806351cff8d91461024a5780636352211e1461025d57806370a0823114610270578063715018a6146102835780638da5cb5b1461028b57600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806331c864e8146101fc57806341f434341461020f57806342842e0e146102245780634f6ccce71461023757600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a61015536600461175d565b61032c565b60405190151581526020015b60405180910390f35b61017761033d565b60405161016691906117ca565b6101976101923660046117dd565b6103cf565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611812565b6103f6565b005b6008545b604051908152602001610166565b6101c26101e436600461183c565b61040f565b6101c86101f7366004611812565b61043a565b6101c261020a3660046117dd565b6104d5565b6101976daaeb6d7670e522a718067333cd4e81565b6101c261023236600461183c565b610584565b6101c86102453660046117dd565b6105a9565b6101c2610258366004611878565b61063c565b61019761026b3660046117dd565b61067c565b6101c861027e366004611878565b6106dc565b6101c2610762565b600a546001600160a01b0316610197565b610177610776565b6101c26102b23660046118a1565b610785565b6101c26102c53660046118ee565b610799565b6101776102d83660046117dd565b6107c6565b61015a6102eb3660046119ca565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c2610327366004611878565b61082d565b6000610337826108a6565b92915050565b60606000805461034c906119fd565b80601f0160208091040260200160405190810160405280929190818152602001828054610378906119fd565b80156103c55780601f1061039a576101008083540402835291602001916103c5565b820191906000526020600020905b8154815290600101906020018083116103a857829003601f168201915b5050505050905090565b60006103da826108cb565b506000908152600460205260409020546001600160a01b031690565b816104008161092a565b61040a83836109e3565b505050565b826001600160a01b0381163314610429576104293361092a565b610434848484610af3565b50505050565b6000610445836106dc565b82106104ac5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6104dd610b24565b60006104e8600c5490565b9050600b54826104f760085490565b6105019190611a4d565b11156105465760405162461bcd60e51b81526020600482015260146024820152732bb2903430bb32903434ba103a34329031b0b81760611b60448201526064016104a3565b60005b8281101561040a576105643361055f8385611a4d565b610b7e565b610572600c80546001019055565b8061057c81611a60565b915050610549565b826001600160a01b038116331461059e5761059e3361092a565b610434848484610b9c565b60006105b460085490565b82106106175760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104a3565b6008828154811061062a5761062a611a79565b90600052602060002001549050919050565b610644610b24565b60405147906001600160a01b0383169082156108fc029083906000818181858888f1935050505015801561040a573d6000803e3d6000fd5b6000818152600260205260408120546001600160a01b0316806103375760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a3565b60006001600160a01b0382166107465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104a3565b506001600160a01b031660009081526003602052604090205490565b61076a610b24565b6107746000610bb7565b565b60606001805461034c906119fd565b8161078f8161092a565b61040a8383610c09565b836001600160a01b03811633146107b3576107b33361092a565b6107bf85858585610c14565b5050505050565b60606107d1826108cb565b60006107db610c46565b905060008151116107fb5760405180602001604052806000815250610826565b8061080584610c66565b604051602001610816929190611a8f565b6040516020818303038152906040525b9392505050565b610835610b24565b6001600160a01b03811661089a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a3565b6108a381610bb7565b50565b60006001600160e01b0319821663780e9d6360e01b1480610337575061033782610d6f565b6000818152600260205260409020546001600160a01b03166108a35760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a3565b6daaeb6d7670e522a718067333cd4e3b156108a357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610997573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bb9190611ace565b6108a357604051633b79c77360e21b81526001600160a01b03821660048201526024016104a3565b60006109ee8261067c565b9050806001600160a01b0316836001600160a01b031603610a5b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104a3565b336001600160a01b0382161480610a775750610a7781336102eb565b610ae95760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016104a3565b61040a8383610dbf565b610afd3382610e2d565b610b195760405162461bcd60e51b81526004016104a390611aeb565b61040a838383610eab565b600a546001600160a01b031633146107745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a3565b610b9882826040518060200160405280600081525061101c565b5050565b61040a83838360405180602001604052806000815250610799565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b9833838361104f565b610c1e3383610e2d565b610c3a5760405162461bcd60e51b81526004016104a390611aeb565b6104348484848461111d565b6060604051806060016040528060368152602001611c9160369139905090565b606081600003610c8d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610cb75780610ca181611a60565b9150610cb09050600a83611b4e565b9150610c91565b60008167ffffffffffffffff811115610cd257610cd26118d8565b6040519080825280601f01601f191660200182016040528015610cfc576020820181803683370190505b5090505b8415610d6757610d11600183611b62565b9150610d1e600a86611b75565b610d29906030611a4d565b60f81b818381518110610d3e57610d3e611a79565b60200101906001600160f81b031916908160001a905350610d60600a86611b4e565b9450610d00565b949350505050565b60006001600160e01b031982166380ac58cd60e01b1480610da057506001600160e01b03198216635b5e139f60e01b145b8061033757506301ffc9a760e01b6001600160e01b0319831614610337565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610df48261067c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610e398361067c565b9050806001600160a01b0316846001600160a01b03161480610e8057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610d675750836001600160a01b0316610e99846103cf565b6001600160a01b031614949350505050565b826001600160a01b0316610ebe8261067c565b6001600160a01b031614610ee45760405162461bcd60e51b81526004016104a390611b89565b6001600160a01b038216610f465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104a3565b610f538383836001611150565b826001600160a01b0316610f668261067c565b6001600160a01b031614610f8c5760405162461bcd60e51b81526004016104a390611b89565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611026838361115c565b61103360008484846112f5565b61040a5760405162461bcd60e51b81526004016104a390611bce565b816001600160a01b0316836001600160a01b0316036110b05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611128848484610eab565b611134848484846112f5565b6104345760405162461bcd60e51b81526004016104a390611bce565b610434848484846113f6565b6001600160a01b0382166111b25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a3565b6000818152600260205260409020546001600160a01b0316156112175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a3565b611225600083836001611150565b6000818152600260205260409020546001600160a01b03161561128a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a3565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156113eb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611339903390899088908890600401611c20565b6020604051808303816000875af1925050508015611374575060408051601f3d908101601f1916820190925261137191810190611c5d565b60015b6113d1573d8080156113a2576040519150601f19603f3d011682016040523d82523d6000602084013e6113a7565b606091505b5080516000036113c95760405162461bcd60e51b81526004016104a390611bce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d67565b506001949350505050565b6114028484848461152f565b60018111156114715760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016104a3565b816001600160a01b0385166114cd576114c881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6114f0565b836001600160a01b0316856001600160a01b0316146114f0576114f085826115b7565b6001600160a01b03841661150c5761150781611654565b6107bf565b846001600160a01b0316846001600160a01b0316146107bf576107bf8482611703565b6001811115610434576001600160a01b03841615611575576001600160a01b0384166000908152600360205260408120805483929061156f908490611b62565b90915550505b6001600160a01b03831615610434576001600160a01b038316600090815260036020526040812080548392906115ac908490611a4d565b909155505050505050565b600060016115c4846106dc565b6115ce9190611b62565b600083815260076020526040902054909150808214611621576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061166690600190611b62565b6000838152600960205260408120546008805493945090928490811061168e5761168e611a79565b9060005260206000200154905080600883815481106116af576116af611a79565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116e7576116e7611c7a565b6001900381819060005260206000200160009055905550505050565b600061170e836106dc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160e01b0319811681146108a357600080fd5b60006020828403121561176f57600080fd5b813561082681611747565b60005b8381101561179557818101518382015260200161177d565b50506000910152565b600081518084526117b681602086016020860161177a565b601f01601f19169290920160200192915050565b602081526000610826602083018461179e565b6000602082840312156117ef57600080fd5b5035919050565b80356001600160a01b038116811461180d57600080fd5b919050565b6000806040838503121561182557600080fd5b61182e836117f6565b946020939093013593505050565b60008060006060848603121561185157600080fd5b61185a846117f6565b9250611868602085016117f6565b9150604084013590509250925092565b60006020828403121561188a57600080fd5b610826826117f6565b80151581146108a357600080fd5b600080604083850312156118b457600080fd5b6118bd836117f6565b915060208301356118cd81611893565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561190457600080fd5b61190d856117f6565b935061191b602086016117f6565b925060408501359150606085013567ffffffffffffffff8082111561193f57600080fd5b818701915087601f83011261195357600080fd5b813581811115611965576119656118d8565b604051601f8201601f19908116603f0116810190838211818310171561198d5761198d6118d8565b816040528281528a60208487010111156119a657600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119dd57600080fd5b6119e6836117f6565b91506119f4602084016117f6565b90509250929050565b600181811c90821680611a1157607f821691505b602082108103611a3157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561033757610337611a37565b600060018201611a7257611a72611a37565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008351611aa181846020880161177a565b835190830190611ab581836020880161177a565b64173539b7b760d91b9101908152600501949350505050565b600060208284031215611ae057600080fd5b815161082681611893565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611b5d57611b5d611b38565b500490565b8181038181111561033757610337611a37565b600082611b8457611b84611b38565b500690565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c539083018461179e565b9695505050505050565b600060208284031215611c6f57600080fd5b815161082681611747565b634e487b7160e01b600052603160045260246000fdfe697066733a2f2f516d4e67665233593135394d455941316b6635426870756e634a514b447a4865706a35357558447471386373476b2fa2646970667358221220c39e99143ba3cbb55c26bf4895811f8b5f30d546aac06682345c6aed2777aeec64736f6c63430008110033

Deployed Bytecode Sourcemap

58443:2719:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60947:212;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;60947:212:0;;;;;;;;33866:100;;;:::i;:::-;;;;;;;:::i;35378:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;35378:171:0;1533:203:1;59886:174:0;;;;;;:::i;:::-;;:::i;:::-;;50444:113;50532:10;:17;50444:113;;;2324:25:1;;;2312:2;2297:18;50444:113:0;2178:177:1;60068:180:0;;;;;;:::i;:::-;;:::i;50112:256::-;;;;;;:::i;:::-;;:::i;58876:336::-;;;;;;:::i;:::-;;:::i;2927:143::-;;3027:42;2927:143;;60256:188;;;;;;:::i;:::-;;:::i;50634:233::-;;;;;;:::i;:::-;;:::i;59220:151::-;;;;;;:::i;:::-;;:::i;33576:223::-;;;;;;:::i;:::-;;:::i;33307:207::-;;;;;;:::i;:::-;;:::i;12164:103::-;;;:::i;11516:87::-;11589:6;;-1:-1:-1;;;;;11589:6:0;11516:87;;34035:104;;;:::i;59685:193::-;;;;;;:::i;:::-;;:::i;60452:245::-;;;;;;:::i;:::-;;:::i;59379:298::-;;;;;;:::i;:::-;;:::i;35847:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;35968:25:0;;;35944:4;35968:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35847:164;12422:201;;;;;;:::i;:::-;;:::i;60947:212::-;61086:4;61115:36;61139:11;61115:23;:36::i;:::-;61108:43;60947:212;-1:-1:-1;;60947:212:0:o;33866:100::-;33920:13;33953:5;33946:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33866:100;:::o;35378:171::-;35454:7;35474:23;35489:7;35474:14;:23::i;:::-;-1:-1:-1;35517:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35517:24:0;;35378:171::o;59886:174::-;59999:8;4448:30;4469:8;4448:20;:30::i;:::-;60020:32:::1;60034:8;60044:7;60020:13;:32::i;:::-;59886:174:::0;;;:::o;60068:180::-;60186:4;-1:-1:-1;;;;;4268:18:0;;4276:10;4268:18;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;60203:37:::1;60222:4;60228:2;60232:7;60203:18;:37::i;:::-;60068:180:::0;;;;:::o;50112:256::-;50209:7;50245:23;50262:5;50245:16;:23::i;:::-;50237:5;:31;50229:87;;;;-1:-1:-1;;;50229:87:0;;5693:2:1;50229:87:0;;;5675:21:1;5732:2;5712:18;;;5705:30;5771:34;5751:18;;;5744:62;-1:-1:-1;;;5822:18:1;;;5815:41;5873:19;;50229:87:0;;;;;;;;;-1:-1:-1;;;;;;50334:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;50112:256::o;58876:336::-;11402:13;:11;:13::i;:::-;58938:15:::1;58956:25;:15;6389:14:::0;;6297:114;58956:25:::1;58938:43;;59026:9;;59016:6;59000:13;50532:10:::0;:17;;50444:113;59000:13:::1;:22;;;;:::i;:::-;:35;;58992:68;;;::::0;-1:-1:-1;;;58992:68:0;;6367:2:1;58992:68:0::1;::::0;::::1;6349:21:1::0;6406:2;6386:18;;;6379:30;-1:-1:-1;;;6425:18:1;;;6418:50;6485:18;;58992:68:0::1;6165:344:1::0;58992:68:0::1;59075:9;59071:134;59090:6;59086:1;:10;59071:134;;;59117:34;59127:10;59139:11;59149:1:::0;59139:7;:11:::1;:::i;:::-;59117:9;:34::i;:::-;59166:27;:15;6508:19:::0;;6526:1;6508:19;;;6419:127;59166:27:::1;59098:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59071:134;;60256:188:::0;60378:4;-1:-1:-1;;;;;4268:18:0;;4276:10;4268:18;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;60395:41:::1;60418:4;60424:2;60428:7;60395:22;:41::i;50634:233::-:0;50709:7;50745:30;50532:10;:17;;50444:113;50745:30;50737:5;:38;50729:95;;;;-1:-1:-1;;;50729:95:0;;6856:2:1;50729:95:0;;;6838:21:1;6895:2;6875:18;;;6868:30;6934:34;6914:18;;;6907:62;-1:-1:-1;;;6985:18:1;;;6978:42;7037:19;;50729:95:0;6654:408:1;50729:95:0;50842:10;50853:5;50842:17;;;;;;;;:::i;:::-;;;;;;;;;50835:24;;50634:233;;;:::o;59220:151::-;11402:13;:11;:13::i;:::-;59333:32:::1;::::0;59301:21:::1;::::0;-1:-1:-1;;;;;59333:23:0;::::1;::::0;:32;::::1;;;::::0;59301:21;;59283:15:::1;59333:32:::0;59283:15;59333:32;59301:21;59333:23;:32;::::1;;;;;;;;;;;;;::::0;::::1;;;;33576:223:::0;33648:7;38463:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38463:16:0;;33712:56;;;;-1:-1:-1;;;33712:56:0;;7401:2:1;33712:56:0;;;7383:21:1;7440:2;7420:18;;;7413:30;-1:-1:-1;;;7459:18:1;;;7452:54;7523:18;;33712:56:0;7199:348:1;33307:207:0;33379:7;-1:-1:-1;;;;;33407:19:0;;33399:73;;;;-1:-1:-1;;;33399:73:0;;7754:2:1;33399:73:0;;;7736:21:1;7793:2;7773:18;;;7766:30;7832:34;7812:18;;;7805:62;-1:-1:-1;;;7883:18:1;;;7876:39;7932:19;;33399:73:0;7552:405:1;33399:73:0;-1:-1:-1;;;;;;33490:16:0;;;;;:9;:16;;;;;;;33307:207::o;12164:103::-;11402:13;:11;:13::i;:::-;12229:30:::1;12256:1;12229:18;:30::i;:::-;12164:103::o:0;34035:104::-;34091:13;34124:7;34117:14;;;;;:::i;59685:193::-;59806:8;4448:30;4469:8;4448:20;:30::i;:::-;59827:43:::1;59851:8;59861;59827:23;:43::i;60452:245::-:0;60620:4;-1:-1:-1;;;;;4268:18:0;;4276:10;4268:18;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;60642:47:::1;60665:4;60671:2;60675:7;60684:4;60642:22;:47::i;:::-;60452:245:::0;;;;;:::o;59379:298::-;59452:13;59478:23;59493:7;59478:14;:23::i;:::-;59514:21;59538:10;:8;:10::i;:::-;59514:34;;59590:1;59572:7;59566:21;:25;:102;;;;;;;;;;;;;;;;;59618:7;59627:25;59644:7;59627:16;:25::i;:::-;59601:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59566:102;59559:109;59379:298;-1:-1:-1;;;59379:298:0:o;12422:201::-;11402:13;:11;:13::i;:::-;-1:-1:-1;;;;;12511:22:0;::::1;12503:73;;;::::0;-1:-1:-1;;;12503:73:0;;8832:2:1;12503:73:0::1;::::0;::::1;8814:21:1::0;8871:2;8851:18;;;8844:30;8910:34;8890:18;;;8883:62;-1:-1:-1;;;8961:18:1;;;8954:36;9007:19;;12503:73:0::1;8630:402:1::0;12503:73:0::1;12587:28;12606:8;12587:18;:28::i;:::-;12422:201:::0;:::o;49804:224::-;49906:4;-1:-1:-1;;;;;;49930:50:0;;-1:-1:-1;;;49930:50:0;;:90;;;49984:36;50008:11;49984:23;:36::i;45197:135::-;38865:4;38463:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38463:16:0;45271:53;;;;-1:-1:-1;;;45271:53:0;;7401:2:1;45271:53:0;;;7383:21:1;7440:2;7420:18;;;7413:30;-1:-1:-1;;;7459:18:1;;;7452:54;7523:18;;45271:53:0;7199:348:1;4506:419:0;3027:42;4697:45;:49;4693:225;;4768:67;;-1:-1:-1;;;4768:67:0;;4819:4;4768:67;;;9249:34:1;-1:-1:-1;;;;;9319:15:1;;9299:18;;;9292:43;3027:42:0;;4768;;9184:18:1;;4768:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4763:144;;4863:28;;-1:-1:-1;;;4863:28:0;;-1:-1:-1;;;;;1697:32:1;;4863:28:0;;;1679:51:1;1652:18;;4863:28:0;1533:203:1;34896:416:0;34977:13;34993:23;35008:7;34993:14;:23::i;:::-;34977:39;;35041:5;-1:-1:-1;;;;;35035:11:0;:2;-1:-1:-1;;;;;35035:11:0;;35027:57;;;;-1:-1:-1;;;35027:57:0;;9798:2:1;35027:57:0;;;9780:21:1;9837:2;9817:18;;;9810:30;9876:34;9856:18;;;9849:62;-1:-1:-1;;;9927:18:1;;;9920:31;9968:19;;35027:57:0;9596:397:1;35027:57:0;10146:10;-1:-1:-1;;;;;35119:21:0;;;;:62;;-1:-1:-1;35144:37:0;35161:5;10146:10;35847:164;:::i;35144:37::-;35097:173;;;;-1:-1:-1;;;35097:173:0;;10200:2:1;35097:173:0;;;10182:21:1;10239:2;10219:18;;;10212:30;10278:34;10258:18;;;10251:62;10349:31;10329:18;;;10322:59;10398:19;;35097:173:0;9998:425:1;35097:173:0;35283:21;35292:2;35296:7;35283:8;:21::i;36078:335::-;36273:41;10146:10;36306:7;36273:18;:41::i;:::-;36265:99;;;;-1:-1:-1;;;36265:99:0;;;;;;;:::i;:::-;36377:28;36387:4;36393:2;36397:7;36377:9;:28::i;11681:132::-;11589:6;;-1:-1:-1;;;;;11589:6:0;10146:10;11745:23;11737:68;;;;-1:-1:-1;;;11737:68:0;;11044:2:1;11737:68:0;;;11026:21:1;;;11063:18;;;11056:30;11122:34;11102:18;;;11095:62;11174:18;;11737:68:0;10842:356:1;39701:110:0;39777:26;39787:2;39791:7;39777:26;;;;;;;;;;;;:9;:26::i;:::-;39701:110;;:::o;36484:185::-;36622:39;36639:4;36645:2;36649:7;36622:39;;;;;;;;;;;;:16;:39::i;12783:191::-;12876:6;;;-1:-1:-1;;;;;12893:17:0;;;-1:-1:-1;;;;;;12893:17:0;;;;;;;12926:40;;12876:6;;;12893:17;12876:6;;12926:40;;12857:16;;12926:40;12846:128;12783:191;:::o;35621:155::-;35716:52;10146:10;35749:8;35759;35716:18;:52::i;36740:322::-;36914:41;10146:10;36947:7;36914:18;:41::i;:::-;36906:99;;;;-1:-1:-1;;;36906:99:0;;;;;;;:::i;:::-;37016:38;37030:4;37036:2;37040:7;37049:4;37016:13;:38::i;58719:149::-;58771:13;58797:63;;;;;;;;;;;;;;;;;;;58719:149;:::o;7320:723::-;7376:13;7597:5;7606:1;7597:10;7593:53;;-1:-1:-1;;7624:10:0;;;;;;;;;;;;-1:-1:-1;;;7624:10:0;;;;;7320:723::o;7593:53::-;7671:5;7656:12;7712:78;7719:9;;7712:78;;7745:8;;;;:::i;:::-;;-1:-1:-1;7768:10:0;;-1:-1:-1;7776:2:0;7768:10;;:::i;:::-;;;7712:78;;;7800:19;7832:6;7822:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7822:17:0;;7800:39;;7850:154;7857:10;;7850:154;;7884:11;7894:1;7884:11;;:::i;:::-;;-1:-1:-1;7953:10:0;7961:2;7953:5;:10;:::i;:::-;7940:24;;:2;:24;:::i;:::-;7927:39;;7910:6;7917;7910:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7910:56:0;;;;;;;;-1:-1:-1;7981:11:0;7990:2;7981:11;;:::i;:::-;;;7850:154;;;8028:6;7320:723;-1:-1:-1;;;;7320:723:0:o;32938:305::-;33040:4;-1:-1:-1;;;;;;33077:40:0;;-1:-1:-1;;;33077:40:0;;:105;;-1:-1:-1;;;;;;;33134:48:0;;-1:-1:-1;;;33134:48:0;33077:105;:158;;;-1:-1:-1;;;;;;;;;;24479:40:0;;;33199:36;24370:157;44476:174;44551:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44551:29:0;-1:-1:-1;;;;;44551:29:0;;;;;;;;:24;;44605:23;44551:24;44605:14;:23::i;:::-;-1:-1:-1;;;;;44596:46:0;;;;;;;;;;;44476:174;;:::o;39095:264::-;39188:4;39205:13;39221:23;39236:7;39221:14;:23::i;:::-;39205:39;;39274:5;-1:-1:-1;;;;;39263:16:0;:7;-1:-1:-1;;;;;39263:16:0;;:52;;;-1:-1:-1;;;;;;35968:25:0;;;35944:4;35968:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39283:32;39263:87;;;;39343:7;-1:-1:-1;;;;;39319:31:0;:20;39331:7;39319:11;:20::i;:::-;-1:-1:-1;;;;;39319:31:0;;39255:96;39095:264;-1:-1:-1;;;;39095:264:0:o;43094:1263::-;43253:4;-1:-1:-1;;;;;43226:31:0;:23;43241:7;43226:14;:23::i;:::-;-1:-1:-1;;;;;43226:31:0;;43218:81;;;;-1:-1:-1;;;43218:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43318:16:0;;43310:65;;;;-1:-1:-1;;;43310:65:0;;12318:2:1;43310:65:0;;;12300:21:1;12357:2;12337:18;;;12330:30;12396:34;12376:18;;;12369:62;-1:-1:-1;;;12447:18:1;;;12440:34;12491:19;;43310:65:0;12116:400:1;43310:65:0;43388:42;43409:4;43415:2;43419:7;43428:1;43388:20;:42::i;:::-;43560:4;-1:-1:-1;;;;;43533:31:0;:23;43548:7;43533:14;:23::i;:::-;-1:-1:-1;;;;;43533:31:0;;43525:81;;;;-1:-1:-1;;;43525:81:0;;;;;;;:::i;:::-;43678:24;;;;:15;:24;;;;;;;;43671:31;;-1:-1:-1;;;;;;43671:31:0;;;;;;-1:-1:-1;;;;;44154:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;44154:20:0;;;44189:13;;;;;;;;;:18;;43671:31;44189:18;;;44229:16;;;:7;:16;;;;;;:21;;;;;;;;;;44268:27;;43694:7;;44268:27;;;59886:174;;;:::o;40038:319::-;40167:18;40173:2;40177:7;40167:5;:18::i;:::-;40218:53;40249:1;40253:2;40257:7;40266:4;40218:22;:53::i;:::-;40196:153;;;;-1:-1:-1;;;40196:153:0;;;;;;;:::i;44793:315::-;44948:8;-1:-1:-1;;;;;44939:17:0;:5;-1:-1:-1;;;;;44939:17:0;;44931:55;;;;-1:-1:-1;;;44931:55:0;;13142:2:1;44931:55:0;;;13124:21:1;13181:2;13161:18;;;13154:30;13220:27;13200:18;;;13193:55;13265:18;;44931:55:0;12940:349:1;44931:55:0;-1:-1:-1;;;;;44997:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;44997:46:0;;;;;;;;;;45059:41;;540::1;;;45059::0;;513:18:1;45059:41:0;;;;;;;44793:315;;;:::o;37943:313::-;38099:28;38109:4;38115:2;38119:7;38099:9;:28::i;:::-;38146:47;38169:4;38175:2;38179:7;38188:4;38146:22;:47::i;:::-;38138:110;;;;-1:-1:-1;;;38138:110:0;;;;;;;:::i;60705:234::-;60875:56;60902:4;60908:2;60912:7;60921:9;60875:26;:56::i;40693:942::-;-1:-1:-1;;;;;40773:16:0;;40765:61;;;;-1:-1:-1;;;40765:61:0;;13496:2:1;40765:61:0;;;13478:21:1;;;13515:18;;;13508:30;13574:34;13554:18;;;13547:62;13626:18;;40765:61:0;13294:356:1;40765:61:0;38865:4;38463:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38463:16:0;38889:31;40837:58;;;;-1:-1:-1;;;40837:58:0;;13857:2:1;40837:58:0;;;13839:21:1;13896:2;13876:18;;;13869:30;13935;13915:18;;;13908:58;13983:18;;40837:58:0;13655:352:1;40837:58:0;40908:48;40937:1;40941:2;40945:7;40954:1;40908:20;:48::i;:::-;38865:4;38463:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38463:16:0;38889:31;41046:58;;;;-1:-1:-1;;;41046:58:0;;13857:2:1;41046:58:0;;;13839:21:1;13896:2;13876:18;;;13869:30;13935;13915:18;;;13908:58;13983:18;;41046:58:0;13655:352:1;41046:58:0;-1:-1:-1;;;;;41453:13:0;;;;;;:9;:13;;;;;;;;:18;;41470:1;41453:18;;;41495:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41495:21:0;;;;;41534:33;41503:7;;41453:13;;41534:33;;41453:13;;41534:33;39701:110;;:::o;45896:853::-;46050:4;-1:-1:-1;;;;;46071:13:0;;14509:19;:23;46067:675;;46107:71;;-1:-1:-1;;;46107:71:0;;-1:-1:-1;;;;;46107:36:0;;;;;:71;;10146:10;;46158:4;;46164:7;;46173:4;;46107:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46107:71:0;;;;;;;;-1:-1:-1;;46107:71:0;;;;;;;;;;;;:::i;:::-;;;46103:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46348:6;:13;46365:1;46348:18;46344:328;;46391:60;;-1:-1:-1;;;46391:60:0;;;;;;;:::i;46344:328::-;46622:6;46616:13;46607:6;46603:2;46599:15;46592:38;46103:584;-1:-1:-1;;;;;;46229:51:0;-1:-1:-1;;;46229:51:0;;-1:-1:-1;46222:58:0;;46067:675;-1:-1:-1;46726:4:0;45896:853;;;;;;:::o;50941:915::-;51118:61;51145:4;51151:2;51155:12;51169:9;51118:26;:61::i;:::-;51208:1;51196:9;:13;51192:222;;;51339:63;;-1:-1:-1;;;51339:63:0;;14962:2:1;51339:63:0;;;14944:21:1;15001:2;14981:18;;;14974:30;15040:34;15020:18;;;15013:62;-1:-1:-1;;;15091:18:1;;;15084:51;15152:19;;51339:63:0;14760:417:1;51192:222:0;51444:12;-1:-1:-1;;;;;51473:18:0;;51469:187;;51508:40;51540:7;52683:10;:17;;52656:24;;;;:15;:24;;;;;:44;;;52711:24;;;;;;;;;;;;52579:164;51508:40;51469:187;;;51578:2;-1:-1:-1;;;;;51570:10:0;:4;-1:-1:-1;;;;;51570:10:0;;51566:90;;51597:47;51630:4;51636:7;51597:32;:47::i;:::-;-1:-1:-1;;;;;51670:16:0;;51666:183;;51703:45;51740:7;51703:36;:45::i;:::-;51666:183;;;51776:4;-1:-1:-1;;;;;51770:10:0;:2;-1:-1:-1;;;;;51770:10:0;;51766:83;;51797:40;51825:2;51829:7;51797:27;:40::i;47481:410::-;47671:1;47659:9;:13;47655:229;;;-1:-1:-1;;;;;47693:18:0;;;47689:87;;-1:-1:-1;;;;;47732:15:0;;;;;;:9;:15;;;;;:28;;47751:9;;47732:15;:28;;47751:9;;47732:28;:::i;:::-;;;;-1:-1:-1;;47689:87:0;-1:-1:-1;;;;;47794:16:0;;;47790:83;;-1:-1:-1;;;;;47831:13:0;;;;;;:9;:13;;;;;:26;;47848:9;;47831:13;:26;;47848:9;;47831:26;:::i;:::-;;;;-1:-1:-1;;47481:410:0;;;;:::o;53370:988::-;53636:22;53686:1;53661:22;53678:4;53661:16;:22::i;:::-;:26;;;;:::i;:::-;53698:18;53719:26;;;:17;:26;;;;;;53636:51;;-1:-1:-1;53852:28:0;;;53848:328;;-1:-1:-1;;;;;53919:18:0;;53897:19;53919:18;;;:12;:18;;;;;;;;:34;;;;;;;;;53970:30;;;;;;:44;;;54087:30;;:17;:30;;;;;:43;;;53848:328;-1:-1:-1;54272:26:0;;;;:17;:26;;;;;;;;54265:33;;;-1:-1:-1;;;;;54316:18:0;;;;;:12;:18;;;;;:34;;;;;;;54309:41;53370:988::o;54653:1079::-;54931:10;:17;54906:22;;54931:21;;54951:1;;54931:21;:::i;:::-;54963:18;54984:24;;;:15;:24;;;;;;55357:10;:26;;54906:46;;-1:-1:-1;54984:24:0;;54906:46;;55357:26;;;;;;:::i;:::-;;;;;;;;;55335:48;;55421:11;55396:10;55407;55396:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;55501:28;;;:15;:28;;;;;;;:41;;;55673:24;;;;;55666:31;55708:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;54724:1008;;;54653:1079;:::o;52157:221::-;52242:14;52259:20;52276:2;52259:16;:20::i;:::-;-1:-1:-1;;;;;52290:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;52335:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;52157:221:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2932:186::-;2991:6;3044:2;3032:9;3023:7;3019:23;3015:32;3012:52;;;3060:1;3057;3050:12;3012:52;3083:29;3102:9;3083:29;:::i;3123:118::-;3209:5;3202:13;3195:21;3188:5;3185:32;3175:60;;3231:1;3228;3221:12;3246:315;3311:6;3319;3372:2;3360:9;3351:7;3347:23;3343:32;3340:52;;;3388:1;3385;3378:12;3340:52;3411:29;3430:9;3411:29;:::i;:::-;3401:39;;3490:2;3479:9;3475:18;3462:32;3503:28;3525:5;3503:28;:::i;:::-;3550:5;3540:15;;;3246:315;;;;;:::o;3566:127::-;3627:10;3622:3;3618:20;3615:1;3608:31;3658:4;3655:1;3648:15;3682:4;3679:1;3672:15;3698:1138;3793:6;3801;3809;3817;3870:3;3858:9;3849:7;3845:23;3841:33;3838:53;;;3887:1;3884;3877:12;3838:53;3910:29;3929:9;3910:29;:::i;:::-;3900:39;;3958:38;3992:2;3981:9;3977:18;3958:38;:::i;:::-;3948:48;;4043:2;4032:9;4028:18;4015:32;4005:42;;4098:2;4087:9;4083:18;4070:32;4121:18;4162:2;4154:6;4151:14;4148:34;;;4178:1;4175;4168:12;4148:34;4216:6;4205:9;4201:22;4191:32;;4261:7;4254:4;4250:2;4246:13;4242:27;4232:55;;4283:1;4280;4273:12;4232:55;4319:2;4306:16;4341:2;4337;4334:10;4331:36;;;4347:18;;:::i;:::-;4422:2;4416:9;4390:2;4476:13;;-1:-1:-1;;4472:22:1;;;4496:2;4468:31;4464:40;4452:53;;;4520:18;;;4540:22;;;4517:46;4514:72;;;4566:18;;:::i;:::-;4606:10;4602:2;4595:22;4641:2;4633:6;4626:18;4681:7;4676:2;4671;4667;4663:11;4659:20;4656:33;4653:53;;;4702:1;4699;4692:12;4653:53;4758:2;4753;4749;4745:11;4740:2;4732:6;4728:15;4715:46;4803:1;4798:2;4793;4785:6;4781:15;4777:24;4770:35;4824:6;4814:16;;;;;;;3698:1138;;;;;;;:::o;4841:260::-;4909:6;4917;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;5009:29;5028:9;5009:29;:::i;:::-;4999:39;;5057:38;5091:2;5080:9;5076:18;5057:38;:::i;:::-;5047:48;;4841:260;;;;;:::o;5106:380::-;5185:1;5181:12;;;;5228;;;5249:61;;5303:4;5295:6;5291:17;5281:27;;5249:61;5356:2;5348:6;5345:14;5325:18;5322:38;5319:161;;5402:10;5397:3;5393:20;5390:1;5383:31;5437:4;5434:1;5427:15;5465:4;5462:1;5455:15;5319:161;;5106:380;;;:::o;5903:127::-;5964:10;5959:3;5955:20;5952:1;5945:31;5995:4;5992:1;5985:15;6019:4;6016:1;6009:15;6035:125;6100:9;;;6121:10;;;6118:36;;;6134:18;;:::i;6514:135::-;6553:3;6574:17;;;6571:43;;6594:18;;:::i;:::-;-1:-1:-1;6641:1:1;6630:13;;6514:135::o;7067:127::-;7128:10;7123:3;7119:20;7116:1;7109:31;7159:4;7156:1;7149:15;7183:4;7180:1;7173:15;7962:663;8242:3;8280:6;8274:13;8296:66;8355:6;8350:3;8343:4;8335:6;8331:17;8296:66;:::i;:::-;8425:13;;8384:16;;;;8447:70;8425:13;8384:16;8494:4;8482:17;;8447:70;:::i;:::-;-1:-1:-1;;;8539:20:1;;8568:22;;;8617:1;8606:13;;7962:663;-1:-1:-1;;;;7962:663:1:o;9346:245::-;9413:6;9466:2;9454:9;9445:7;9441:23;9437:32;9434:52;;;9482:1;9479;9472:12;9434:52;9514:9;9508:16;9533:28;9555:5;9533:28;:::i;10428:409::-;10630:2;10612:21;;;10669:2;10649:18;;;10642:30;10708:34;10703:2;10688:18;;10681:62;-1:-1:-1;;;10774:2:1;10759:18;;10752:43;10827:3;10812:19;;10428:409::o;11203:127::-;11264:10;11259:3;11255:20;11252:1;11245:31;11295:4;11292:1;11285:15;11319:4;11316:1;11309:15;11335:120;11375:1;11401;11391:35;;11406:18;;:::i;:::-;-1:-1:-1;11440:9:1;;11335:120::o;11460:128::-;11527:9;;;11548:11;;;11545:37;;;11562:18;;:::i;11593:112::-;11625:1;11651;11641:35;;11656:18;;:::i;:::-;-1:-1:-1;11690:9:1;;11593:112::o;11710:401::-;11912:2;11894:21;;;11951:2;11931:18;;;11924:30;11990:34;11985:2;11970:18;;11963:62;-1:-1:-1;;;12056:2:1;12041:18;;12034:35;12101:3;12086:19;;11710:401::o;12521:414::-;12723:2;12705:21;;;12762:2;12742:18;;;12735:30;12801:34;12796:2;12781:18;;12774:62;-1:-1:-1;;;12867:2:1;12852:18;;12845:48;12925:3;12910:19;;12521:414::o;14012:489::-;-1:-1:-1;;;;;14281:15:1;;;14263:34;;14333:15;;14328:2;14313:18;;14306:43;14380:2;14365:18;;14358:34;;;14428:3;14423:2;14408:18;;14401:31;;;14206:4;;14449:46;;14475:19;;14467:6;14449:46;:::i;:::-;14441:54;14012:489;-1:-1:-1;;;;;;14012:489:1:o;14506:249::-;14575:6;14628:2;14616:9;14607:7;14603:23;14599:32;14596:52;;;14644:1;14641;14634:12;14596:52;14676:9;14670:16;14695:30;14719:5;14695:30;:::i;15182:127::-;15243:10;15238:3;15234:20;15231:1;15224:31;15274:4;15271:1;15264:15;15298:4;15295:1;15288:15

Swarm Source

ipfs://c39e99143ba3cbb55c26bf4895811f8b5f30d546aac06682345c6aed2777aeec
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.