Token Eyescape

Overview ERC-721

Total Supply:
2,317 EYESCAPE

Holders:
1,237 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Eyescape

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-29
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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 tokenId);

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.2/contracts/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 Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Fantomized/eyescape.sol



pragma solidity ^0.8.0;







/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract with minting functionality.
 */
abstract contract ERC721Tradable is ERC721Enumerable, Ownable {
    using SafeMath for uint256;

    uint256 private _currentTokenId;

    uint public constant MAX_SUPPLY = 3000;

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721(_name, _symbol) {
    }


    /**
     * @dev Mints a token to an address .
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        require(_currentTokenId <= MAX_SUPPLY, "Over supply");
        _mint(_to, _currentTokenId.add(1));
        _currentTokenId++;
    }

    function mintNTo(address _to, uint256 number) public onlyOwner {
        require(_currentTokenId <= MAX_SUPPLY - 25, "Not allowed");  // Stop before max supply
        require(number <= 25, "25 max at once");  // Limit or likely to fail anyway
        while (number != 0) {
          _mint(_to, _currentTokenId.add(1));
          _currentTokenId++;
          number--;
        }
    }


    /**
     * @dev Function get mint eth back from the contract.
     * @param _to The address that will receive the eth.
     * @param _amount The amount of eth to send.
     *
     */
    function withdraw(address payable _to, uint _amount) public onlyOwner {
        _to.transfer(_amount);
    }


    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId), ".json"));
    }


}

 
/**
 * @title Eyescape by Fantomized
 * Eyescape
 */
contract Eyescape is ERC721Tradable {

    string _baseUrl;

    constructor()
        ERC721Tradable("Eyescape", "EYESCAPE")
    {}


    function baseTokenURI() override public view returns (string memory) {
        return _baseUrl;
    }


    function updateBase(string memory newBase) public onlyOwner {
        _baseUrl = newBase;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"mintNTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"string","name":"newBase","type":"string"}],"name":"updateBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806008815260200167457965736361706560c01b81525060405180604001604052806008815260200167455945534341504560c01b815250818181600090805190602001906200006e929190620000ff565b50805162000084906001906020840190620000ff565b505050620000a16200009b620000a960201b60201c565b620000ad565b5050620001e2565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010d90620001a5565b90600052602060002090601f0160209004810192826200013157600085556200017c565b82601f106200014c57805160ff19168380011785556200017c565b828001600101855582156200017c579182015b828111156200017c5782518255916020019190600101906200015f565b506200018a9291506200018e565b5090565b5b808211156200018a57600081556001016200018f565b600181811c90821680620001ba57607f821691505b60208210811415620001dc57634e487b7160e01b600052602260045260246000fd5b50919050565b611cd580620001f26000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806370a08231116100de578063a22cb46511610097578063d547cfb711610071578063d547cfb714610315578063e985e9c51461031d578063f2fde38b14610359578063f3fef3a31461036c57600080fd5b8063a22cb465146102dc578063b88d4fde146102ef578063c87b56dd1461030257600080fd5b806370a0823114610282578063715018a614610295578063755edd171461029d5780637823cf90146102b05780638da5cb5b146102c357806395d89b41146102d457600080fd5b806323b872dd1161013057806323b872dd1461021a5780632f745c591461022d57806332cb6b0c1461024057806342842e0e146102495780634f6ccce71461025c5780636352211e1461026f57600080fd5b806301ffc9a71461017857806306fdde03146101a0578063081812fc146101b5578063095ea7b3146101e05780630f77282a146101f557806318160ddd14610208575b600080fd5b61018b6101863660046118e7565b61037f565b60405190151581526020015b60405180910390f35b6101a86103aa565b6040516101979190611a2b565b6101c86101c336600461196a565b61043c565b6040516001600160a01b039091168152602001610197565b6101f36101ee36600461178e565b6104d6565b005b6101f3610203366004611921565b6105ec565b6008545b604051908152602001610197565b6101f36102283660046117f3565b61062d565b61020c61023b36600461178e565b61065e565b61020c610bb881565b6101f36102573660046117f3565b6106f4565b61020c61026a36600461196a565b61070f565b6101c861027d36600461196a565b6107a2565b61020c610290366004611771565b610819565b6101f36108a0565b6101f36102ab366004611771565b6108d6565b6101f36102be36600461178e565b610979565b600a546001600160a01b03166101c8565b6101a8610a79565b6101f36102ea3660046118b4565b610a88565b6101f36102fd366004611834565b610b4d565b6101a861031036600461196a565b610b85565b6101a8610bbf565b61018b61032b3660046117ba565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f3610367366004611771565b610bce565b6101f361037a36600461178e565b610c69565b60006001600160e01b0319821663780e9d6360e01b14806103a457506103a482610cc9565b92915050565b6060600080546103b990611b9c565b80601f01602080910402602001604051908101604052809291908181526020018280546103e590611b9c565b80156104325780601f1061040757610100808354040283529160200191610432565b820191906000526020600020905b81548152906001019060200180831161041557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104e1826107a2565b9050806001600160a01b0316836001600160a01b0316141561054f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104b1565b336001600160a01b038216148061056b575061056b813361032b565b6105dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104b1565b6105e78383610d19565b505050565b600a546001600160a01b031633146106165760405162461bcd60e51b81526004016104b190611a90565b805161062990600c906020840190611662565b5050565b6106373382610d87565b6106535760405162461bcd60e51b81526004016104b190611ac5565b6105e7838383610e7e565b600061066983610819565b82106106cb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104b1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6105e783838360405180602001604052806000815250610b4d565b600061071a60085490565b821061077d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104b1565b6008828154811061079057610790611c48565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104b1565b60006001600160a01b0382166108845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104b1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146108ca5760405162461bcd60e51b81526004016104b190611a90565b6108d46000611029565b565b600a546001600160a01b031633146109005760405162461bcd60e51b81526004016104b190611a90565b610bb8600b5411156109425760405162461bcd60e51b815260206004820152600b60248201526a4f76657220737570706c7960a81b60448201526064016104b1565b6109618161095c6001600b5461107b90919063ffffffff16565b61108e565b600b805490600061097183611bd7565b919050555050565b600a546001600160a01b031633146109a35760405162461bcd60e51b81526004016104b190611a90565b6109b06019610bb8611b42565b600b5411156109ef5760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b60448201526064016104b1565b6019811115610a315760405162461bcd60e51b815260206004820152600e60248201526d3235206d6178206174206f6e636560901b60448201526064016104b1565b801561062957610a518261095c6001600b5461107b90919063ffffffff16565b600b8054906000610a6183611bd7565b91905055508080610a7190611b85565b915050610a31565b6060600180546103b990611b9c565b6001600160a01b038216331415610ae15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104b1565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b573383610d87565b610b735760405162461bcd60e51b81526004016104b190611ac5565b610b7f848484846111dc565b50505050565b6060610b8f610bbf565b610b988361120f565b604051602001610ba99291906119af565b6040516020818303038152906040529050919050565b6060600c80546103b990611b9c565b600a546001600160a01b03163314610bf85760405162461bcd60e51b81526004016104b190611a90565b6001600160a01b038116610c5d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104b1565b610c6681611029565b50565b600a546001600160a01b03163314610c935760405162461bcd60e51b81526004016104b190611a90565b6040516001600160a01b0383169082156108fc029083906000818181858888f193505050501580156105e7573d6000803e3d6000fd5b60006001600160e01b031982166380ac58cd60e01b1480610cfa57506001600160e01b03198216635b5e139f60e01b145b806103a457506301ffc9a760e01b6001600160e01b03198316146103a4565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d4e826107a2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104b1565b6000610e0b836107a2565b9050806001600160a01b0316846001600160a01b03161480610e465750836001600160a01b0316610e3b8461043c565b6001600160a01b0316145b80610e7657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e91826107a2565b6001600160a01b031614610ef95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104b1565b6001600160a01b038216610f5b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104b1565b610f6683838361130d565b610f71600082610d19565b6001600160a01b0383166000908152600360205260408120805460019290610f9a908490611b42565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fc8908490611b16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006110878284611b16565b9392505050565b6001600160a01b0382166110e45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104b1565b6000818152600260205260409020546001600160a01b0316156111495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104b1565b6111556000838361130d565b6001600160a01b038216600090815260036020526040812080546001929061117e908490611b16565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6111e7848484610e7e565b6111f3848484846113c5565b610b7f5760405162461bcd60e51b81526004016104b190611a3e565b6060816112335750506040805180820190915260018152600360fc1b602082015290565b8160005b811561125d578061124781611bd7565b91506112569050600a83611b2e565b9150611237565b60008167ffffffffffffffff81111561127857611278611c5e565b6040519080825280601f01601f1916602001820160405280156112a2576020820181803683370190505b5090505b8415610e76576112b7600183611b42565b91506112c4600a86611bf2565b6112cf906030611b16565b60f81b8183815181106112e4576112e4611c48565b60200101906001600160f81b031916908160001a905350611306600a86611b2e565b94506112a6565b6001600160a01b0383166113685761136381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61138b565b816001600160a01b0316836001600160a01b03161461138b5761138b83826114d2565b6001600160a01b0382166113a2576105e78161156f565b826001600160a01b0316826001600160a01b0316146105e7576105e7828261161e565b60006001600160a01b0384163b156114c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114099033908990889088906004016119ee565b602060405180830381600087803b15801561142357600080fd5b505af1925050508015611453575060408051601f3d908101601f1916820190925261145091810190611904565b60015b6114ad573d808015611481576040519150601f19603f3d011682016040523d82523d6000602084013e611486565b606091505b5080516114a55760405162461bcd60e51b81526004016104b190611a3e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e76565b506001949350505050565b600060016114df84610819565b6114e99190611b42565b60008381526007602052604090205490915080821461153c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061158190600190611b42565b600083815260096020526040812054600880549394509092849081106115a9576115a9611c48565b9060005260206000200154905080600883815481106115ca576115ca611c48565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061160257611602611c32565b6001900381819060005260206000200160009055905550505050565b600061162983610819565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461166e90611b9c565b90600052602060002090601f01602090048101928261169057600085556116d6565b82601f106116a957805160ff19168380011785556116d6565b828001600101855582156116d6579182015b828111156116d65782518255916020019190600101906116bb565b506116e29291506116e6565b5090565b5b808211156116e257600081556001016116e7565b600067ffffffffffffffff8084111561171657611716611c5e565b604051601f8501601f19908116603f0116810190828211818310171561173e5761173e611c5e565b8160405280935085815286868601111561175757600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561178357600080fd5b813561108781611c74565b600080604083850312156117a157600080fd5b82356117ac81611c74565b946020939093013593505050565b600080604083850312156117cd57600080fd5b82356117d881611c74565b915060208301356117e881611c74565b809150509250929050565b60008060006060848603121561180857600080fd5b833561181381611c74565b9250602084013561182381611c74565b929592945050506040919091013590565b6000806000806080858703121561184a57600080fd5b843561185581611c74565b9350602085013561186581611c74565b925060408501359150606085013567ffffffffffffffff81111561188857600080fd5b8501601f8101871361189957600080fd5b6118a8878235602084016116fb565b91505092959194509250565b600080604083850312156118c757600080fd5b82356118d281611c74565b9150602083013580151581146117e857600080fd5b6000602082840312156118f957600080fd5b813561108781611c89565b60006020828403121561191657600080fd5b815161108781611c89565b60006020828403121561193357600080fd5b813567ffffffffffffffff81111561194a57600080fd5b8201601f8101841361195b57600080fd5b610e76848235602084016116fb565b60006020828403121561197c57600080fd5b5035919050565b6000815180845261199b816020860160208601611b59565b601f01601f19169290920160200192915050565b600083516119c1818460208801611b59565b8351908301906119d5818360208801611b59565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a2190830184611983565b9695505050505050565b6020815260006110876020830184611983565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611b2957611b29611c06565b500190565b600082611b3d57611b3d611c1c565b500490565b600082821015611b5457611b54611c06565b500390565b60005b83811015611b74578181015183820152602001611b5c565b83811115610b7f5750506000910152565b600081611b9457611b94611c06565b506000190190565b600181811c90821680611bb057607f821691505b60208210811415611bd157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611beb57611beb611c06565b5060010190565b600082611c0157611c01611c1c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c6657600080fd5b6001600160e01b031981168114610c6657600080fdfea26469706673582212206385d3a660c489ba981436b6272fa3bef29a45dd38171c9eb67e466d5dddf2fe64736f6c63430008070033

Deployed ByteCode Sourcemap

52548:363:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44531:224;;;;;;:::i;:::-;;:::i;:::-;;;6538:14:1;;6531:22;6513:41;;6501:2;6486:18;44531:224:0;;;;;;;;32370:100;;;:::i;:::-;;;;;;;:::i;33929:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5836:32:1;;;5818:51;;5806:2;5791:18;33929:221:0;5672:203:1;33452:411:0;;;;;;:::i;:::-;;:::i;:::-;;52809:97;;;;;;:::i;:::-;;:::i;45171:113::-;45259:10;:17;45171:113;;;14749:25:1;;;14737:2;14722:18;45171:113:0;14603:177:1;34819:339:0;;;;;;:::i;:::-;;:::i;44839:256::-;;;;;;:::i;:::-;;:::i;51013:38::-;;51047:4;51013:38;;35229:185;;;;;;:::i;:::-;;:::i;45361:233::-;;;;;;:::i;:::-;;:::i;32064:239::-;;;;;;:::i;:::-;;:::i;31794:208::-;;;;;;:::i;:::-;;:::i;11645:94::-;;;:::i;51303:191::-;;;;;;:::i;:::-;;:::i;51502:392::-;;;;;;:::i;:::-;;:::i;10994:87::-;11067:6;;-1:-1:-1;;;;;11067:6:0;10994:87;;32539:104;;;:::i;34222:295::-;;;;;;:::i;:::-;;:::i;35485:328::-;;;;;;:::i;:::-;;:::i;52293:184::-;;;;;;:::i;:::-;;:::i;52696:103::-;;;:::i;34588:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;34709:25:0;;;34685:4;34709:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34588:164;11894:192;;;;;;:::i;:::-;;:::i;52097:110::-;;;;;;:::i;:::-;;:::i;44531:224::-;44633:4;-1:-1:-1;;;;;;44657:50:0;;-1:-1:-1;;;44657:50:0;;:90;;;44711:36;44735:11;44711:23;:36::i;:::-;44650:97;44531:224;-1:-1:-1;;44531:224:0:o;32370:100::-;32424:13;32457:5;32450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32370:100;:::o;33929:221::-;34005:7;37412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37412:16:0;34025:73;;;;-1:-1:-1;;;34025:73:0;;11708:2:1;34025:73:0;;;11690:21:1;11747:2;11727:18;;;11720:30;11786:34;11766:18;;;11759:62;-1:-1:-1;;;11837:18:1;;;11830:42;11889:19;;34025:73:0;;;;;;;;;-1:-1:-1;34118:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34118:24:0;;33929:221::o;33452:411::-;33533:13;33549:23;33564:7;33549:14;:23::i;:::-;33533:39;;33597:5;-1:-1:-1;;;;;33591:11:0;:2;-1:-1:-1;;;;;33591:11:0;;;33583:57;;;;-1:-1:-1;;;33583:57:0;;13232:2:1;33583:57:0;;;13214:21:1;13271:2;13251:18;;;13244:30;13310:34;13290:18;;;13283:62;-1:-1:-1;;;13361:18:1;;;13354:31;13402:19;;33583:57:0;13030:397:1;33583:57:0;9809:10;-1:-1:-1;;;;;33675:21:0;;;;:62;;-1:-1:-1;33700:37:0;33717:5;9809:10;34588:164;:::i;33700:37::-;33653:168;;;;-1:-1:-1;;;33653:168:0;;10101:2:1;33653:168:0;;;10083:21:1;10140:2;10120:18;;;10113:30;10179:34;10159:18;;;10152:62;10250:26;10230:18;;;10223:54;10294:19;;33653:168:0;9899:420:1;33653:168:0;33834:21;33843:2;33847:7;33834:8;:21::i;:::-;33522:341;33452:411;;:::o;52809:97::-;11067:6;;-1:-1:-1;;;;;11067:6:0;9809:10;11214:23;11206:68;;;;-1:-1:-1;;;11206:68:0;;;;;;;:::i;:::-;52880:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52809:97:::0;:::o;34819:339::-;35014:41;9809:10;35047:7;35014:18;:41::i;:::-;35006:103;;;;-1:-1:-1;;;35006:103:0;;;;;;;:::i;:::-;35122:28;35132:4;35138:2;35142:7;35122:9;:28::i;44839:256::-;44936:7;44972:23;44989:5;44972:16;:23::i;:::-;44964:5;:31;44956:87;;;;-1:-1:-1;;;44956:87:0;;6991:2:1;44956:87:0;;;6973:21:1;7030:2;7010:18;;;7003:30;7069:34;7049:18;;;7042:62;-1:-1:-1;;;7120:18:1;;;7113:41;7171:19;;44956:87:0;6789:407:1;44956:87:0;-1:-1:-1;;;;;;45061:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;44839:256::o;35229:185::-;35367:39;35384:4;35390:2;35394:7;35367:39;;;;;;;;;;;;:16;:39::i;45361:233::-;45436:7;45472:30;45259:10;:17;;45171:113;45472:30;45464:5;:38;45456:95;;;;-1:-1:-1;;;45456:95:0;;14392:2:1;45456:95:0;;;14374:21:1;14431:2;14411:18;;;14404:30;14470:34;14450:18;;;14443:62;-1:-1:-1;;;14521:18:1;;;14514:42;14573:19;;45456:95:0;14190:408:1;45456:95:0;45569:10;45580:5;45569:17;;;;;;;;:::i;:::-;;;;;;;;;45562:24;;45361:233;;;:::o;32064:239::-;32136:7;32172:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32172:16:0;32207:19;32199:73;;;;-1:-1:-1;;;32199:73:0;;10937:2:1;32199:73:0;;;10919:21:1;10976:2;10956:18;;;10949:30;11015:34;10995:18;;;10988:62;-1:-1:-1;;;11066:18:1;;;11059:39;11115:19;;32199:73:0;10735:405:1;31794:208:0;31866:7;-1:-1:-1;;;;;31894:19:0;;31886:74;;;;-1:-1:-1;;;31886:74:0;;10526:2:1;31886:74:0;;;10508:21:1;10565:2;10545:18;;;10538:30;10604:34;10584:18;;;10577:62;-1:-1:-1;;;10655:18:1;;;10648:40;10705:19;;31886:74:0;10324:406:1;31886:74:0;-1:-1:-1;;;;;;31978:16:0;;;;;:9;:16;;;;;;;31794:208::o;11645:94::-;11067:6;;-1:-1:-1;;;;;11067:6:0;9809:10;11214:23;11206:68;;;;-1:-1:-1;;;11206:68:0;;;;;;;:::i;:::-;11710:21:::1;11728:1;11710:9;:21::i;:::-;11645:94::o:0;51303:191::-;11067:6;;-1:-1:-1;;;;;11067:6:0;9809:10;11214:23;11206:68;;;;-1:-1:-1;;;11206:68:0;;;;;;;:::i;:::-;51047:4:::1;51368:15;;:29;;51360:53;;;::::0;-1:-1:-1;;;51360:53:0;;13634:2:1;51360:53:0::1;::::0;::::1;13616:21:1::0;13673:2;13653:18;;;13646:30;-1:-1:-1;;;13692:18:1;;;13685:41;13743:18;;51360:53:0::1;13432:335:1::0;51360:53:0::1;51424:34;51430:3;51435:22;51455:1;51435:15;;:19;;:22;;;;:::i;:::-;51424:5;:34::i;:::-;51469:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;;51303:191:::0;:::o;51502:392::-;11067:6;;-1:-1:-1;;;;;11067:6:0;9809:10;11214:23;11206:68;;;;-1:-1:-1;;;11206:68:0;;;;;;;:::i;:::-;51603:15:::1;51616:2;51047:4;51603:15;:::i;:::-;51584;;:34;;51576:58;;;::::0;-1:-1:-1;;;51576:58:0;;12121:2:1;51576:58:0::1;::::0;::::1;12103:21:1::0;12160:2;12140:18;;;12133:30;-1:-1:-1;;;12179:18:1;;;12172:41;12230:18;;51576:58:0::1;11919:335:1::0;51576:58:0::1;51690:2;51680:6;:12;;51672:39;;;::::0;-1:-1:-1;;;51672:39:0;;7403:2:1;51672:39:0::1;::::0;::::1;7385:21:1::0;7442:2;7422:18;;;7415:30;-1:-1:-1;;;7461:18:1;;;7454:44;7515:18;;51672:39:0::1;7201:338:1::0;51672:39:0::1;51764:11:::0;;51757:130:::1;;51790:34;51796:3;51801:22;51821:1;51801:15;;:19;;:22;;;;:::i;51790:34::-;51837:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;;51867:8;;;;;:::i;:::-;;;;51757:130;;32539:104:::0;32595:13;32628:7;32621:14;;;;;:::i;34222:295::-;-1:-1:-1;;;;;34325:24:0;;9809:10;34325:24;;34317:62;;;;-1:-1:-1;;;34317:62:0;;9334:2:1;34317:62:0;;;9316:21:1;9373:2;9353:18;;;9346:30;9412:27;9392:18;;;9385:55;9457:18;;34317:62:0;9132:349:1;34317:62:0;9809:10;34392:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34392:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34392:53:0;;;;;;;;;;34461:48;;6513:41:1;;;34392:42:0;;9809:10;34461:48;;6486:18:1;34461:48:0;;;;;;;34222:295;;:::o;35485:328::-;35660:41;9809:10;35693:7;35660:18;:41::i;:::-;35652:103;;;;-1:-1:-1;;;35652:103:0;;;;;;;:::i;:::-;35766:39;35780:4;35786:2;35790:7;35799:5;35766:13;:39::i;:::-;35485:328;;;;:::o;52293:184::-;52359:13;52416:14;:12;:14::i;:::-;52432:26;52449:8;52432:16;:26::i;:::-;52399:69;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52385:84;;52293:184;;;:::o;52696:103::-;52750:13;52783:8;52776:15;;;;;:::i;11894:192::-;11067:6;;-1:-1:-1;;;;;11067:6:0;9809:10;11214:23;11206:68;;;;-1:-1:-1;;;11206:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11983:22:0;::::1;11975:73;;;::::0;-1:-1:-1;;;11975:73:0;;8165:2:1;11975:73:0::1;::::0;::::1;8147:21:1::0;8204:2;8184:18;;;8177:30;8243:34;8223:18;;;8216:62;-1:-1:-1;;;8294:18:1;;;8287:36;8340:19;;11975:73:0::1;7963:402:1::0;11975:73:0::1;12059:19;12069:8;12059:9;:19::i;:::-;11894:192:::0;:::o;52097:110::-;11067:6;;-1:-1:-1;;;;;11067:6:0;9809:10;11214:23;11206:68;;;;-1:-1:-1;;;11206:68:0;;;;;;;:::i;:::-;52178:21:::1;::::0;-1:-1:-1;;;;;52178:12:0;::::1;::::0;:21;::::1;;;::::0;52191:7;;52178:21:::1;::::0;;;52191:7;52178:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;31425:305:::0;31527:4;-1:-1:-1;;;;;;31564:40:0;;-1:-1:-1;;;31564:40:0;;:105;;-1:-1:-1;;;;;;;31621:48:0;;-1:-1:-1;;;31621:48:0;31564:105;:158;;;-1:-1:-1;;;;;;;;;;23301:40:0;;;31686:36;23192:157;41305:174;41380:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41380:29:0;-1:-1:-1;;;;;41380:29:0;;;;;;;;:24;;41434:23;41380:24;41434:14;:23::i;:::-;-1:-1:-1;;;;;41425:46:0;;;;;;;;;;;41305:174;;:::o;37617:348::-;37710:4;37412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37412:16:0;37727:73;;;;-1:-1:-1;;;37727:73:0;;9688:2:1;37727:73:0;;;9670:21:1;9727:2;9707:18;;;9700:30;9766:34;9746:18;;;9739:62;-1:-1:-1;;;9817:18:1;;;9810:42;9869:19;;37727:73:0;9486:408:1;37727:73:0;37811:13;37827:23;37842:7;37827:14;:23::i;:::-;37811:39;;37880:5;-1:-1:-1;;;;;37869:16:0;:7;-1:-1:-1;;;;;37869:16:0;;:51;;;;37913:7;-1:-1:-1;;;;;37889:31:0;:20;37901:7;37889:11;:20::i;:::-;-1:-1:-1;;;;;37889:31:0;;37869:51;:87;;;-1:-1:-1;;;;;;34709:25:0;;;34685:4;34709:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37924:32;37861:96;37617:348;-1:-1:-1;;;;37617:348:0:o;40609:578::-;40768:4;-1:-1:-1;;;;;40741:31:0;:23;40756:7;40741:14;:23::i;:::-;-1:-1:-1;;;;;40741:31:0;;40733:85;;;;-1:-1:-1;;;40733:85:0;;12822:2:1;40733:85:0;;;12804:21:1;12861:2;12841:18;;;12834:30;12900:34;12880:18;;;12873:62;-1:-1:-1;;;12951:18:1;;;12944:39;13000:19;;40733:85:0;12620:405:1;40733:85:0;-1:-1:-1;;;;;40837:16:0;;40829:65;;;;-1:-1:-1;;;40829:65:0;;8929:2:1;40829:65:0;;;8911:21:1;8968:2;8948:18;;;8941:30;9007:34;8987:18;;;8980:62;-1:-1:-1;;;9058:18:1;;;9051:34;9102:19;;40829:65:0;8727:400:1;40829:65:0;40907:39;40928:4;40934:2;40938:7;40907:20;:39::i;:::-;41011:29;41028:1;41032:7;41011:8;:29::i;:::-;-1:-1:-1;;;;;41053:15:0;;;;;;:9;:15;;;;;:20;;41072:1;;41053:15;:20;;41072:1;;41053:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41084:13:0;;;;;;:9;:13;;;;;:18;;41101:1;;41084:13;:18;;41101:1;;41084:18;:::i;:::-;;;;-1:-1:-1;;41113:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41113:21:0;-1:-1:-1;;;;;41113:21:0;;;;;;;;;41152:27;;41113:16;;41152:27;;;;;;;40609:578;;;:::o;12094:173::-;12169:6;;;-1:-1:-1;;;;;12186:17:0;;;-1:-1:-1;;;;;;12186:17:0;;;;;;;12219:40;;12169:6;;;12186:17;12169:6;;12219:40;;12150:16;;12219:40;12139:128;12094:173;:::o;2763:98::-;2821:7;2848:5;2852:1;2848;:5;:::i;:::-;2841:12;2763:98;-1:-1:-1;;;2763:98:0:o;39301:382::-;-1:-1:-1;;;;;39381:16:0;;39373:61;;;;-1:-1:-1;;;39373:61:0;;11347:2:1;39373:61:0;;;11329:21:1;;;11366:18;;;11359:30;11425:34;11405:18;;;11398:62;11477:18;;39373:61:0;11145:356:1;39373:61:0;37388:4;37412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37412:16:0;:30;39445:58;;;;-1:-1:-1;;;39445:58:0;;8572:2:1;39445:58:0;;;8554:21:1;8611:2;8591:18;;;8584:30;8650;8630:18;;;8623:58;8698:18;;39445:58:0;8370:352:1;39445:58:0;39516:45;39545:1;39549:2;39553:7;39516:20;:45::i;:::-;-1:-1:-1;;;;;39574:13:0;;;;;;:9;:13;;;;;:18;;39591:1;;39574:13;:18;;39591:1;;39574:18;:::i;:::-;;;;-1:-1:-1;;39603:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39603:21:0;-1:-1:-1;;;;;39603:21:0;;;;;;;;39642:33;;39603:16;;;39642:33;;39603:16;;39642:33;39301:382;;:::o;36695:315::-;36852:28;36862:4;36868:2;36872:7;36852:9;:28::i;:::-;36899:48;36922:4;36928:2;36932:7;36941:5;36899:22;:48::i;:::-;36891:111;;;;-1:-1:-1;;;36891:111:0;;;;;;;:::i;7292:723::-;7348:13;7569:10;7565:53;;-1:-1:-1;;7596:10:0;;;;;;;;;;;;-1:-1:-1;;;7596:10:0;;;;;7292:723::o;7565:53::-;7643:5;7628:12;7684:78;7691:9;;7684:78;;7717:8;;;;:::i;:::-;;-1:-1:-1;7740:10:0;;-1:-1:-1;7748:2:0;7740:10;;:::i;:::-;;;7684:78;;;7772:19;7804:6;7794:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7794:17:0;;7772:39;;7822:154;7829:10;;7822:154;;7856:11;7866:1;7856:11;;:::i;:::-;;-1:-1:-1;7925:10:0;7933:2;7925:5;:10;:::i;:::-;7912:24;;:2;:24;:::i;:::-;7899:39;;7882:6;7889;7882:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7882:56:0;;;;;;;;-1:-1:-1;7953:11:0;7962:2;7953:11;;:::i;:::-;;;7822:154;;46207:589;-1:-1:-1;;;;;46413:18:0;;46409:187;;46448:40;46480:7;47623:10;:17;;47596:24;;;;:15;:24;;;;;:44;;;47651:24;;;;;;;;;;;;47519:164;46448:40;46409:187;;;46518:2;-1:-1:-1;;;;;46510:10:0;:4;-1:-1:-1;;;;;46510:10:0;;46506:90;;46537:47;46570:4;46576:7;46537:32;:47::i;:::-;-1:-1:-1;;;;;46610:16:0;;46606:183;;46643:45;46680:7;46643:36;:45::i;46606:183::-;46716:4;-1:-1:-1;;;;;46710:10:0;:2;-1:-1:-1;;;;;46710:10:0;;46706:83;;46737:40;46765:2;46769:7;46737:27;:40::i;42044:799::-;42199:4;-1:-1:-1;;;;;42220:13:0;;13416:20;13464:8;42216:620;;42256:72;;-1:-1:-1;;;42256:72:0;;-1:-1:-1;;;;;42256:36:0;;;;;:72;;9809:10;;42307:4;;42313:7;;42322:5;;42256:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42256:72:0;;;;;;;;-1:-1:-1;;42256:72:0;;;;;;;;;;;;:::i;:::-;;;42252:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42498:13:0;;42494:272;;42541:60;;-1:-1:-1;;;42541:60:0;;;;;;;:::i;42494:272::-;42716:6;42710:13;42701:6;42697:2;42693:15;42686:38;42252:529;-1:-1:-1;;;;;;42379:51:0;-1:-1:-1;;;42379:51:0;;-1:-1:-1;42372:58:0;;42216:620;-1:-1:-1;42820:4:0;42044:799;;;;;;:::o;48310:988::-;48576:22;48626:1;48601:22;48618:4;48601:16;:22::i;:::-;:26;;;;:::i;:::-;48638:18;48659:26;;;:17;:26;;;;;;48576:51;;-1:-1:-1;48792:28:0;;;48788:328;;-1:-1:-1;;;;;48859:18:0;;48837:19;48859:18;;;:12;:18;;;;;;;;:34;;;;;;;;;48910:30;;;;;;:44;;;49027:30;;:17;:30;;;;;:43;;;48788:328;-1:-1:-1;49212:26:0;;;;:17;:26;;;;;;;;49205:33;;;-1:-1:-1;;;;;49256:18:0;;;;;:12;:18;;;;;:34;;;;;;;49249:41;48310:988::o;49593:1079::-;49871:10;:17;49846:22;;49871:21;;49891:1;;49871:21;:::i;:::-;49903:18;49924:24;;;:15;:24;;;;;;50297:10;:26;;49846:46;;-1:-1:-1;49924:24:0;;49846:46;;50297:26;;;;;;:::i;:::-;;;;;;;;;50275:48;;50361:11;50336:10;50347;50336:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50441:28;;;:15;:28;;;;;;;:41;;;50613:24;;;;;50606:31;50648:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49664:1008;;;49593:1079;:::o;47097:221::-;47182:14;47199:20;47216:2;47199:16;:20::i;:::-;-1:-1:-1;;;;;47230:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47275:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47097:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;902:323::-;978:6;986;1039:2;1027:9;1018:7;1014:23;1010:32;1007:52;;;1055:1;1052;1045:12;1007:52;1094:9;1081:23;1113:31;1138:5;1113:31;:::i;:::-;1163:5;1215:2;1200:18;;;;1187:32;;-1:-1:-1;;;902:323:1:o;1230:388::-;1298:6;1306;1359:2;1347:9;1338:7;1334:23;1330:32;1327:52;;;1375:1;1372;1365:12;1327:52;1414:9;1401:23;1433:31;1458:5;1433:31;:::i;:::-;1483:5;-1:-1:-1;1540:2:1;1525:18;;1512:32;1553:33;1512:32;1553:33;:::i;:::-;1605:7;1595:17;;;1230:388;;;;;:::o;1623:456::-;1700:6;1708;1716;1769:2;1757:9;1748:7;1744:23;1740:32;1737:52;;;1785:1;1782;1775:12;1737:52;1824:9;1811:23;1843:31;1868:5;1843:31;:::i;:::-;1893:5;-1:-1:-1;1950:2:1;1935:18;;1922:32;1963:33;1922:32;1963:33;:::i;:::-;1623:456;;2015:7;;-1:-1:-1;;;2069:2:1;2054:18;;;;2041:32;;1623:456::o;2084:794::-;2179:6;2187;2195;2203;2256:3;2244:9;2235:7;2231:23;2227:33;2224:53;;;2273:1;2270;2263:12;2224:53;2312:9;2299:23;2331:31;2356:5;2331:31;:::i;:::-;2381:5;-1:-1:-1;2438:2:1;2423:18;;2410:32;2451:33;2410:32;2451:33;:::i;:::-;2503:7;-1:-1:-1;2557:2:1;2542:18;;2529:32;;-1:-1:-1;2612:2:1;2597:18;;2584:32;2639:18;2628:30;;2625:50;;;2671:1;2668;2661:12;2625:50;2694:22;;2747:4;2739:13;;2735:27;-1:-1:-1;2725:55:1;;2776:1;2773;2766:12;2725:55;2799:73;2864:7;2859:2;2846:16;2841:2;2837;2833:11;2799:73;:::i;:::-;2789:83;;;2084:794;;;;;;;:::o;2883:416::-;2948:6;2956;3009:2;2997:9;2988:7;2984:23;2980:32;2977:52;;;3025:1;3022;3015:12;2977:52;3064:9;3051:23;3083:31;3108:5;3083:31;:::i;:::-;3133:5;-1:-1:-1;3190:2:1;3175:18;;3162:32;3232:15;;3225:23;3213:36;;3203:64;;3263:1;3260;3253:12;3624:245;3682:6;3735:2;3723:9;3714:7;3710:23;3706:32;3703:52;;;3751:1;3748;3741:12;3703:52;3790:9;3777:23;3809:30;3833:5;3809:30;:::i;3874:249::-;3943:6;3996:2;3984:9;3975:7;3971:23;3967:32;3964:52;;;4012:1;4009;4002:12;3964:52;4044:9;4038:16;4063:30;4087:5;4063:30;:::i;4128:450::-;4197:6;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;4306:9;4293:23;4339:18;4331:6;4328:30;4325:50;;;4371:1;4368;4361:12;4325:50;4394:22;;4447:4;4439:13;;4435:27;-1:-1:-1;4425:55:1;;4476:1;4473;4466:12;4425:55;4499:73;4564:7;4559:2;4546:16;4541:2;4537;4533:11;4499:73;:::i;4583:180::-;4642:6;4695:2;4683:9;4674:7;4670:23;4666:32;4663:52;;;4711:1;4708;4701:12;4663:52;-1:-1:-1;4734:23:1;;4583:180;-1:-1:-1;4583:180:1:o;4768:257::-;4809:3;4847:5;4841:12;4874:6;4869:3;4862:19;4890:63;4946:6;4939:4;4934:3;4930:14;4923:4;4916:5;4912:16;4890:63;:::i;:::-;5007:2;4986:15;-1:-1:-1;;4982:29:1;4973:39;;;;5014:4;4969:50;;4768:257;-1:-1:-1;;4768:257:1:o;5030:637::-;5310:3;5348:6;5342:13;5364:53;5410:6;5405:3;5398:4;5390:6;5386:17;5364:53;:::i;:::-;5480:13;;5439:16;;;;5502:57;5480:13;5439:16;5536:4;5524:17;;5502:57;:::i;:::-;-1:-1:-1;;;5581:20:1;;5610:22;;;5659:1;5648:13;;5030:637;-1:-1:-1;;;;5030:637:1:o;5880:488::-;-1:-1:-1;;;;;6149:15:1;;;6131:34;;6201:15;;6196:2;6181:18;;6174:43;6248:2;6233:18;;6226:34;;;6296:3;6291:2;6276:18;;6269:31;;;6074:4;;6317:45;;6342:19;;6334:6;6317:45;:::i;:::-;6309:53;5880:488;-1:-1:-1;;;;;;5880:488:1:o;6565:219::-;6714:2;6703:9;6696:21;6677:4;6734:44;6774:2;6763:9;6759:18;6751:6;6734:44;:::i;7544:414::-;7746:2;7728:21;;;7785:2;7765:18;;;7758:30;7824:34;7819:2;7804:18;;7797:62;-1:-1:-1;;;7890:2:1;7875:18;;7868:48;7948:3;7933:19;;7544:414::o;12259:356::-;12461:2;12443:21;;;12480:18;;;12473:30;12539:34;12534:2;12519:18;;12512:62;12606:2;12591:18;;12259:356::o;13772:413::-;13974:2;13956:21;;;14013:2;13993:18;;;13986:30;14052:34;14047:2;14032:18;;14025:62;-1:-1:-1;;;14118:2:1;14103:18;;14096:47;14175:3;14160:19;;13772:413::o;14785:128::-;14825:3;14856:1;14852:6;14849:1;14846:13;14843:39;;;14862:18;;:::i;:::-;-1:-1:-1;14898:9:1;;14785:128::o;14918:120::-;14958:1;14984;14974:35;;14989:18;;:::i;:::-;-1:-1:-1;15023:9:1;;14918:120::o;15043:125::-;15083:4;15111:1;15108;15105:8;15102:34;;;15116:18;;:::i;:::-;-1:-1:-1;15153:9:1;;15043:125::o;15173:258::-;15245:1;15255:113;15269:6;15266:1;15263:13;15255:113;;;15345:11;;;15339:18;15326:11;;;15319:39;15291:2;15284:10;15255:113;;;15386:6;15383:1;15380:13;15377:48;;;-1:-1:-1;;15421:1:1;15403:16;;15396:27;15173:258::o;15436:136::-;15475:3;15503:5;15493:39;;15512:18;;:::i;:::-;-1:-1:-1;;;15548:18:1;;15436:136::o;15577:380::-;15656:1;15652:12;;;;15699;;;15720:61;;15774:4;15766:6;15762:17;15752:27;;15720:61;15827:2;15819:6;15816:14;15796:18;15793:38;15790:161;;;15873:10;15868:3;15864:20;15861:1;15854:31;15908:4;15905:1;15898:15;15936:4;15933:1;15926:15;15790:161;;15577:380;;;:::o;15962:135::-;16001:3;-1:-1:-1;;16022:17:1;;16019:43;;;16042:18;;:::i;:::-;-1:-1:-1;16089:1:1;16078:13;;15962:135::o;16102:112::-;16134:1;16160;16150:35;;16165:18;;:::i;:::-;-1:-1:-1;16199:9:1;;16102:112::o;16219:127::-;16280:10;16275:3;16271:20;16268:1;16261:31;16311:4;16308:1;16301:15;16335:4;16332:1;16325:15;16351:127;16412:10;16407:3;16403:20;16400:1;16393:31;16443:4;16440:1;16433:15;16467:4;16464:1;16457:15;16483:127;16544:10;16539:3;16535:20;16532:1;16525:31;16575:4;16572:1;16565:15;16599:4;16596:1;16589:15;16615:127;16676:10;16671:3;16667:20;16664:1;16657:31;16707:4;16704:1;16697:15;16731:4;16728:1;16721:15;16747:127;16808:10;16803:3;16799:20;16796:1;16789:31;16839:4;16836:1;16829:15;16863:4;16860:1;16853:15;16879:131;-1:-1:-1;;;;;16954:31:1;;16944:42;;16934:70;;17000:1;16997;16990:12;17015:131;-1:-1:-1;;;;;;17089:32:1;;17079:43;;17069:71;;17136:1;17133;17126:12

Swarm Source

ipfs://6385d3a660c489ba981436b6272fa3bef29a45dd38171c9eb67e466d5dddf2fe
Loading