ETH Price: $3,101.91 (-0.85%)

Token

Weed Bags of New York (WBNY)
 

Overview

Max Total Supply

63 WBNY

Holders

38

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
SUMMER CAMP!: Deployer
Balance
1 WBNY
0xC5fFbCd8A374889c6e95f8df733e32A0e9476a9c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
WeedBags

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (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/WeedBags.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;




contract WeedBags is ERC721Enumerable, Ownable, ReentrancyGuard {
    uint256 public constant maxTokens = 224;    
    uint256 public tokenPrice = 0.08 ether; //0.08 ether

    string private _uriPrefix;

    bool public mintingEnabled;

    mapping(address => uint256) private reserveMintCountsRemaining;

    constructor() ERC721("Weed Bags of New York", "WBNY") Ownable() {
        mintingEnabled = true;
        _uriPrefix = 'ipfs://QmawuhKvSAg3u3dtwii7gcZnjSzG1vmF9qhYosdoJprnrB/';
        _mint(_msgSender(), 0);
        _mint(_msgSender(), 1);
        _mint(_msgSender(), 2);
        _mint(_msgSender(), 3);
        
        allocateReserveMint(0x1dB9fA416F92355da29e50340D45E92f76D3AA9e, 5);
        allocateReserveMint(0xa8377A9F38513d7262b081d6c5c1879dBe855569, 1);          
        allocateReserveMint(0xa39B5F5fa7a80DBb652008588605f38302F076fb, 1);          
        allocateReserveMint(0x79270159B890B492150980fB7a130958B2740fE6, 1);          
        allocateReserveMint(0xdC088dE7c9E83eFb8912D029Fd7D80463083479F, 1);          
        allocateReserveMint(0x492B1acdb6F1A28418dFc59B4fC9BCF5B8B2D88D, 1);          
        allocateReserveMint(0xC5fFbCd8A374889c6e95f8df733e32A0e9476a9c, 1);          
        allocateReserveMint(0x6CD1B82490Eb7aA18beC4305C6c2E691194C6898, 1);          
    }

    function setUriPrefix(string memory uriPrefix) external onlyOwner
    {
        _uriPrefix = uriPrefix;
    }

    function setMintingEnabled(bool newMintingEnabled) external onlyOwner
    {
        mintingEnabled = newMintingEnabled;
    }
    
    function _baseURI() override internal view virtual returns (string memory) {
        return _uriPrefix;
    }

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

    function mint(uint256 count) external payable nonReentrant {
        require(mintingEnabled, "minting is not enabled");
        require(count > 0 && count <= 10, "invalid weedbag count");
        require(totalSupply() + count <= maxTokens, "all weedbags claimed");
        require(msg.value == count * tokenPrice, "send 0.08 ETH per weedbag to mint");
        require(msg.sender == tx.origin, "Contracts may not mint");

        for(uint256 i = 0; i < count; i++) {
            _mint(_msgSender(), totalSupply());
        }
    }

    function allocateReserveMint(address addr, uint256 count) public onlyOwner nonReentrant {
        reserveMintCountsRemaining[addr] = count;
    }

    function getNumReserveMints(address addr) public view returns (uint256) {
        return reserveMintCountsRemaining[addr];
    }

    function reserveMint(uint256 count) public nonReentrant {
        require(count > 0, "invalid weedbag count");
        require(reserveMintCountsRemaining[msg.sender] >= count, "Cannot mint this many reserved weedbags");
        require(totalSupply() + count <= maxTokens, "all weedbags claimed");

        for(uint256 i = 0; i < count; i++) {
            _mint(_msgSender(), totalSupply());
        }
        reserveMintCountsRemaining[msg.sender] -= count;
    } 

    function withdraw() public onlyOwner {
        (bool success,) = msg.sender.call{value : address(this).balance}('');
        require(success, "Withdraw Failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"allocateReserveMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getNumReserveMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserveMint","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":"bool","name":"newMintingEnabled","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uriPrefix","type":"string"}],"name":"setUriPrefix","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267011c37937e080000600c553480156200001d57600080fd5b50604080518082018252601581527f576565642042616773206f66204e657720596f726b000000000000000000000060208083019182528351808501909452600484526357424e5960e01b9084015281519192916200007f91600091620007dc565b50805162000095906001906020840190620007dc565b505050620000b2620000ac6200023860201b60201c565b6200023c565b6001600b819055600e805460ff191690911790556040805160608101909152603680825262002c3b60208301398051620000f591600d91602090910190620007dc565b50620001033360006200028e565b620001103360016200028e565b6200011d3360026200028e565b6200012a3360036200028e565b6200014b731db9fa416f92355da29e50340d45e92f76d3aa9e6005620003e8565b6200016c73a8377a9f38513d7262b081d6c5c1879dbe8555696001620003e8565b6200018d73a39b5f5fa7a80dbb652008588605f38302f076fb6001620003e8565b620001ae7379270159b890b492150980fb7a130958b2740fe66001620003e8565b620001cf73dc088de7c9e83efb8912d029fd7d80463083479f6001620003e8565b620001f073492b1acdb6f1a28418dfc59b4fc9bcf5b8b2d88d6001620003e8565b6200021173c5ffbcd8a374889c6e95f8df733e32a0e9476a9c6001620003e8565b62000232736cd1b82490eb7aa18bec4305c6c2e691194c68986001620003e8565b62000936565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002ea5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064015b60405180910390fd5b6000818152600260205260409020546001600160a01b031615620003515760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002e1565b6200035f60008383620004ba565b6001600160a01b03821660009081526003602052604081208054600192906200038a90849062000882565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a546001600160a01b03163314620004445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620002e1565b6002600b541415620004995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401620002e1565b6001600160a01b039091166000908152600f60205260409020556001600b55565b620004d28383836200057060201b620007f31760201c565b6001600160a01b03831662000530576200052a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000556565b816001600160a01b0316836001600160a01b03161462000556576200055683826200059b565b6001600160a01b0382166200057557620005708162000648565b505050565b826001600160a01b0316826001600160a01b031614620005705762000570828262000702565b60006001620005b5846200075360201b62000c661760201c565b620005c191906200089d565b60008381526007602052604090205490915080821462000615576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906200065c906001906200089d565b6000838152600960205260408120546008805493945090928490811062000687576200068762000920565b906000526020600020015490508060088381548110620006ab57620006ab62000920565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620006e657620006e66200090a565b6001900381819060005260206000200160009055905550505050565b60006200071a836200075360201b62000c661760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620007c05760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401620002e1565b506001600160a01b031660009081526003602052604090205490565b828054620007ea90620008b7565b90600052602060002090601f0160209004810192826200080e576000855562000859565b82601f106200082957805160ff191683800117855562000859565b8280016001018555821562000859579182015b82811115620008595782518255916020019190600101906200083c565b50620008679291506200086b565b5090565b5b808211156200086757600081556001016200086c565b60008219821115620008985762000898620008f4565b500190565b600082821015620008b257620008b2620008f4565b500390565b600181811c90821680620008cc57607f821691505b60208210811415620008ee57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6122f580620009466000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146104ed578063e83157421461050d578063e985e9c514610522578063f2fde38b1461056b57600080fd5b8063a22cb46514610457578063b88d4fde14610477578063bcf8c6a914610497578063c708c6c7146104b757600080fd5b80638da5cb5b116100d15780638da5cb5b146103f757806395d89b41146104155780639fd6db121461042a578063a0712d681461044457600080fd5b8063715018a6146103ac5780637ec4a659146103c15780637ff9b596146103e157600080fd5b80632f745c59116101645780634ea3871a1161013e5780634ea3871a1461032c5780634f6ccce71461034c5780636352211e1461036c57806370a082311461038c57600080fd5b80632f745c59146102d75780633ccfd60b146102f757806342842e0e1461030c57600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780631342ff4c1461027857806318160ddd1461029857806323b872dd146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611e9e565b61058b565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105b6565b6040516101f39190611fd2565b34801561022a57600080fd5b5061023e610239366004611f21565b610648565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611e59565b6106e2565b005b34801561028457600080fd5b50610276610293366004611f21565b6107f8565b3480156102a457600080fd5b506008545b6040519081526020016101f3565b3480156102c357600080fd5b506102766102d2366004611d77565b610986565b3480156102e357600080fd5b506102a96102f2366004611e59565b6109b7565b34801561030357600080fd5b50610276610a4d565b34801561031857600080fd5b50610276610327366004611d77565b610b04565b34801561033857600080fd5b50610276610347366004611e83565b610b1f565b34801561035857600080fd5b506102a9610367366004611f21565b610b5c565b34801561037857600080fd5b5061023e610387366004611f21565b610bef565b34801561039857600080fd5b506102a96103a7366004611d29565b610c66565b3480156103b857600080fd5b50610276610ced565b3480156103cd57600080fd5b506102766103dc366004611ed8565b610d23565b3480156103ed57600080fd5b506102a9600c5481565b34801561040357600080fd5b50600a546001600160a01b031661023e565b34801561042157600080fd5b50610211610d64565b34801561043657600080fd5b50600e546101e79060ff1681565b610276610452366004611f21565b610d73565b34801561046357600080fd5b50610276610472366004611e2f565b610f72565b34801561048357600080fd5b50610276610492366004611db3565b610f7d565b3480156104a357600080fd5b506102766104b2366004611e59565b610fb5565b3480156104c357600080fd5b506102a96104d2366004611d29565b6001600160a01b03166000908152600f602052604090205490565b3480156104f957600080fd5b50610211610508366004611f21565b611023565b34801561051957600080fd5b506102a960e081565b34801561052e57600080fd5b506101e761053d366004611d44565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b50610276610586366004611d29565b611063565b60006001600160e01b0319821663780e9d6360e01b14806105b057506105b0826110fb565b92915050565b6060600080546105c5906121d1565b80601f01602080910402602001604051908101604052809291908181526020018280546105f1906121d1565b801561063e5780601f106106135761010080835404028352916020019161063e565b820191906000526020600020905b81548152906001019060200180831161062157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ed82610bef565b9050806001600160a01b0316836001600160a01b0316141561075b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106bd565b336001600160a01b03821614806107775750610777813361053d565b6107e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106bd565b6107f3838361114b565b505050565b6002600b54141561081b5760405162461bcd60e51b81526004016106bd9061210c565b6002600b55806108655760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a59081dd95959189859c818dbdd5b9d605a1b60448201526064016106bd565b336000908152600f60205260409020548111156108d45760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f74206d696e742074686973206d616e7920726573657276656420776044820152666565646261677360c81b60648201526084016106bd565b60e0816108e060085490565b6108ea9190612143565b111561092f5760405162461bcd60e51b8152602060048201526014602482015273185b1b081dd95959189859dcc818db185a5b595960621b60448201526064016106bd565b60005b8181101561095957610947335b6008546111b9565b806109518161220c565b915050610932565b50336000908152600f60205260408120805483929061097990849061218e565b90915550506001600b5550565b6109903382611307565b6109ac5760405162461bcd60e51b81526004016106bd906120bb565b6107f38383836113fe565b60006109c283610c66565b8210610a245760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106bd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a775760405162461bcd60e51b81526004016106bd90612037565b604051600090339047908381818185875af1925050503d8060008114610ab9576040519150601f19603f3d011682016040523d82523d6000602084013e610abe565b606091505b5050905080610b015760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc811985a5b1959608a1b60448201526064016106bd565b50565b6107f383838360405180602001604052806000815250610f7d565b600a546001600160a01b03163314610b495760405162461bcd60e51b81526004016106bd90612037565b600e805460ff1916911515919091179055565b6000610b6760085490565b8210610bca5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106bd565b60088281548110610bdd57610bdd61227d565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106bd565b60006001600160a01b038216610cd15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106bd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d175760405162461bcd60e51b81526004016106bd90612037565b610d2160006115a5565b565b600a546001600160a01b03163314610d4d5760405162461bcd60e51b81526004016106bd90612037565b8051610d6090600d906020840190611bee565b5050565b6060600180546105c5906121d1565b6002600b541415610d965760405162461bcd60e51b81526004016106bd9061210c565b6002600b55600e5460ff16610de65760405162461bcd60e51b81526020600482015260166024820152751b5a5b9d1a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016106bd565b600081118015610df75750600a8111155b610e3b5760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a59081dd95959189859c818dbdd5b9d605a1b60448201526064016106bd565b60e081610e4760085490565b610e519190612143565b1115610e965760405162461bcd60e51b8152602060048201526014602482015273185b1b081dd95959189859dcc818db185a5b595960621b60448201526064016106bd565b600c54610ea3908261216f565b3414610efb5760405162461bcd60e51b815260206004820152602160248201527f73656e6420302e30382045544820706572207765656462616720746f206d696e6044820152601d60fa1b60648201526084016106bd565b333214610f435760405162461bcd60e51b815260206004820152601660248201527510dbdb9d1c9858dd1cc81b585e481b9bdd081b5a5b9d60521b60448201526064016106bd565b60005b81811015610f6957610f573361093f565b80610f618161220c565b915050610f46565b50506001600b55565b610d603383836115f7565b610f873383611307565b610fa35760405162461bcd60e51b81526004016106bd906120bb565b610faf848484846116c6565b50505050565b600a546001600160a01b03163314610fdf5760405162461bcd60e51b81526004016106bd90612037565b6002600b5414156110025760405162461bcd60e51b81526004016106bd9061210c565b6001600160a01b039091166000908152600f60205260409020556001600b55565b6000818152600260205260409020546060906001600160a01b031661105a5760405162461bcd60e51b81526004016106bd9061206c565b6105b0826116f9565b600a546001600160a01b0316331461108d5760405162461bcd60e51b81526004016106bd90612037565b6001600160a01b0381166110f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bd565b610b01816115a5565b60006001600160e01b031982166380ac58cd60e01b148061112c57506001600160e01b03198216635b5e139f60e01b145b806105b057506301ffc9a760e01b6001600160e01b03198316146105b0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061118082610bef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03821661120f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106bd565b6000818152600260205260409020546001600160a01b0316156112745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106bd565b6112806000838361178c565b6001600160a01b03821660009081526003602052604081208054600192906112a9908490612143565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166113805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106bd565b600061138b83610bef565b9050806001600160a01b0316846001600160a01b031614806113c65750836001600160a01b03166113bb84610648565b6001600160a01b0316145b806113f657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141182610bef565b6001600160a01b0316146114755760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106bd565b6001600160a01b0382166114d75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106bd565b6114e283838361178c565b6114ed60008261114b565b6001600160a01b038316600090815260036020526040812080546001929061151690849061218e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611544908490612143565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116595760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116d18484846113fe565b6116dd84848484611844565b610faf5760405162461bcd60e51b81526004016106bd90611fe5565b6000818152600260205260409020546060906001600160a01b03166117305760405162461bcd60e51b81526004016106bd9061206c565b600061173a611951565b9050600081511161175a5760405180602001604052806000815250611785565b8061176484611960565b604051602001611775929190611f66565b6040516020818303038152906040525b9392505050565b6001600160a01b0383166117e7576117e281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61180a565b816001600160a01b0316836001600160a01b03161461180a5761180a8382611a5e565b6001600160a01b038216611821576107f381611afb565b826001600160a01b0316826001600160a01b0316146107f3576107f38282611baa565b60006001600160a01b0384163b1561194657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611888903390899088908890600401611f95565b602060405180830381600087803b1580156118a257600080fd5b505af19250505080156118d2575060408051601f3d908101601f191682019092526118cf91810190611ebb565b60015b61192c573d808015611900576040519150601f19603f3d011682016040523d82523d6000602084013e611905565b606091505b5080516119245760405162461bcd60e51b81526004016106bd90611fe5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113f6565b506001949350505050565b6060600d80546105c5906121d1565b6060816119845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ae57806119988161220c565b91506119a79050600a8361215b565b9150611988565b60008167ffffffffffffffff8111156119c9576119c9612293565b6040519080825280601f01601f1916602001820160405280156119f3576020820181803683370190505b5090505b84156113f657611a0860018361218e565b9150611a15600a86612227565b611a20906030612143565b60f81b818381518110611a3557611a3561227d565b60200101906001600160f81b031916908160001a905350611a57600a8661215b565b94506119f7565b60006001611a6b84610c66565b611a75919061218e565b600083815260076020526040902054909150808214611ac8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b0d9060019061218e565b60008381526009602052604081205460088054939450909284908110611b3557611b3561227d565b906000526020600020015490508060088381548110611b5657611b5661227d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b8e57611b8e612267565b6001900381819060005260206000200160009055905550505050565b6000611bb583610c66565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611bfa906121d1565b90600052602060002090601f016020900481019282611c1c5760008555611c62565b82601f10611c3557805160ff1916838001178555611c62565b82800160010185558215611c62579182015b82811115611c62578251825591602001919060010190611c47565b50611c6e929150611c72565b5090565b5b80821115611c6e5760008155600101611c73565b600067ffffffffffffffff80841115611ca257611ca2612293565b604051601f8501601f19908116603f01168101908282118183101715611cca57611cca612293565b81604052809350858152868686011115611ce357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d1457600080fd5b919050565b80358015158114611d1457600080fd5b600060208284031215611d3b57600080fd5b61178582611cfd565b60008060408385031215611d5757600080fd5b611d6083611cfd565b9150611d6e60208401611cfd565b90509250929050565b600080600060608486031215611d8c57600080fd5b611d9584611cfd565b9250611da360208501611cfd565b9150604084013590509250925092565b60008060008060808587031215611dc957600080fd5b611dd285611cfd565b9350611de060208601611cfd565b925060408501359150606085013567ffffffffffffffff811115611e0357600080fd5b8501601f81018713611e1457600080fd5b611e2387823560208401611c87565b91505092959194509250565b60008060408385031215611e4257600080fd5b611e4b83611cfd565b9150611d6e60208401611d19565b60008060408385031215611e6c57600080fd5b611e7583611cfd565b946020939093013593505050565b600060208284031215611e9557600080fd5b61178582611d19565b600060208284031215611eb057600080fd5b8135611785816122a9565b600060208284031215611ecd57600080fd5b8151611785816122a9565b600060208284031215611eea57600080fd5b813567ffffffffffffffff811115611f0157600080fd5b8201601f81018413611f1257600080fd5b6113f684823560208401611c87565b600060208284031215611f3357600080fd5b5035919050565b60008151808452611f528160208601602086016121a5565b601f01601f19169290920160200192915050565b60008351611f788184602088016121a5565b835190830190611f8c8183602088016121a5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fc890830184611f3a565b9695505050505050565b6020815260006117856020830184611f3a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156121565761215661223b565b500190565b60008261216a5761216a612251565b500490565b60008160001904831182151516156121895761218961223b565b500290565b6000828210156121a0576121a061223b565b500390565b60005b838110156121c05781810151838201526020016121a8565b83811115610faf5750506000910152565b600181811c908216806121e557607f821691505b6020821081141561220657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122205761222061223b565b5060010190565b60008261223657612236612251565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0157600080fdfea2646970667358221220faaab624db443f1f8142e72fa7e9bfc00677a214b51275427a2c041dd451bd4c64736f6c63430008070033697066733a2f2f516d617775684b7653416733753364747769693767635a6e6a537a4731766d46397168596f73646f4a70726e72422f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a22cb46511610095578063c87b56dd11610064578063c87b56dd146104ed578063e83157421461050d578063e985e9c514610522578063f2fde38b1461056b57600080fd5b8063a22cb46514610457578063b88d4fde14610477578063bcf8c6a914610497578063c708c6c7146104b757600080fd5b80638da5cb5b116100d15780638da5cb5b146103f757806395d89b41146104155780639fd6db121461042a578063a0712d681461044457600080fd5b8063715018a6146103ac5780637ec4a659146103c15780637ff9b596146103e157600080fd5b80632f745c59116101645780634ea3871a1161013e5780634ea3871a1461032c5780634f6ccce71461034c5780636352211e1461036c57806370a082311461038c57600080fd5b80632f745c59146102d75780633ccfd60b146102f757806342842e0e1461030c57600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780631342ff4c1461027857806318160ddd1461029857806323b872dd146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611e9e565b61058b565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105b6565b6040516101f39190611fd2565b34801561022a57600080fd5b5061023e610239366004611f21565b610648565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611e59565b6106e2565b005b34801561028457600080fd5b50610276610293366004611f21565b6107f8565b3480156102a457600080fd5b506008545b6040519081526020016101f3565b3480156102c357600080fd5b506102766102d2366004611d77565b610986565b3480156102e357600080fd5b506102a96102f2366004611e59565b6109b7565b34801561030357600080fd5b50610276610a4d565b34801561031857600080fd5b50610276610327366004611d77565b610b04565b34801561033857600080fd5b50610276610347366004611e83565b610b1f565b34801561035857600080fd5b506102a9610367366004611f21565b610b5c565b34801561037857600080fd5b5061023e610387366004611f21565b610bef565b34801561039857600080fd5b506102a96103a7366004611d29565b610c66565b3480156103b857600080fd5b50610276610ced565b3480156103cd57600080fd5b506102766103dc366004611ed8565b610d23565b3480156103ed57600080fd5b506102a9600c5481565b34801561040357600080fd5b50600a546001600160a01b031661023e565b34801561042157600080fd5b50610211610d64565b34801561043657600080fd5b50600e546101e79060ff1681565b610276610452366004611f21565b610d73565b34801561046357600080fd5b50610276610472366004611e2f565b610f72565b34801561048357600080fd5b50610276610492366004611db3565b610f7d565b3480156104a357600080fd5b506102766104b2366004611e59565b610fb5565b3480156104c357600080fd5b506102a96104d2366004611d29565b6001600160a01b03166000908152600f602052604090205490565b3480156104f957600080fd5b50610211610508366004611f21565b611023565b34801561051957600080fd5b506102a960e081565b34801561052e57600080fd5b506101e761053d366004611d44565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b50610276610586366004611d29565b611063565b60006001600160e01b0319821663780e9d6360e01b14806105b057506105b0826110fb565b92915050565b6060600080546105c5906121d1565b80601f01602080910402602001604051908101604052809291908181526020018280546105f1906121d1565b801561063e5780601f106106135761010080835404028352916020019161063e565b820191906000526020600020905b81548152906001019060200180831161062157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ed82610bef565b9050806001600160a01b0316836001600160a01b0316141561075b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106bd565b336001600160a01b03821614806107775750610777813361053d565b6107e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106bd565b6107f3838361114b565b505050565b6002600b54141561081b5760405162461bcd60e51b81526004016106bd9061210c565b6002600b55806108655760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a59081dd95959189859c818dbdd5b9d605a1b60448201526064016106bd565b336000908152600f60205260409020548111156108d45760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f74206d696e742074686973206d616e7920726573657276656420776044820152666565646261677360c81b60648201526084016106bd565b60e0816108e060085490565b6108ea9190612143565b111561092f5760405162461bcd60e51b8152602060048201526014602482015273185b1b081dd95959189859dcc818db185a5b595960621b60448201526064016106bd565b60005b8181101561095957610947335b6008546111b9565b806109518161220c565b915050610932565b50336000908152600f60205260408120805483929061097990849061218e565b90915550506001600b5550565b6109903382611307565b6109ac5760405162461bcd60e51b81526004016106bd906120bb565b6107f38383836113fe565b60006109c283610c66565b8210610a245760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106bd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a775760405162461bcd60e51b81526004016106bd90612037565b604051600090339047908381818185875af1925050503d8060008114610ab9576040519150601f19603f3d011682016040523d82523d6000602084013e610abe565b606091505b5050905080610b015760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc811985a5b1959608a1b60448201526064016106bd565b50565b6107f383838360405180602001604052806000815250610f7d565b600a546001600160a01b03163314610b495760405162461bcd60e51b81526004016106bd90612037565b600e805460ff1916911515919091179055565b6000610b6760085490565b8210610bca5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106bd565b60088281548110610bdd57610bdd61227d565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806105b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106bd565b60006001600160a01b038216610cd15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106bd565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610d175760405162461bcd60e51b81526004016106bd90612037565b610d2160006115a5565b565b600a546001600160a01b03163314610d4d5760405162461bcd60e51b81526004016106bd90612037565b8051610d6090600d906020840190611bee565b5050565b6060600180546105c5906121d1565b6002600b541415610d965760405162461bcd60e51b81526004016106bd9061210c565b6002600b55600e5460ff16610de65760405162461bcd60e51b81526020600482015260166024820152751b5a5b9d1a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016106bd565b600081118015610df75750600a8111155b610e3b5760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a59081dd95959189859c818dbdd5b9d605a1b60448201526064016106bd565b60e081610e4760085490565b610e519190612143565b1115610e965760405162461bcd60e51b8152602060048201526014602482015273185b1b081dd95959189859dcc818db185a5b595960621b60448201526064016106bd565b600c54610ea3908261216f565b3414610efb5760405162461bcd60e51b815260206004820152602160248201527f73656e6420302e30382045544820706572207765656462616720746f206d696e6044820152601d60fa1b60648201526084016106bd565b333214610f435760405162461bcd60e51b815260206004820152601660248201527510dbdb9d1c9858dd1cc81b585e481b9bdd081b5a5b9d60521b60448201526064016106bd565b60005b81811015610f6957610f573361093f565b80610f618161220c565b915050610f46565b50506001600b55565b610d603383836115f7565b610f873383611307565b610fa35760405162461bcd60e51b81526004016106bd906120bb565b610faf848484846116c6565b50505050565b600a546001600160a01b03163314610fdf5760405162461bcd60e51b81526004016106bd90612037565b6002600b5414156110025760405162461bcd60e51b81526004016106bd9061210c565b6001600160a01b039091166000908152600f60205260409020556001600b55565b6000818152600260205260409020546060906001600160a01b031661105a5760405162461bcd60e51b81526004016106bd9061206c565b6105b0826116f9565b600a546001600160a01b0316331461108d5760405162461bcd60e51b81526004016106bd90612037565b6001600160a01b0381166110f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bd565b610b01816115a5565b60006001600160e01b031982166380ac58cd60e01b148061112c57506001600160e01b03198216635b5e139f60e01b145b806105b057506301ffc9a760e01b6001600160e01b03198316146105b0565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061118082610bef565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b03821661120f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106bd565b6000818152600260205260409020546001600160a01b0316156112745760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106bd565b6112806000838361178c565b6001600160a01b03821660009081526003602052604081208054600192906112a9908490612143565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166113805760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106bd565b600061138b83610bef565b9050806001600160a01b0316846001600160a01b031614806113c65750836001600160a01b03166113bb84610648565b6001600160a01b0316145b806113f657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661141182610bef565b6001600160a01b0316146114755760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016106bd565b6001600160a01b0382166114d75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106bd565b6114e283838361178c565b6114ed60008261114b565b6001600160a01b038316600090815260036020526040812080546001929061151690849061218e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611544908490612143565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156116595760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116d18484846113fe565b6116dd84848484611844565b610faf5760405162461bcd60e51b81526004016106bd90611fe5565b6000818152600260205260409020546060906001600160a01b03166117305760405162461bcd60e51b81526004016106bd9061206c565b600061173a611951565b9050600081511161175a5760405180602001604052806000815250611785565b8061176484611960565b604051602001611775929190611f66565b6040516020818303038152906040525b9392505050565b6001600160a01b0383166117e7576117e281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61180a565b816001600160a01b0316836001600160a01b03161461180a5761180a8382611a5e565b6001600160a01b038216611821576107f381611afb565b826001600160a01b0316826001600160a01b0316146107f3576107f38282611baa565b60006001600160a01b0384163b1561194657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611888903390899088908890600401611f95565b602060405180830381600087803b1580156118a257600080fd5b505af19250505080156118d2575060408051601f3d908101601f191682019092526118cf91810190611ebb565b60015b61192c573d808015611900576040519150601f19603f3d011682016040523d82523d6000602084013e611905565b606091505b5080516119245760405162461bcd60e51b81526004016106bd90611fe5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113f6565b506001949350505050565b6060600d80546105c5906121d1565b6060816119845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ae57806119988161220c565b91506119a79050600a8361215b565b9150611988565b60008167ffffffffffffffff8111156119c9576119c9612293565b6040519080825280601f01601f1916602001820160405280156119f3576020820181803683370190505b5090505b84156113f657611a0860018361218e565b9150611a15600a86612227565b611a20906030612143565b60f81b818381518110611a3557611a3561227d565b60200101906001600160f81b031916908160001a905350611a57600a8661215b565b94506119f7565b60006001611a6b84610c66565b611a75919061218e565b600083815260076020526040902054909150808214611ac8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b0d9060019061218e565b60008381526009602052604081205460088054939450909284908110611b3557611b3561227d565b906000526020600020015490508060088381548110611b5657611b5661227d565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b8e57611b8e612267565b6001900381819060005260206000200160009055905550505050565b6000611bb583610c66565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611bfa906121d1565b90600052602060002090601f016020900481019282611c1c5760008555611c62565b82601f10611c3557805160ff1916838001178555611c62565b82800160010185558215611c62579182015b82811115611c62578251825591602001919060010190611c47565b50611c6e929150611c72565b5090565b5b80821115611c6e5760008155600101611c73565b600067ffffffffffffffff80841115611ca257611ca2612293565b604051601f8501601f19908116603f01168101908282118183101715611cca57611cca612293565b81604052809350858152868686011115611ce357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d1457600080fd5b919050565b80358015158114611d1457600080fd5b600060208284031215611d3b57600080fd5b61178582611cfd565b60008060408385031215611d5757600080fd5b611d6083611cfd565b9150611d6e60208401611cfd565b90509250929050565b600080600060608486031215611d8c57600080fd5b611d9584611cfd565b9250611da360208501611cfd565b9150604084013590509250925092565b60008060008060808587031215611dc957600080fd5b611dd285611cfd565b9350611de060208601611cfd565b925060408501359150606085013567ffffffffffffffff811115611e0357600080fd5b8501601f81018713611e1457600080fd5b611e2387823560208401611c87565b91505092959194509250565b60008060408385031215611e4257600080fd5b611e4b83611cfd565b9150611d6e60208401611d19565b60008060408385031215611e6c57600080fd5b611e7583611cfd565b946020939093013593505050565b600060208284031215611e9557600080fd5b61178582611d19565b600060208284031215611eb057600080fd5b8135611785816122a9565b600060208284031215611ecd57600080fd5b8151611785816122a9565b600060208284031215611eea57600080fd5b813567ffffffffffffffff811115611f0157600080fd5b8201601f81018413611f1257600080fd5b6113f684823560208401611c87565b600060208284031215611f3357600080fd5b5035919050565b60008151808452611f528160208601602086016121a5565b601f01601f19169290920160200192915050565b60008351611f788184602088016121a5565b835190830190611f8c8183602088016121a5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fc890830184611f3a565b9695505050505050565b6020815260006117856020830184611f3a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156121565761215661223b565b500190565b60008261216a5761216a612251565b500490565b60008160001904831182151516156121895761218961223b565b500290565b6000828210156121a0576121a061223b565b500390565b60005b838110156121c05781810151838201526020016121a8565b83811115610faf5750506000910152565b600181811c908216806121e557607f821691505b6020821081141561220657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122205761222061223b565b5060010190565b60008261223657612236612251565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b0157600080fdfea2646970667358221220faaab624db443f1f8142e72fa7e9bfc00677a214b51275427a2c041dd451bd4c64736f6c63430008070033

Deployed Bytecode Sourcemap

48327:3462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42073:224;;;;;;;;;;-1:-1:-1;42073:224:0;;;;;:::i;:::-;;:::i;:::-;;;6113:14:1;;6106:22;6088:41;;6076:2;6061:18;42073:224:0;;;;;;;;28893:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30452:221::-;;;;;;;;;;-1:-1:-1;30452:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5411:32:1;;;5393:51;;5381:2;5366:18;30452:221:0;5247:203:1;29975:411:0;;;;;;;;;;-1:-1:-1;29975:411:0;;;;;:::i;:::-;;:::i;:::-;;51135:472;;;;;;;;;;-1:-1:-1;51135:472:0;;;;;:::i;:::-;;:::i;42713:113::-;;;;;;;;;;-1:-1:-1;42801:10:0;:17;42713:113;;;16628:25:1;;;16616:2;16601:18;42713:113:0;16482:177:1;31202:339:0;;;;;;;;;;-1:-1:-1;31202:339:0;;;;;:::i;:::-;;:::i;42381:256::-;;;;;;;;;;-1:-1:-1;42381:256:0;;;;;:::i;:::-;;:::i;51616:170::-;;;;;;;;;;;;;:::i;31612:185::-;;;;;;;;;;-1:-1:-1;31612:185:0;;;;;:::i;:::-;;:::i;49788:128::-;;;;;;;;;;-1:-1:-1;49788:128:0;;;;;:::i;:::-;;:::i;42903:233::-;;;;;;;;;;-1:-1:-1;42903:233:0;;;;;:::i;:::-;;:::i;28587:239::-;;;;;;;;;;-1:-1:-1;28587:239:0;;;;;:::i;:::-;;:::i;28317:208::-;;;;;;;;;;-1:-1:-1;28317:208:0;;;;;:::i;:::-;;:::i;7489:103::-;;;;;;;;;;;;;:::i;49668:112::-;;;;;;;;;;-1:-1:-1;49668:112:0;;;;;:::i;:::-;;:::i;48448:38::-;;;;;;;;;;;;;;;;6838:87;;;;;;;;;;-1:-1:-1;6911:6:0;;-1:-1:-1;;;;;6911:6:0;6838:87;;29062:104;;;;;;;;;;;;;:::i;48542:26::-;;;;;;;;;;-1:-1:-1;48542:26:0;;;;;;;;50295:539;;;;;;:::i;:::-;;:::i;30745:155::-;;;;;;;;;;-1:-1:-1;30745:155:0;;;;;:::i;:::-;;:::i;31868:328::-;;;;;;;;;;-1:-1:-1;31868:328:0;;;;;:::i;:::-;;:::i;50842:147::-;;;;;;;;;;-1:-1:-1;50842:147:0;;;;;:::i;:::-;;:::i;50997:130::-;;;;;;;;;;-1:-1:-1;50997:130:0;;;;;:::i;:::-;-1:-1:-1;;;;;51087:32:0;51060:7;51087:32;;;:26;:32;;;;;;;50997:130;50047:240;;;;;;;;;;-1:-1:-1;50047:240:0;;;;;:::i;:::-;;:::i;48398:39::-;;;;;;;;;;;;48434:3;48398:39;;30971:164;;;;;;;;;;-1:-1:-1;30971:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31092:25:0;;;31068:4;31092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30971:164;7747:201;;;;;;;;;;-1:-1:-1;7747:201:0;;;;;:::i;:::-;;:::i;42073:224::-;42175:4;-1:-1:-1;;;;;;42199:50:0;;-1:-1:-1;;;42199:50:0;;:90;;;42253:36;42277:11;42253:23;:36::i;:::-;42192:97;42073:224;-1:-1:-1;;42073:224:0:o;28893:100::-;28947:13;28980:5;28973:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28893:100;:::o;30452:221::-;30528:7;33795:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33795:16:0;30548:73;;;;-1:-1:-1;;;30548:73:0;;12797:2:1;30548:73:0;;;12779:21:1;12836:2;12816:18;;;12809:30;12875:34;12855:18;;;12848:62;-1:-1:-1;;;12926:18:1;;;12919:42;12978:19;;30548:73:0;;;;;;;;;-1:-1:-1;30641:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30641:24:0;;30452:221::o;29975:411::-;30056:13;30072:23;30087:7;30072:14;:23::i;:::-;30056:39;;30120:5;-1:-1:-1;;;;;30114:11:0;:2;-1:-1:-1;;;;;30114:11:0;;;30106:57;;;;-1:-1:-1;;;30106:57:0;;14740:2:1;30106:57:0;;;14722:21:1;14779:2;14759:18;;;14752:30;14818:34;14798:18;;;14791:62;-1:-1:-1;;;14869:18:1;;;14862:31;14910:19;;30106:57:0;14538:397:1;30106:57:0;5642:10;-1:-1:-1;;;;;30198:21:0;;;;:62;;-1:-1:-1;30223:37:0;30240:5;5642:10;30971:164;:::i;30223:37::-;30176:168;;;;-1:-1:-1;;;30176:168:0;;10841:2:1;30176:168:0;;;10823:21:1;10880:2;10860:18;;;10853:30;10919:34;10899:18;;;10892:62;10990:26;10970:18;;;10963:54;11034:19;;30176:168:0;10639:420:1;30176:168:0;30357:21;30366:2;30370:7;30357:8;:21::i;:::-;30045:341;29975:411;;:::o;51135:472::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;1812:1;2543:7;:18;51210:9;51202:43:::1;;;::::0;-1:-1:-1;;;51202:43:0;;9734:2:1;51202:43:0::1;::::0;::::1;9716:21:1::0;9773:2;9753:18;;;9746:30;-1:-1:-1;;;9792:18:1;;;9785:51;9853:18;;51202:43:0::1;9532:345:1::0;51202:43:0::1;51291:10;51264:38;::::0;;;:26:::1;:38;::::0;;;;;:47;-1:-1:-1;51264:47:0::1;51256:99;;;::::0;-1:-1:-1;;;51256:99:0;;6566:2:1;51256:99:0::1;::::0;::::1;6548:21:1::0;6605:2;6585:18;;;6578:30;6644:34;6624:18;;;6617:62;-1:-1:-1;;;6695:18:1;;;6688:37;6742:19;;51256:99:0::1;6364:403:1::0;51256:99:0::1;48434:3;51390:5;51374:13;42801:10:::0;:17;;42713:113;51374:13:::1;:21;;;;:::i;:::-;:34;;51366:67;;;::::0;-1:-1:-1;;;51366:67:0;;12087:2:1;51366:67:0::1;::::0;::::1;12069:21:1::0;12126:2;12106:18;;;12099:30;-1:-1:-1;;;12145:18:1;;;12138:50;12205:18;;51366:67:0::1;11885:344:1::0;51366:67:0::1;51450:9;51446:96;51469:5;51465:1;:9;51446:96;;;51496:34;5642:10:::0;51502:12:::1;42801:10:::0;:17;51496:5:::1;:34::i;:::-;51476:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51446:96;;;-1:-1:-1::0;51579:10:0::1;51552:38;::::0;;;:26:::1;:38;::::0;;;;:47;;51594:5;;51552:38;:47:::1;::::0;51594:5;;51552:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;1768:1:0;2722:7;:22;-1:-1:-1;51135:472:0:o;31202:339::-;31397:41;5642:10;31430:7;31397:18;:41::i;:::-;31389:103;;;;-1:-1:-1;;;31389:103:0;;;;;;;:::i;:::-;31505:28;31515:4;31521:2;31525:7;31505:9;:28::i;42381:256::-;42478:7;42514:23;42531:5;42514:16;:23::i;:::-;42506:5;:31;42498:87;;;;-1:-1:-1;;;42498:87:0;;6974:2:1;42498:87:0;;;6956:21:1;7013:2;6993:18;;;6986:30;7052:34;7032:18;;;7025:62;-1:-1:-1;;;7103:18:1;;;7096:41;7154:19;;42498:87:0;6772:407:1;42498:87:0;-1:-1:-1;;;;;;42603:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42381:256::o;51616:170::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;51682:50:::1;::::0;51665:12:::1;::::0;51682:10:::1;::::0;51706:21:::1;::::0;51665:12;51682:50;51665:12;51682:50;51706:21;51682:10;:50:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51664:68;;;51751:7;51743:35;;;::::0;-1:-1:-1;;;51743:35:0;;10084:2:1;51743:35:0::1;::::0;::::1;10066:21:1::0;10123:2;10103:18;;;10096:30;-1:-1:-1;;;10142:18:1;;;10135:45;10197:18;;51743:35:0::1;9882:339:1::0;51743:35:0::1;51653:133;51616:170::o:0;31612:185::-;31750:39;31767:4;31773:2;31777:7;31750:39;;;;;;;;;;;;:16;:39::i;49788:128::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;49874:14:::1;:34:::0;;-1:-1:-1;;49874:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49788:128::o;42903:233::-;42978:7;43014:30;42801:10;:17;;42713:113;43014:30;43006:5;:38;42998:95;;;;-1:-1:-1;;;42998:95:0;;15560:2:1;42998:95:0;;;15542:21:1;15599:2;15579:18;;;15572:30;15638:34;15618:18;;;15611:62;-1:-1:-1;;;15689:18:1;;;15682:42;15741:19;;42998:95:0;15358:408:1;42998:95:0;43111:10;43122:5;43111:17;;;;;;;;:::i;:::-;;;;;;;;;43104:24;;42903:233;;;:::o;28587:239::-;28659:7;28695:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28695:16:0;28730:19;28722:73;;;;-1:-1:-1;;;28722:73:0;;11677:2:1;28722:73:0;;;11659:21:1;11716:2;11696:18;;;11689:30;11755:34;11735:18;;;11728:62;-1:-1:-1;;;11806:18:1;;;11799:39;11855:19;;28722:73:0;11475:405:1;28317:208:0;28389:7;-1:-1:-1;;;;;28417:19:0;;28409:74;;;;-1:-1:-1;;;28409:74:0;;11266:2:1;28409:74:0;;;11248:21:1;11305:2;11285:18;;;11278:30;11344:34;11324:18;;;11317:62;-1:-1:-1;;;11395:18:1;;;11388:40;11445:19;;28409:74:0;11064:406:1;28409:74:0;-1:-1:-1;;;;;;28501:16:0;;;;;:9;:16;;;;;;;28317:208::o;7489:103::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;49668:112::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;49750:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49668:112:::0;:::o;29062:104::-;29118:13;29151:7;29144:14;;;;;:::i;50295:539::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;;;;;;:::i;:::-;1812:1;2543:7;:18;50373:14:::1;::::0;::::1;;50365:49;;;::::0;-1:-1:-1;;;50365:49:0;;13987:2:1;50365:49:0::1;::::0;::::1;13969:21:1::0;14026:2;14006:18;;;13999:30;-1:-1:-1;;;14045:18:1;;;14038:52;14107:18;;50365:49:0::1;13785:346:1::0;50365:49:0::1;50441:1;50433:5;:9;:24;;;;;50455:2;50446:5;:11;;50433:24;50425:58;;;::::0;-1:-1:-1;;;50425:58:0;;9734:2:1;50425:58:0::1;::::0;::::1;9716:21:1::0;9773:2;9753:18;;;9746:30;-1:-1:-1;;;9792:18:1;;;9785:51;9853:18;;50425:58:0::1;9532:345:1::0;50425:58:0::1;48434:3;50518:5;50502:13;42801:10:::0;:17;;42713:113;50502:13:::1;:21;;;;:::i;:::-;:34;;50494:67;;;::::0;-1:-1:-1;;;50494:67:0;;12087:2:1;50494:67:0::1;::::0;::::1;12069:21:1::0;12126:2;12106:18;;;12099:30;-1:-1:-1;;;12145:18:1;;;12138:50;12205:18;;50494:67:0::1;11885:344:1::0;50494:67:0::1;50601:10;::::0;50593:18:::1;::::0;:5;:18:::1;:::i;:::-;50580:9;:31;50572:77;;;::::0;-1:-1:-1;;;50572:77:0;;14338:2:1;50572:77:0::1;::::0;::::1;14320:21:1::0;14377:2;14357:18;;;14350:30;14416:34;14396:18;;;14389:62;-1:-1:-1;;;14467:18:1;;;14460:31;14508:19;;50572:77:0::1;14136:397:1::0;50572:77:0::1;50668:10;50682:9;50668:23;50660:58;;;::::0;-1:-1:-1;;;50660:58:0;;16333:2:1;50660:58:0::1;::::0;::::1;16315:21:1::0;16372:2;16352:18;;;16345:30;-1:-1:-1;;;16391:18:1;;;16384:52;16453:18;;50660:58:0::1;16131:346:1::0;50660:58:0::1;50735:9;50731:96;50754:5;50750:1;:9;50731:96;;;50781:34;5642:10:::0;50787:12:::1;5562:98:::0;50781:34:::1;50761:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50731:96;;;-1:-1:-1::0;;1768:1:0;2722:7;:22;50295:539::o;30745:155::-;30840:52;5642:10;30873:8;30883;30840:18;:52::i;31868:328::-;32043:41;5642:10;32076:7;32043:18;:41::i;:::-;32035:103;;;;-1:-1:-1;;;32035:103:0;;;;;;;:::i;:::-;32149:39;32163:4;32169:2;32173:7;32182:5;32149:13;:39::i;:::-;31868:328;;;;:::o;50842:147::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;-1:-1:-1::0;;;2402:63:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;50941:32:0;;::::2;;::::0;;;:26:::2;:32;::::0;;;;:40;1768:1:::1;2543:7;2722:22:::0;50842:147::o;50047:240::-;33771:4;33795:16;;;:7;:16;;;;;;50120:13;;-1:-1:-1;;;;;33795:16:0;50147:76;;;;-1:-1:-1;;;50147:76:0;;;;;;;:::i;:::-;50255:24;50271:7;50255:15;:24::i;7747:201::-;6911:6;;-1:-1:-1;;;;;6911:6:0;5642:10;7058:23;7050:68;;;;-1:-1:-1;;;7050:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7836:22:0;::::1;7828:73;;;::::0;-1:-1:-1;;;7828:73:0;;7805:2:1;7828:73:0::1;::::0;::::1;7787:21:1::0;7844:2;7824:18;;;7817:30;7883:34;7863:18;;;7856:62;-1:-1:-1;;;7934:18:1;;;7927:36;7980:19;;7828:73:0::1;7603:402:1::0;7828:73:0::1;7912:28;7931:8;7912:18;:28::i;27948:305::-:0;28050:4;-1:-1:-1;;;;;;28087:40:0;;-1:-1:-1;;;28087:40:0;;:105;;-1:-1:-1;;;;;;;28144:48:0;;-1:-1:-1;;;28144:48:0;28087:105;:158;;;-1:-1:-1;;;;;;;;;;19731:40:0;;;28209:36;19622:157;37852:174;37927:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37927:29:0;-1:-1:-1;;;;;37927:29:0;;;;;;;;:24;;37981:23;37927:24;37981:14;:23::i;:::-;-1:-1:-1;;;;;37972:46:0;;;;;;;;;;;37852:174;;:::o;35684:439::-;-1:-1:-1;;;;;35764:16:0;;35756:61;;;;-1:-1:-1;;;35756:61:0;;12436:2:1;35756:61:0;;;12418:21:1;;;12455:18;;;12448:30;12514:34;12494:18;;;12487:62;12566:18;;35756:61:0;12234:356:1;35756:61:0;33771:4;33795:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33795:16:0;:30;35828:58;;;;-1:-1:-1;;;35828:58:0;;8618:2:1;35828:58:0;;;8600:21:1;8657:2;8637:18;;;8630:30;8696;8676:18;;;8669:58;8744:18;;35828:58:0;8416:352:1;35828:58:0;35899:45;35928:1;35932:2;35936:7;35899:20;:45::i;:::-;-1:-1:-1;;;;;35957:13:0;;;;;;:9;:13;;;;;:18;;35974:1;;35957:13;:18;;35974:1;;35957:18;:::i;:::-;;;;-1:-1:-1;;35986:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35986:21:0;-1:-1:-1;;;;;35986:21:0;;;;;;;;36025:33;;35986:16;;;36025:33;;35986:16;;36025:33;49750:22:::1;49668:112:::0;:::o;34000:348::-;34093:4;33795:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33795:16:0;34110:73;;;;-1:-1:-1;;;34110:73:0;;10428:2:1;34110:73:0;;;10410:21:1;10467:2;10447:18;;;10440:30;10506:34;10486:18;;;10479:62;-1:-1:-1;;;10557:18:1;;;10550:42;10609:19;;34110:73:0;10226:408:1;34110:73:0;34194:13;34210:23;34225:7;34210:14;:23::i;:::-;34194:39;;34263:5;-1:-1:-1;;;;;34252:16:0;:7;-1:-1:-1;;;;;34252:16:0;;:51;;;;34296:7;-1:-1:-1;;;;;34272:31:0;:20;34284:7;34272:11;:20::i;:::-;-1:-1:-1;;;;;34272:31:0;;34252:51;:87;;;-1:-1:-1;;;;;;31092:25:0;;;31068:4;31092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34307:32;34244:96;34000:348;-1:-1:-1;;;;34000:348:0:o;37109:625::-;37268:4;-1:-1:-1;;;;;37241:31:0;:23;37256:7;37241:14;:23::i;:::-;-1:-1:-1;;;;;37241:31:0;;37233:81;;;;-1:-1:-1;;;37233:81:0;;8212:2:1;37233:81:0;;;8194:21:1;8251:2;8231:18;;;8224:30;8290:34;8270:18;;;8263:62;-1:-1:-1;;;8341:18:1;;;8334:35;8386:19;;37233:81:0;8010:401:1;37233:81:0;-1:-1:-1;;;;;37333:16:0;;37325:65;;;;-1:-1:-1;;;37325:65:0;;8975:2:1;37325:65:0;;;8957:21:1;9014:2;8994:18;;;8987:30;9053:34;9033:18;;;9026:62;-1:-1:-1;;;9104:18:1;;;9097:34;9148:19;;37325:65:0;8773:400:1;37325:65:0;37403:39;37424:4;37430:2;37434:7;37403:20;:39::i;:::-;37507:29;37524:1;37528:7;37507:8;:29::i;:::-;-1:-1:-1;;;;;37549:15:0;;;;;;:9;:15;;;;;:20;;37568:1;;37549:15;:20;;37568:1;;37549:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37580:13:0;;;;;;:9;:13;;;;;:18;;37597:1;;37580:13;:18;;37597:1;;37580:18;:::i;:::-;;;;-1:-1:-1;;37609:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37609:21:0;-1:-1:-1;;;;;37609:21:0;;;;;;;;;37648:27;;37609:16;;37648:27;;;;;;;30045:341;29975:411;;:::o;8108:191::-;8201:6;;;-1:-1:-1;;;;;8218:17:0;;;-1:-1:-1;;;;;;8218:17:0;;;;;;;8251:40;;8201:6;;;8218:17;8201:6;;8251:40;;8182:16;;8251:40;8171:128;8108:191;:::o;38168:315::-;38323:8;-1:-1:-1;;;;;38314:17:0;:5;-1:-1:-1;;;;;38314:17:0;;;38306:55;;;;-1:-1:-1;;;38306:55:0;;9380:2:1;38306:55:0;;;9362:21:1;9419:2;9399:18;;;9392:30;9458:27;9438:18;;;9431:55;9503:18;;38306:55:0;9178:349:1;38306:55:0;-1:-1:-1;;;;;38372:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38372:46:0;;;;;;;;;;38434:41;;6088::1;;;38434::0;;6061:18:1;38434:41:0;;;;;;;38168:315;;;:::o;33078:::-;33235:28;33245:4;33251:2;33255:7;33235:9;:28::i;:::-;33282:48;33305:4;33311:2;33315:7;33324:5;33282:22;:48::i;:::-;33274:111;;;;-1:-1:-1;;;33274:111:0;;;;;;;:::i;29237:334::-;33771:4;33795:16;;;:7;:16;;;;;;29310:13;;-1:-1:-1;;;;;33795:16:0;29336:76;;;;-1:-1:-1;;;29336:76:0;;;;;;;:::i;:::-;29425:21;29449:10;:8;:10::i;:::-;29425:34;;29501:1;29483:7;29477:21;:25;:86;;;;;;;;;;;;;;;;;29529:7;29538:18;:7;:16;:18::i;:::-;29512:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29477:86;29470:93;29237:334;-1:-1:-1;;;29237:334:0:o;43749:589::-;-1:-1:-1;;;;;43955:18:0;;43951:187;;43990:40;44022:7;45165:10;:17;;45138:24;;;;:15;:24;;;;;:44;;;45193:24;;;;;;;;;;;;45061:164;43990:40;43951:187;;;44060:2;-1:-1:-1;;;;;44052:10:0;:4;-1:-1:-1;;;;;44052:10:0;;44048:90;;44079:47;44112:4;44118:7;44079:32;:47::i;:::-;-1:-1:-1;;;;;44152:16:0;;44148:183;;44185:45;44222:7;44185:36;:45::i;44148:183::-;44258:4;-1:-1:-1;;;;;44252:10:0;:2;-1:-1:-1;;;;;44252:10:0;;44248:83;;44279:40;44307:2;44311:7;44279:27;:40::i;39048:799::-;39203:4;-1:-1:-1;;;;;39224:13:0;;9834:19;:23;39220:620;;39260:72;;-1:-1:-1;;;39260:72:0;;-1:-1:-1;;;;;39260:36:0;;;;;:72;;5642:10;;39311:4;;39317:7;;39326:5;;39260:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39260:72:0;;;;;;;;-1:-1:-1;;39260:72:0;;;;;;;;;;;;:::i;:::-;;;39256:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39502:13:0;;39498:272;;39545:60;;-1:-1:-1;;;39545:60:0;;;;;;;:::i;39498:272::-;39720:6;39714:13;39705:6;39701:2;39697:15;39690:38;39256:529;-1:-1:-1;;;;;;39383:51:0;-1:-1:-1;;;39383:51:0;;-1:-1:-1;39376:58:0;;39220:620;-1:-1:-1;39824:4:0;39048:799;;;;;;:::o;49928:111::-;49988:13;50021:10;50014:17;;;;;:::i;3124:723::-;3180:13;3401:10;3397:53;;-1:-1:-1;;3428:10:0;;;;;;;;;;;;-1:-1:-1;;;3428:10:0;;;;;3124:723::o;3397:53::-;3475:5;3460:12;3516:78;3523:9;;3516:78;;3549:8;;;;:::i;:::-;;-1:-1:-1;3572:10:0;;-1:-1:-1;3580:2:0;3572:10;;:::i;:::-;;;3516:78;;;3604:19;3636:6;3626:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3626:17:0;;3604:39;;3654:154;3661:10;;3654:154;;3688:11;3698:1;3688:11;;:::i;:::-;;-1:-1:-1;3757:10:0;3765:2;3757:5;:10;:::i;:::-;3744:24;;:2;:24;:::i;:::-;3731:39;;3714:6;3721;3714:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3714:56:0;;;;;;;;-1:-1:-1;3785:11:0;3794:2;3785:11;;:::i;:::-;;;3654:154;;45852:988;46118:22;46168:1;46143:22;46160:4;46143:16;:22::i;:::-;:26;;;;:::i;:::-;46180:18;46201:26;;;:17;:26;;;;;;46118:51;;-1:-1:-1;46334:28:0;;;46330:328;;-1:-1:-1;;;;;46401:18:0;;46379:19;46401:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46452:30;;;;;;:44;;;46569:30;;:17;:30;;;;;:43;;;46330:328;-1:-1:-1;46754:26:0;;;;:17;:26;;;;;;;;46747:33;;;-1:-1:-1;;;;;46798:18:0;;;;;:12;:18;;;;;:34;;;;;;;46791:41;45852:988::o;47135:1079::-;47413:10;:17;47388:22;;47413:21;;47433:1;;47413:21;:::i;:::-;47445:18;47466:24;;;:15;:24;;;;;;47839:10;:26;;47388:46;;-1:-1:-1;47466:24:0;;47388:46;;47839:26;;;;;;:::i;:::-;;;;;;;;;47817:48;;47903:11;47878:10;47889;47878:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47983:28;;;:15;:28;;;;;;;:41;;;48155:24;;;;;48148:31;48190:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47206:1008;;;47135:1079;:::o;44639:221::-;44724:14;44741:20;44758:2;44741:16;:20::i;:::-;-1:-1:-1;;;;;44772:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44817:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44639: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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5455:488::-;-1:-1:-1;;;;;5724:15:1;;;5706:34;;5776:15;;5771:2;5756:18;;5749:43;5823:2;5808:18;;5801:34;;;5871:3;5866:2;5851:18;;5844:31;;;5649:4;;5892:45;;5917:19;;5909:6;5892:45;:::i;:::-;5884:53;5455:488;-1:-1:-1;;;;;;5455:488:1:o;6140:219::-;6289:2;6278:9;6271:21;6252:4;6309:44;6349:2;6338:9;6334:18;6326:6;6309:44;:::i;7184:414::-;7386:2;7368:21;;;7425:2;7405:18;;;7398:30;7464:34;7459:2;7444:18;;7437:62;-1:-1:-1;;;7530:2:1;7515:18;;7508:48;7588:3;7573:19;;7184:414::o;13008:356::-;13210:2;13192:21;;;13229:18;;;13222:30;13288:34;13283:2;13268:18;;13261:62;13355:2;13340:18;;13008:356::o;13369:411::-;13571:2;13553:21;;;13610:2;13590:18;;;13583:30;13649:34;13644:2;13629:18;;13622:62;-1:-1:-1;;;13715:2:1;13700:18;;13693:45;13770:3;13755:19;;13369:411::o;14940:413::-;15142:2;15124:21;;;15181:2;15161:18;;;15154:30;15220:34;15215:2;15200:18;;15193:62;-1:-1:-1;;;15286:2:1;15271:18;;15264:47;15343:3;15328:19;;14940:413::o;15771:355::-;15973:2;15955:21;;;16012:2;15992:18;;;15985:30;16051:33;16046:2;16031:18;;16024:61;16117:2;16102:18;;15771:355::o;16664:128::-;16704:3;16735:1;16731:6;16728:1;16725:13;16722:39;;;16741:18;;:::i;:::-;-1:-1:-1;16777:9:1;;16664:128::o;16797:120::-;16837:1;16863;16853:35;;16868:18;;:::i;:::-;-1:-1:-1;16902:9:1;;16797:120::o;16922:168::-;16962:7;17028:1;17024;17020:6;17016:14;17013:1;17010:21;17005:1;16998:9;16991:17;16987:45;16984:71;;;17035:18;;:::i;:::-;-1:-1:-1;17075:9:1;;16922:168::o;17095:125::-;17135:4;17163:1;17160;17157:8;17154:34;;;17168:18;;:::i;:::-;-1:-1:-1;17205:9:1;;17095:125::o;17225:258::-;17297:1;17307:113;17321:6;17318:1;17315:13;17307:113;;;17397:11;;;17391:18;17378:11;;;17371:39;17343:2;17336:10;17307:113;;;17438:6;17435:1;17432:13;17429:48;;;-1:-1:-1;;17473:1:1;17455:16;;17448:27;17225:258::o;17488:380::-;17567:1;17563:12;;;;17610;;;17631:61;;17685:4;17677:6;17673:17;17663:27;;17631:61;17738:2;17730:6;17727:14;17707:18;17704:38;17701:161;;;17784:10;17779:3;17775:20;17772:1;17765:31;17819:4;17816:1;17809:15;17847:4;17844:1;17837:15;17701:161;;17488:380;;;:::o;17873:135::-;17912:3;-1:-1:-1;;17933:17:1;;17930:43;;;17953:18;;:::i;:::-;-1:-1:-1;18000:1:1;17989:13;;17873:135::o;18013:112::-;18045:1;18071;18061:35;;18076:18;;:::i;:::-;-1:-1:-1;18110:9:1;;18013:112::o;18130:127::-;18191:10;18186:3;18182:20;18179:1;18172:31;18222:4;18219:1;18212:15;18246:4;18243:1;18236:15;18262:127;18323:10;18318:3;18314:20;18311:1;18304:31;18354:4;18351:1;18344:15;18378:4;18375:1;18368:15;18394:127;18455:10;18450:3;18446:20;18443:1;18436:31;18486:4;18483:1;18476:15;18510:4;18507:1;18500:15;18526:127;18587:10;18582:3;18578:20;18575:1;18568:31;18618:4;18615:1;18608:15;18642:4;18639:1;18632:15;18658:127;18719:10;18714:3;18710:20;18707:1;18700:31;18750:4;18747:1;18740:15;18774:4;18771:1;18764:15;18790:131;-1:-1:-1;;;;;;18864:32:1;;18854:43;;18844:71;;18911:1;18908;18901:12

Swarm Source

ipfs://faaab624db443f1f8142e72fa7e9bfc00677a214b51275427a2c041dd451bd4c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.