ETH Price: $3,434.63 (+7.60%)
Gas: 15 Gwei

Token

Orgy Club (ORGYCLUB)
 

Overview

Max Total Supply

3,181 ORGYCLUB

Holders

132

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 ORGYCLUB
0xe2b38080E5C22532Bf9e2E9f7949482d0010b42E
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:
ORGYCLUB

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/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: https://github.com/chiru-labs/ERC721A/blob/v3.1.0/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contract.sol



pragma solidity 0.8.13;





contract ORGYCLUB is ERC721A, Ownable {

    uint256 public constant PRICE = 0.003 ether;

    uint16 public constant MAX_SUPPLY = 3333;

    uint8 public constant MAX_PER_WALLET = 4;



    string private baseUri = "https://ipfs.io/ipfs/QmctNTVUwkM6EWjUHqDRk6SySBE1DfpE6z7DsSWkVK3MfR/";

    uint96 private royaltyBasisPoints = 690;



    constructor() ERC721A("Orgy Club", "ORGYCLUB") {}



    function soldOut() external view returns (bool) {

        return totalSupply() == MAX_SUPPLY;

    }



    function numberMinted(address owner) external view returns (uint256) {

        return _numberMinted(owner);

    }



    function mint(uint256 _quantity) external payable {

        uint256 minted = _numberMinted(msg.sender);

        uint256 quantity = _quantity;



        require(quantity > 0, "INCORRECT_QUANTITY");

        require(minted + quantity <= MAX_PER_WALLET, "INCORRECT_QUANTITY");

        require(totalSupply() + quantity <= MAX_SUPPLY, "SALE_MAXED");

        require(msg.value == PRICE * quantity, "INCORRECT_ETH");



        if (minted + quantity == MAX_PER_WALLET) {

            quantity++;

        }



        _safeMint(msg.sender, quantity);

    }



    function previewMint(uint256 _quantity) external onlyOwner {

        require(_quantity > 0, "INCORRECT_QUANTITY");

        require(totalSupply() + _quantity <= MAX_SUPPLY, "SALE_MAXED");

        

        _safeMint(msg.sender, _quantity);

    }



    function _startTokenId() internal view virtual override returns (uint256) {

        return 1;

    }



    function setBaseUri(string calldata _baseUri) external onlyOwner {

        baseUri = _baseUri;

    }



    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {

        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();



        string memory filename = Strings.toString(tokenId);

        return bytes(baseUri).length != 0 ? string(abi.encodePacked(baseUri, filename, ".json")) : '';

    }



    function setRoyalty(uint96 _royaltyBasisPoints) external onlyOwner {

        royaltyBasisPoints = _royaltyBasisPoints;

    }



    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount) {

        require(_exists(_tokenId), "Cannot query non-existent token");

        return (owner(), (_salePrice * royaltyBasisPoints) / 10000);

    }



    function transferFunds() external onlyOwner {

        payable(owner()).transfer(address(this).balance);

    }



    function burn(uint256[] calldata _tokenIds) external onlyOwner {

        for (uint256 i = 0; i < _tokenIds.length; i++) {

            _burn(_tokenIds[i]);

        }

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"previewMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"_royaltyBasisPoints","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040526044608081815290620022c760a03980516200002a916009916020909101906200011f565b50600a80546001600160601b0319166102b21790553480156200004c57600080fd5b50604080518082018252600981526827b933bc9021b63ab160b91b60208083019182528351808501909452600884526727a923aca1a62aa160c11b9084015281519192916200009e916002916200011f565b508051620000b49060039060208401906200011f565b5050600160005550620000c733620000cd565b62000201565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012d90620001c5565b90600052602060002090601f0160209004810192826200015157600085556200019c565b82601f106200016c57805160ff19168380011785556200019c565b828001600101855582156200019c579182015b828111156200019c5782518255916020019190600101906200017f565b50620001aa929150620001ae565b5090565b5b80821115620001aa5760008155600101620001af565b600181811c90821680620001da57607f821691505b602082108103620001fb57634e487b7160e01b600052602260045260246000fd5b50919050565b6120b680620002116000396000f3fe6080604052600436106101c25760003560e01c8063893da6c9116100f7578063b3d7f6b911610095578063cac9266911610064578063cac926691461050e578063dc33e6811461052e578063e985e9c51461054e578063f2fde38b1461059757600080fd5b8063b3d7f6b91461048e578063b80f55c9146104ae578063b88d4fde146104ce578063c87b56dd146104ee57600080fd5b806395d89b41116100d157806395d89b4114610426578063a0712d681461043b578063a0bcfc7f1461044e578063a22cb4651461046e57600080fd5b8063893da6c9146103d85780638d859f3e146103ed5780638da5cb5b1461040857600080fd5b80632a55205a1161016457806342842e0e1161013e57806342842e0e146103635780636352211e1461038357806370a08231146103a3578063715018a6146103c357600080fd5b80632a55205a146102e657806332cb6b0c146103255780633c68eb811461034e57600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780630f2cdd6c1461027857806318160ddd1461029f57806323b872dd146102c657600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a62565b6105b7565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610609565b6040516101f39190611ad7565b34801561022a57600080fd5b5061023e610239366004611aea565b61069b565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611b1f565b6106df565b005b34801561028457600080fd5b5061028d600481565b60405160ff90911681526020016101f3565b3480156102ab57600080fd5b5060015460005403600019015b6040519081526020016101f3565b3480156102d257600080fd5b506102766102e1366004611b49565b61076c565b3480156102f257600080fd5b50610306610301366004611b85565b610777565b604080516001600160a01b0390931683526020830191909152016101f3565b34801561033157600080fd5b5061033b610d0581565b60405161ffff90911681526020016101f3565b34801561035a57600080fd5b50610276610814565b34801561036f57600080fd5b5061027661037e366004611b49565b610898565b34801561038f57600080fd5b5061023e61039e366004611aea565b6108b3565b3480156103af57600080fd5b506102b86103be366004611ba7565b6108c5565b3480156103cf57600080fd5b50610276610914565b3480156103e457600080fd5b506101e7610968565b3480156103f957600080fd5b506102b8660aa87bee53800081565b34801561041457600080fd5b506008546001600160a01b031661023e565b34801561043257600080fd5b50610211610986565b610276610449366004611aea565b610995565b34801561045a57600080fd5b50610276610469366004611bc2565b610b1b565b34801561047a57600080fd5b50610276610489366004611c34565b610b6f565b34801561049a57600080fd5b506102766104a9366004611aea565b610c04565b3480156104ba57600080fd5b506102766104c9366004611c70565b610cf1565b3480156104da57600080fd5b506102766104e9366004611ce9565b610d77565b3480156104fa57600080fd5b50610211610509366004611aea565b610dc8565b34801561051a57600080fd5b50610276610529366004611dc5565b610e53565b34801561053a57600080fd5b506102b8610549366004611ba7565b610ec7565b34801561055a57600080fd5b506101e7610569366004611df3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a357600080fd5b506102766105b2366004611ba7565b610efb565b60006001600160e01b031982166380ac58cd60e01b14806105e857506001600160e01b03198216635b5e139f60e01b145b8061060357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061890611e26565b80601f016020809104026020016040519081016040528092919081815260200182805461064490611e26565b80156106915780601f1061066657610100808354040283529160200191610691565b820191906000526020600020905b81548152906001019060200180831161067457829003601f168201915b5050505050905090565b60006106a682610fb1565b6106c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ea826108b3565b9050806001600160a01b0316836001600160a01b03160361071e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073e575061073c8133610569565b155b1561075c576040516367d9dca160e11b815260040160405180910390fd5b610767838383610fea565b505050565b610767838383611053565b60008061078384610fb1565b6107d45760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6008546001600160a01b0316600a54612710906107ff906bffffffffffffffffffffffff1686611e76565b6108099190611eab565b915091509250929050565b6008546001600160a01b0316331461085c5760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610895573d6000803e3d6000fd5b50565b61076783838360405180602001604052806000815250610d77565b60006108be82611243565b5192915050565b60006001600160a01b0382166108ee576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461095c5760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b610966600061136c565b565b6000610d056109806001546000546000199190030190565b14905090565b60606003805461061890611e26565b3360009081526005602052604090205468010000000000000000900467ffffffffffffffff1681806109fe5760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107cb565b6004610a0a8284611ebf565b1115610a4d5760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107cb565b600154600054610d059183910360001901610a689190611ebf565b1115610aa35760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016107cb565b610ab481660aa87bee538000611e76565b3414610af25760405162461bcd60e51b815260206004820152600d60248201526c0929c869ea4a48a86a8be8aa89609b1b60448201526064016107cb565b6004610afe8284611ebf565b03610b115780610b0d81611ed7565b9150505b61076733826113cb565b6008546001600160a01b03163314610b635760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b610767600983836119b3565b336001600160a01b03831603610b985760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610c4c5760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b60008111610c915760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107cb565b600154600054610d059183910360001901610cac9190611ebf565b1115610ce75760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016107cb565b61089533826113cb565b6008546001600160a01b03163314610d395760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b60005b8181101561076757610d65838383818110610d5957610d59611ef0565b905060200201356113e9565b80610d6f81611ed7565b915050610d3c565b610d82848484611053565b6001600160a01b0383163b15158015610da45750610da2848484846113f4565b155b15610dc2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dd382610fb1565b610df057604051630a14c4b560e41b815260040160405180910390fd5b6000610dfb836114e0565b905060098054610e0a90611e26565b9050600003610e285760405180602001604052806000815250610e4c565b600981604051602001610e3c929190611f22565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e9b5760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b600a80546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff16610603565b6008546001600160a01b03163314610f435760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b6001600160a01b038116610fa85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b6108958161136c565b600081600111158015610fc5575060005482105b8015610603575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061105e82611243565b9050836001600160a01b031681600001516001600160a01b0316146110955760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110b357506110b38533610569565b806110ce5750336110c38461069b565b6001600160a01b0316145b9050806110ee57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661111557604051633a954ecd60e21b815260040160405180910390fd5b61112160008487610fea565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166111f75760005482146111f7578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611273575060005481105b1561135357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113515780516001600160a01b0316156112e7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561134c579392505050565b6112e7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113e58282604051806020016040528060008152506115f9565b5050565b610895816000611606565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611429903390899088908890600401611fdc565b6020604051808303816000875af1925050508015611464575060408051601f3d908101601f1916820190925261146191810190612018565b60015b6114c2573d808015611492576040519150601f19603f3d011682016040523d82523d6000602084013e611497565b606091505b5080516000036114ba576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611531578061151b81611ed7565b915061152a9050600a83611eab565b915061150b565b60008167ffffffffffffffff81111561154c5761154c611cd3565b6040519080825280601f01601f191660200182016040528015611576576020820181803683370190505b5090505b84156114d85761158b600183612035565b9150611598600a8661204c565b6115a3906030611ebf565b60f81b8183815181106115b8576115b8611ef0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506115f2600a86611eab565b945061157a565b61076783838360016117e1565b600061161183611243565b80519091508215611677576000336001600160a01b038316148061163a575061163a8233610569565b8061165557503361164a8661069b565b6001600160a01b0316145b90508061167557604051632ce44b5f60e11b815260040160405180910390fd5b505b61168360008583610fea565b6001600160a01b038082166000818152600560209081526040808320805470010000000000000000000000000000000060001967ffffffffffffffff80841691909101811667ffffffffffffffff19841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611797576000548214611797578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b6000546001600160a01b03851661180a57604051622e076360e81b815260040160405180910390fd5b8360000361182b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118dd57506001600160a01b0387163b15155b15611965575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461192e60008884806001019550886113f4565b61194b576040516368d2bf6b60e11b815260040160405180910390fd5b8082036118e357826000541461196057600080fd5b6119aa565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611966575b5060005561123c565b8280546119bf90611e26565b90600052602060002090601f0160209004810192826119e15760008555611a27565b82601f106119fa5782800160ff19823516178555611a27565b82800160010185558215611a27579182015b82811115611a27578235825591602001919060010190611a0c565b50611a33929150611a37565b5090565b5b80821115611a335760008155600101611a38565b6001600160e01b03198116811461089557600080fd5b600060208284031215611a7457600080fd5b8135610e4c81611a4c565b60005b83811015611a9a578181015183820152602001611a82565b83811115610dc25750506000910152565b60008151808452611ac3816020860160208601611a7f565b601f01601f19169290920160200192915050565b602081526000610e4c6020830184611aab565b600060208284031215611afc57600080fd5b5035919050565b80356001600160a01b0381168114611b1a57600080fd5b919050565b60008060408385031215611b3257600080fd5b611b3b83611b03565b946020939093013593505050565b600080600060608486031215611b5e57600080fd5b611b6784611b03565b9250611b7560208501611b03565b9150604084013590509250925092565b60008060408385031215611b9857600080fd5b50508035926020909101359150565b600060208284031215611bb957600080fd5b610e4c82611b03565b60008060208385031215611bd557600080fd5b823567ffffffffffffffff80821115611bed57600080fd5b818501915085601f830112611c0157600080fd5b813581811115611c1057600080fd5b866020828501011115611c2257600080fd5b60209290920196919550909350505050565b60008060408385031215611c4757600080fd5b611c5083611b03565b915060208301358015158114611c6557600080fd5b809150509250929050565b60008060208385031215611c8357600080fd5b823567ffffffffffffffff80821115611c9b57600080fd5b818501915085601f830112611caf57600080fd5b813581811115611cbe57600080fd5b8660208260051b8501011115611c2257600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611cff57600080fd5b611d0885611b03565b9350611d1660208601611b03565b925060408501359150606085013567ffffffffffffffff80821115611d3a57600080fd5b818701915087601f830112611d4e57600080fd5b813581811115611d6057611d60611cd3565b604051601f8201601f19908116603f01168101908382118183101715611d8857611d88611cd3565b816040528281528a6020848701011115611da157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215611dd757600080fd5b81356bffffffffffffffffffffffff81168114610e4c57600080fd5b60008060408385031215611e0657600080fd5b611e0f83611b03565b9150611e1d60208401611b03565b90509250929050565b600181811c90821680611e3a57607f821691505b602082108103611e5a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611e9057611e90611e60565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611eba57611eba611e95565b500490565b60008219821115611ed257611ed2611e60565b500190565b600060018201611ee957611ee9611e60565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008151611f18818560208601611a7f565b9290920192915050565b600080845481600182811c915080831680611f3e57607f831692505b60208084108203611f5d57634e487b7160e01b86526022600452602486fd5b818015611f715760018114611f8257611faf565b60ff19861689528489019650611faf565b60008b81526020902060005b86811015611fa75781548b820152908501908301611f8e565b505084890196505b505050505050611fd3611fc28286611f06565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261200e6080830184611aab565b9695505050505050565b60006020828403121561202a57600080fd5b8151610e4c81611a4c565b60008282101561204757612047611e60565b500390565b60008261205b5761205b611e95565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212203018d5f81be2033e5032ef48fb357611ba42f9f620dea8e038f5d8b4a2d6e60064736f6c634300080d003368747470733a2f2f697066732e696f2f697066732f516d63744e545655776b4d3645576a55487144526b3653795342453144667045367a37447353576b564b334d66522f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c8063893da6c9116100f7578063b3d7f6b911610095578063cac9266911610064578063cac926691461050e578063dc33e6811461052e578063e985e9c51461054e578063f2fde38b1461059757600080fd5b8063b3d7f6b91461048e578063b80f55c9146104ae578063b88d4fde146104ce578063c87b56dd146104ee57600080fd5b806395d89b41116100d157806395d89b4114610426578063a0712d681461043b578063a0bcfc7f1461044e578063a22cb4651461046e57600080fd5b8063893da6c9146103d85780638d859f3e146103ed5780638da5cb5b1461040857600080fd5b80632a55205a1161016457806342842e0e1161013e57806342842e0e146103635780636352211e1461038357806370a08231146103a3578063715018a6146103c357600080fd5b80632a55205a146102e657806332cb6b0c146103255780633c68eb811461034e57600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780630f2cdd6c1461027857806318160ddd1461029f57806323b872dd146102c657600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a62565b6105b7565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610609565b6040516101f39190611ad7565b34801561022a57600080fd5b5061023e610239366004611aea565b61069b565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611b1f565b6106df565b005b34801561028457600080fd5b5061028d600481565b60405160ff90911681526020016101f3565b3480156102ab57600080fd5b5060015460005403600019015b6040519081526020016101f3565b3480156102d257600080fd5b506102766102e1366004611b49565b61076c565b3480156102f257600080fd5b50610306610301366004611b85565b610777565b604080516001600160a01b0390931683526020830191909152016101f3565b34801561033157600080fd5b5061033b610d0581565b60405161ffff90911681526020016101f3565b34801561035a57600080fd5b50610276610814565b34801561036f57600080fd5b5061027661037e366004611b49565b610898565b34801561038f57600080fd5b5061023e61039e366004611aea565b6108b3565b3480156103af57600080fd5b506102b86103be366004611ba7565b6108c5565b3480156103cf57600080fd5b50610276610914565b3480156103e457600080fd5b506101e7610968565b3480156103f957600080fd5b506102b8660aa87bee53800081565b34801561041457600080fd5b506008546001600160a01b031661023e565b34801561043257600080fd5b50610211610986565b610276610449366004611aea565b610995565b34801561045a57600080fd5b50610276610469366004611bc2565b610b1b565b34801561047a57600080fd5b50610276610489366004611c34565b610b6f565b34801561049a57600080fd5b506102766104a9366004611aea565b610c04565b3480156104ba57600080fd5b506102766104c9366004611c70565b610cf1565b3480156104da57600080fd5b506102766104e9366004611ce9565b610d77565b3480156104fa57600080fd5b50610211610509366004611aea565b610dc8565b34801561051a57600080fd5b50610276610529366004611dc5565b610e53565b34801561053a57600080fd5b506102b8610549366004611ba7565b610ec7565b34801561055a57600080fd5b506101e7610569366004611df3565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a357600080fd5b506102766105b2366004611ba7565b610efb565b60006001600160e01b031982166380ac58cd60e01b14806105e857506001600160e01b03198216635b5e139f60e01b145b8061060357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461061890611e26565b80601f016020809104026020016040519081016040528092919081815260200182805461064490611e26565b80156106915780601f1061066657610100808354040283529160200191610691565b820191906000526020600020905b81548152906001019060200180831161067457829003601f168201915b5050505050905090565b60006106a682610fb1565b6106c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106ea826108b3565b9050806001600160a01b0316836001600160a01b03160361071e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061073e575061073c8133610569565b155b1561075c576040516367d9dca160e11b815260040160405180910390fd5b610767838383610fea565b505050565b610767838383611053565b60008061078384610fb1565b6107d45760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064015b60405180910390fd5b6008546001600160a01b0316600a54612710906107ff906bffffffffffffffffffffffff1686611e76565b6108099190611eab565b915091509250929050565b6008546001600160a01b0316331461085c5760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610895573d6000803e3d6000fd5b50565b61076783838360405180602001604052806000815250610d77565b60006108be82611243565b5192915050565b60006001600160a01b0382166108ee576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461095c5760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b610966600061136c565b565b6000610d056109806001546000546000199190030190565b14905090565b60606003805461061890611e26565b3360009081526005602052604090205468010000000000000000900467ffffffffffffffff1681806109fe5760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107cb565b6004610a0a8284611ebf565b1115610a4d5760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107cb565b600154600054610d059183910360001901610a689190611ebf565b1115610aa35760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016107cb565b610ab481660aa87bee538000611e76565b3414610af25760405162461bcd60e51b815260206004820152600d60248201526c0929c869ea4a48a86a8be8aa89609b1b60448201526064016107cb565b6004610afe8284611ebf565b03610b115780610b0d81611ed7565b9150505b61076733826113cb565b6008546001600160a01b03163314610b635760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b610767600983836119b3565b336001600160a01b03831603610b985760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610c4c5760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b60008111610c915760405162461bcd60e51b8152602060048201526012602482015271494e434f52524543545f5155414e5449545960701b60448201526064016107cb565b600154600054610d059183910360001901610cac9190611ebf565b1115610ce75760405162461bcd60e51b815260206004820152600a60248201526914d0531157d35056115160b21b60448201526064016107cb565b61089533826113cb565b6008546001600160a01b03163314610d395760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b60005b8181101561076757610d65838383818110610d5957610d59611ef0565b905060200201356113e9565b80610d6f81611ed7565b915050610d3c565b610d82848484611053565b6001600160a01b0383163b15158015610da45750610da2848484846113f4565b155b15610dc2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610dd382610fb1565b610df057604051630a14c4b560e41b815260040160405180910390fd5b6000610dfb836114e0565b905060098054610e0a90611e26565b9050600003610e285760405180602001604052806000815250610e4c565b600981604051602001610e3c929190611f22565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610e9b5760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b600a80546bffffffffffffffffffffffff19166bffffffffffffffffffffffff92909216919091179055565b6001600160a01b03811660009081526005602052604081205468010000000000000000900467ffffffffffffffff16610603565b6008546001600160a01b03163314610f435760405162461bcd60e51b8152602060048201819052602482015260008051602061206183398151915260448201526064016107cb565b6001600160a01b038116610fa85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b6108958161136c565b600081600111158015610fc5575060005482105b8015610603575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061105e82611243565b9050836001600160a01b031681600001516001600160a01b0316146110955760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110b357506110b38533610569565b806110ce5750336110c38461069b565b6001600160a01b0316145b9050806110ee57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661111557604051633a954ecd60e21b815260040160405180910390fd5b61112160008487610fea565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166111f75760005482146111f7578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611273575060005481105b1561135357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113515780516001600160a01b0316156112e7579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff161515928101929092521561134c579392505050565b6112e7565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6113e58282604051806020016040528060008152506115f9565b5050565b610895816000611606565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611429903390899088908890600401611fdc565b6020604051808303816000875af1925050508015611464575060408051601f3d908101601f1916820190925261146191810190612018565b60015b6114c2573d808015611492576040519150601f19603f3d011682016040523d82523d6000602084013e611497565b606091505b5080516000036114ba576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036115075750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611531578061151b81611ed7565b915061152a9050600a83611eab565b915061150b565b60008167ffffffffffffffff81111561154c5761154c611cd3565b6040519080825280601f01601f191660200182016040528015611576576020820181803683370190505b5090505b84156114d85761158b600183612035565b9150611598600a8661204c565b6115a3906030611ebf565b60f81b8183815181106115b8576115b8611ef0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506115f2600a86611eab565b945061157a565b61076783838360016117e1565b600061161183611243565b80519091508215611677576000336001600160a01b038316148061163a575061163a8233610569565b8061165557503361164a8661069b565b6001600160a01b0316145b90508061167557604051632ce44b5f60e11b815260040160405180910390fd5b505b61168360008583610fea565b6001600160a01b038082166000818152600560209081526040808320805470010000000000000000000000000000000060001967ffffffffffffffff80841691909101811667ffffffffffffffff19841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611797576000548214611797578054602087015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b6000546001600160a01b03851661180a57604051622e076360e81b815260040160405180910390fd5b8360000361182b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156118dd57506001600160a01b0387163b15155b15611965575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461192e60008884806001019550886113f4565b61194b576040516368d2bf6b60e11b815260040160405180910390fd5b8082036118e357826000541461196057600080fd5b6119aa565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611966575b5060005561123c565b8280546119bf90611e26565b90600052602060002090601f0160209004810192826119e15760008555611a27565b82601f106119fa5782800160ff19823516178555611a27565b82800160010185558215611a27579182015b82811115611a27578235825591602001919060010190611a0c565b50611a33929150611a37565b5090565b5b80821115611a335760008155600101611a38565b6001600160e01b03198116811461089557600080fd5b600060208284031215611a7457600080fd5b8135610e4c81611a4c565b60005b83811015611a9a578181015183820152602001611a82565b83811115610dc25750506000910152565b60008151808452611ac3816020860160208601611a7f565b601f01601f19169290920160200192915050565b602081526000610e4c6020830184611aab565b600060208284031215611afc57600080fd5b5035919050565b80356001600160a01b0381168114611b1a57600080fd5b919050565b60008060408385031215611b3257600080fd5b611b3b83611b03565b946020939093013593505050565b600080600060608486031215611b5e57600080fd5b611b6784611b03565b9250611b7560208501611b03565b9150604084013590509250925092565b60008060408385031215611b9857600080fd5b50508035926020909101359150565b600060208284031215611bb957600080fd5b610e4c82611b03565b60008060208385031215611bd557600080fd5b823567ffffffffffffffff80821115611bed57600080fd5b818501915085601f830112611c0157600080fd5b813581811115611c1057600080fd5b866020828501011115611c2257600080fd5b60209290920196919550909350505050565b60008060408385031215611c4757600080fd5b611c5083611b03565b915060208301358015158114611c6557600080fd5b809150509250929050565b60008060208385031215611c8357600080fd5b823567ffffffffffffffff80821115611c9b57600080fd5b818501915085601f830112611caf57600080fd5b813581811115611cbe57600080fd5b8660208260051b8501011115611c2257600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611cff57600080fd5b611d0885611b03565b9350611d1660208601611b03565b925060408501359150606085013567ffffffffffffffff80821115611d3a57600080fd5b818701915087601f830112611d4e57600080fd5b813581811115611d6057611d60611cd3565b604051601f8201601f19908116603f01168101908382118183101715611d8857611d88611cd3565b816040528281528a6020848701011115611da157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600060208284031215611dd757600080fd5b81356bffffffffffffffffffffffff81168114610e4c57600080fd5b60008060408385031215611e0657600080fd5b611e0f83611b03565b9150611e1d60208401611b03565b90509250929050565b600181811c90821680611e3a57607f821691505b602082108103611e5a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611e9057611e90611e60565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611eba57611eba611e95565b500490565b60008219821115611ed257611ed2611e60565b500190565b600060018201611ee957611ee9611e60565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60008151611f18818560208601611a7f565b9290920192915050565b600080845481600182811c915080831680611f3e57607f831692505b60208084108203611f5d57634e487b7160e01b86526022600452602486fd5b818015611f715760018114611f8257611faf565b60ff19861689528489019650611faf565b60008b81526020902060005b86811015611fa75781548b820152908501908301611f8e565b505084890196505b505050505050611fd3611fc28286611f06565b64173539b7b760d91b815260050190565b95945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261200e6080830184611aab565b9695505050505050565b60006020828403121561202a57600080fd5b8151610e4c81611a4c565b60008282101561204757612047611e60565b500390565b60008261205b5761205b611e95565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a26469706673582212203018d5f81be2033e5032ef48fb357611ba42f9f620dea8e038f5d8b4a2d6e60064736f6c634300080d0033

Deployed Bytecode Sourcemap

44836:2868:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27014:305;;;;;;;;;;-1:-1:-1;27014:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27014:305:0;;;;;;;;30127:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31630:204::-;;;;;;;;;;-1:-1:-1;31630:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:55:1;;;1696:74;;1684:2;1669:18;31630:204:0;1550:226:1;31193:371:0;;;;;;;;;;-1:-1:-1;31193:371:0;;;;;:::i;:::-;;:::i;:::-;;44984:40;;;;;;;;;;;;45023:1;44984:40;;;;;2413:4:1;2401:17;;;2383:36;;2371:2;2356:18;44984:40:0;2241:184:1;26263:303:0;;;;;;;;;;-1:-1:-1;46461:1:0;26517:12;26307:7;26501:13;:28;-1:-1:-1;;26501:46:0;26263:303;;;2576:25:1;;;2564:2;2549:18;26263:303:0;2430:177:1;32495:170:0;;;;;;;;;;-1:-1:-1;32495:170:0;;;;;:::i;:::-;;:::i;47099:279::-;;;;;;;;;;-1:-1:-1;47099:279:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3390:55:1;;;3372:74;;3477:2;3462:18;;3455:34;;;;3345:18;47099:279:0;3198:297:1;44935:40:0;;;;;;;;;;;;44971:4;44935:40;;;;;3674:6:1;3662:19;;;3644:38;;3632:2;3617:18;44935:40:0;3500:188:1;47390:115:0;;;;;;;;;;;;;:::i;32736:185::-;;;;;;;;;;-1:-1:-1;32736:185:0;;;;;:::i;:::-;;:::i;29935:125::-;;;;;;;;;;-1:-1:-1;29935:125:0;;;;;:::i;:::-;;:::i;27383:206::-;;;;;;;;;;-1:-1:-1;27383:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;45254:105::-;;;;;;;;;;;;;:::i;44883:43::-;;;;;;;;;;;;44915:11;44883:43;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;30296:104;;;;;;;;;;;;;:::i;45502:583::-;;;;;;:::i;:::-;;:::i;46484:106::-;;;;;;;;;;-1:-1:-1;46484:106:0;;;;;:::i;:::-;;:::i;31906:287::-;;;;;;;;;;-1:-1:-1;31906:287:0;;;;;:::i;:::-;;:::i;46097:258::-;;;;;;;;;;-1:-1:-1;46097:258:0;;;;;:::i;:::-;;:::i;47517:182::-;;;;;;;;;;-1:-1:-1;47517:182:0;;;;;:::i;:::-;;:::i;32992:369::-;;;;;;;;;;-1:-1:-1;32992:369:0;;;;;:::i;:::-;;:::i;46602:343::-;;;;;;;;;;-1:-1:-1;46602:343:0;;;;;:::i;:::-;;:::i;46957:130::-;;;;;;;;;;-1:-1:-1;46957:130:0;;;;;:::i;:::-;;:::i;45371:119::-;;;;;;;;;;-1:-1:-1;45371:119:0;;;;;:::i;:::-;;:::i;32264:164::-;;;;;;;;;;-1:-1:-1;32264:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32385:25:0;;;32361:4;32385:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32264:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;27014:305::-;27116:4;-1:-1:-1;;;;;;27153:40:0;;-1:-1:-1;;;27153:40:0;;:105;;-1:-1:-1;;;;;;;27210:48:0;;-1:-1:-1;;;27210:48:0;27153:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;27275:36;27133:178;27014:305;-1:-1:-1;;27014:305:0:o;30127:100::-;30181:13;30214:5;30207:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30127:100;:::o;31630:204::-;31698:7;31723:16;31731:7;31723;:16::i;:::-;31718:64;;31748:34;;-1:-1:-1;;;31748:34:0;;;;;;;;;;;31718:64;-1:-1:-1;31802:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31802:24:0;;31630:204::o;31193:371::-;31266:13;31282:24;31298:7;31282:15;:24::i;:::-;31266:40;;31327:5;-1:-1:-1;;;;;31321:11:0;:2;-1:-1:-1;;;;;31321:11:0;;31317:48;;31341:24;;-1:-1:-1;;;31341:24:0;;;;;;;;;;;31317:48;2883:10;-1:-1:-1;;;;;31382:21:0;;;;;;:63;;-1:-1:-1;31408:37:0;31425:5;2883:10;32264:164;:::i;31408:37::-;31407:38;31382:63;31378:138;;;31469:35;;-1:-1:-1;;;31469:35:0;;;;;;;;;;;31378:138;31528:28;31537:2;31541:7;31550:5;31528:8;:28::i;:::-;31255:309;31193:371;;:::o;32495:170::-;32629:28;32639:4;32645:2;32649:7;32629:9;:28::i;47099:279::-;47181:16;47199:21;47243:17;47251:8;47243:7;:17::i;:::-;47235:61;;;;-1:-1:-1;;;47235:61:0;;7877:2:1;47235:61:0;;;7859:21:1;7916:2;7896:18;;;7889:30;7955:33;7935:18;;;7928:61;8006:18;;47235:61:0;;;;;;;;;4152:6;;-1:-1:-1;;;;;4152:6:0;47340:18;;47362:5;;47327:31;;47340:18;;47327:10;:31;:::i;:::-;47326:41;;;;:::i;:::-;47309:59;;;;47099:279;;;;;:::o;47390:115::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8799:2:1;4291:68:0;;;8781:21:1;;;8818:18;;;8811:30;-1:-1:-1;;;;;;;;;;;8857:18:1;;;8850:62;8929:18;;4291:68:0;8597:356:1;4291:68:0;4152:6;;47447:48:::1;::::0;-1:-1:-1;;;;;4152:6:0;;;;47473:21:::1;47447:48:::0;::::1;;;::::0;::::1;::::0;;;47473:21;4152:6;47447:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47390:115::o:0;32736:185::-;32874:39;32891:4;32897:2;32901:7;32874:39;;;;;;;;;;;;:16;:39::i;29935:125::-;29999:7;30026:21;30039:7;30026:12;:21::i;:::-;:26;;29935:125;-1:-1:-1;;29935:125:0:o;27383:206::-;27447:7;-1:-1:-1;;;;;27471:19:0;;27467:60;;27499:28;;-1:-1:-1;;;27499:28:0;;;;;;;;;;;27467:60;-1:-1:-1;;;;;;27553:19:0;;;;;:12;:19;;;;;:27;;;;27383:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8799:2:1;4291:68:0;;;8781:21:1;;;8818:18;;;8811:30;-1:-1:-1;;;;;;;;;;;8857:18:1;;;8850:62;8929:18;;4291:68:0;8597:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;45254:105::-;45296:4;44971;45322:13;46461:1;26517:12;26307:7;26501:13;-1:-1:-1;;26501:28:0;;;:46;;26263:303;45322:13;:27;45315:34;;45254:105;:::o;30296:104::-;30352:13;30385:7;30378:14;;;;;:::i;45502:583::-;45596:10;45565:14;27767:19;;;:12;:19;;;;;:32;;;;;;45639:9;;45665:43;;;;-1:-1:-1;;;45665:43:0;;9160:2:1;45665:43:0;;;9142:21:1;9199:2;9179:18;;;9172:30;-1:-1:-1;;;9218:18:1;;;9211:48;9276:18;;45665:43:0;8958:342:1;45665:43:0;45023:1;45729:17;45738:8;45729:6;:17;:::i;:::-;:35;;45721:66;;;;-1:-1:-1;;;45721:66:0;;9160:2:1;45721:66:0;;;9142:21:1;9199:2;9179:18;;;9172:30;-1:-1:-1;;;9218:18:1;;;9211:48;9276:18;;45721:66:0;8958:342:1;45721:66:0;46461:1;26517:12;26307:7;26501:13;44971:4;;45824:8;;26501:28;-1:-1:-1;;26501:46:0;45808:24;;;;:::i;:::-;:38;;45800:61;;;;-1:-1:-1;;;45800:61:0;;9640:2:1;45800:61:0;;;9622:21:1;9679:2;9659:18;;;9652:30;-1:-1:-1;;;9698:18:1;;;9691:40;9748:18;;45800:61:0;9438:334:1;45800:61:0;45895:16;45903:8;44915:11;45895:16;:::i;:::-;45882:9;:29;45874:55;;;;-1:-1:-1;;;45874:55:0;;9979:2:1;45874:55:0;;;9961:21:1;10018:2;9998:18;;;9991:30;-1:-1:-1;;;10037:18:1;;;10030:43;10090:18;;45874:55:0;9777:337:1;45874:55:0;45023:1;45950:17;45959:8;45950:6;:17;:::i;:::-;:35;45946:82;;46004:10;;;;:::i;:::-;;;;45946:82;46044:31;46054:10;46066:8;46044:9;:31::i;46484:106::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8799:2:1;4291:68:0;;;8781:21:1;;;8818:18;;;8811:30;-1:-1:-1;;;;;;;;;;;8857:18:1;;;8850:62;8929:18;;4291:68:0;8597:356:1;4291:68:0;46562:18:::1;:7;46572:8:::0;;46562:18:::1;:::i;31906:287::-:0;2883:10;-1:-1:-1;;;;;32005:24:0;;;32001:54;;32038:17;;-1:-1:-1;;;32038:17:0;;;;;;;;;;;32001:54;2883:10;32068:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32068:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32068:53:0;;;;;;;;;;32137:48;;540:41:1;;;32068:42:0;;2883:10;32137:48;;513:18:1;32137:48:0;;;;;;;31906:287;;:::o;46097:258::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8799:2:1;4291:68:0;;;8781:21:1;;;8818:18;;;8811:30;-1:-1:-1;;;;;;;;;;;8857:18:1;;;8850:62;8929:18;;4291:68:0;8597:356:1;4291:68:0;46189:1:::1;46177:9;:13;46169:44;;;::::0;-1:-1:-1;;;46169:44:0;;9160:2:1;46169:44:0::1;::::0;::::1;9142:21:1::0;9199:2;9179:18;;;9172:30;-1:-1:-1;;;9218:18:1;;;9211:48;9276:18;;46169:44:0::1;8958:342:1::0;46169:44:0::1;46461:1:::0;26517:12;26307:7;26501:13;44971:4:::1;::::0;46250:9;;26501:28;-1:-1:-1;;26501:46:0;46234:25:::1;;;;:::i;:::-;:39;;46226:62;;;::::0;-1:-1:-1;;;46226:62:0;;9640:2:1;46226:62:0::1;::::0;::::1;9622:21:1::0;9679:2;9659:18;;;9652:30;-1:-1:-1;;;9698:18:1;;;9691:40;9748:18;;46226:62:0::1;9438:334:1::0;46226:62:0::1;46313:32;46323:10;46335:9;46313;:32::i;47517:182::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8799:2:1;4291:68:0;;;8781:21:1;;;8818:18;;;8811:30;-1:-1:-1;;;;;;;;;;;8857:18:1;;;8850:62;8929:18;;4291:68:0;8597:356:1;4291:68:0;47598:9:::1;47593:97;47613:20:::0;;::::1;47593:97;;;47657:19;47663:9;;47673:1;47663:12;;;;;;;:::i;:::-;;;;;;;47657:5;:19::i;:::-;47635:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47593:97;;32992:369:::0;33159:28;33169:4;33175:2;33179:7;33159:9;:28::i;:::-;-1:-1:-1;;;;;33202:13:0;;7075:19;:23;;33202:76;;;;;33222:56;33253:4;33259:2;33263:7;33272:5;33222:30;:56::i;:::-;33221:57;33202:76;33198:156;;;33302:40;;-1:-1:-1;;;33302:40:0;;;;;;;;;;;33198:156;32992:369;;;;:::o;46602:343::-;46675:13;46708:16;46716:7;46708;:16::i;:::-;46703:59;;46733:29;;-1:-1:-1;;;46733:29:0;;;;;;;;;;;46703:59;46779:22;46804:25;46821:7;46804:16;:25::i;:::-;46779:50;;46855:7;46849:21;;;;;:::i;:::-;;;46874:1;46849:26;:86;;;;;;;;;;;;;;;;;46902:7;46911:8;46885:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46849:86;46842:93;46602:343;-1:-1:-1;;;46602:343:0:o;46957:130::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8799:2:1;4291:68:0;;;8781:21:1;;;8818:18;;;8811:30;-1:-1:-1;;;;;;;;;;;8857:18:1;;;8850:62;8929:18;;4291:68:0;8597:356:1;4291:68:0;47037:18:::1;:40:::0;;-1:-1:-1;;47037:40:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;46957:130::o;45371:119::-;-1:-1:-1;;;;;27767:19:0;;45431:7;27767:19;;;:12;:19;;;;;:32;;;;;;45460:20;27671:137;4988:201;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;8799:2:1;4291:68:0;;;8781:21:1;;;8818:18;;;8811:30;-1:-1:-1;;;;;;;;;;;8857:18:1;;;8850:62;8929:18;;4291:68:0;8597:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;12333:2:1;5069:73:0::1;::::0;::::1;12315:21:1::0;12372:2;12352:18;;;12345:30;12411:34;12391:18;;;12384:62;-1:-1:-1;;;12462:18:1;;;12455:36;12508:19;;5069:73:0::1;12131:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;33616:187::-:0;33673:4;33716:7;46461:1;33697:26;;:53;;;;;33737:13;;33727:7;:23;33697:53;:98;;;;-1:-1:-1;;33768:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33768:27:0;;;;33767:28;;33616:187::o;41786:196::-;41901:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;41901:29:0;-1:-1:-1;;;;;41901:29:0;;;;;;;;;41946:28;;41901:24;;41946:28;;;;;;;41786:196;;;:::o;36729:2130::-;36844:35;36882:21;36895:7;36882:12;:21::i;:::-;36844:59;;36942:4;-1:-1:-1;;;;;36920:26:0;:13;:18;;;-1:-1:-1;;;;;36920:26:0;;36916:67;;36955:28;;-1:-1:-1;;;36955:28:0;;;;;;;;;;;36916:67;36996:22;2883:10;-1:-1:-1;;;;;37022:20:0;;;;:73;;-1:-1:-1;37059:36:0;37076:4;2883:10;32264:164;:::i;37059:36::-;37022:126;;;-1:-1:-1;2883:10:0;37112:20;37124:7;37112:11;:20::i;:::-;-1:-1:-1;;;;;37112:36:0;;37022:126;36996:153;;37167:17;37162:66;;37193:35;;-1:-1:-1;;;37193:35:0;;;;;;;;;;;37162:66;-1:-1:-1;;;;;37243:16:0;;37239:52;;37268:23;;-1:-1:-1;;;37268:23:0;;;;;;;;;;;37239:52;37412:35;37429:1;37433:7;37442:4;37412:8;:35::i;:::-;-1:-1:-1;;;;;37743:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37743:31:0;;;;;;;-1:-1:-1;;37743:31:0;;;;;;;37789:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37789:29:0;;;;;;;;;;;37869:20;;;:11;:20;;;;;;37904:18;;-1:-1:-1;;;;;;37937:49:0;;;;-1:-1:-1;;;37970:15:0;37937:49;;;;;;;;;;38260:11;;38320:24;;;;;38363:13;;37869:20;;38320:24;;38363:13;38359:384;;38573:13;;38558:11;:28;38554:174;;38611:20;;38680:28;;;;38654:54;;-1:-1:-1;;;38654:54:0;-1:-1:-1;;;;;;38654:54:0;;;-1:-1:-1;;;;;38611:20:0;;38654:54;;;;38554:174;37718:1036;;;38790:7;38786:2;-1:-1:-1;;;;;38771:27:0;38780:4;-1:-1:-1;;;;;38771:27:0;;;;;;;;;;;38809:42;36833:2026;;36729:2130;;;:::o;28764:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28875:7:0;;46461:1;28924:23;;:47;;;;;28958:13;;28951:4;:20;28924:47;28920:886;;;28992:31;29026:17;;;:11;:17;;;;;;;;;28992:51;;;;;;;;;-1:-1:-1;;;;;28992:51:0;;;;-1:-1:-1;;;28992:51:0;;;;;;;;;;;-1:-1:-1;;;28992:51:0;;;;;;;;;;;;;;29062:729;;29112:14;;-1:-1:-1;;;;;29112:28:0;;29108:101;;29176:9;28764:1109;-1:-1:-1;;;28764:1109:0:o;29108:101::-;-1:-1:-1;;;29551:6:0;29596:17;;;;:11;:17;;;;;;;;;29584:29;;;;;;;;;-1:-1:-1;;;;;29584:29:0;;;;;-1:-1:-1;;;29584:29:0;;;;;;;;;;;-1:-1:-1;;;29584:29:0;;;;;;;;;;;;;29644:28;29640:109;;29712:9;28764:1109;-1:-1:-1;;;28764:1109:0:o;29640:109::-;29511:261;;;28973:833;28920:886;29834:31;;-1:-1:-1;;;29834:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;33811:104::-;33880:27;33890:2;33894:8;33880:27;;;;;;;;;;;;:9;:27::i;:::-;33811:104;;:::o;38942:89::-;39002:21;39008:7;39017:5;39002;:21::i;42474:667::-;42658:72;;-1:-1:-1;;;42658:72:0;;42637:4;;-1:-1:-1;;;;;42658:36:0;;;;;:72;;2883:10;;42709:4;;42715:7;;42724:5;;42658:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42658:72:0;;;;;;;;-1:-1:-1;;42658:72:0;;;;;;;;;;;;:::i;:::-;;;42654:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42892:6;:13;42909:1;42892:18;42888:235;;42938:40;;-1:-1:-1;;;42938:40:0;;;;;;;;;;;42888:235;43081:6;43075:13;43066:6;43062:2;43058:15;43051:38;42654:480;-1:-1:-1;;;;;;42777:55:0;-1:-1:-1;;;42777:55:0;;-1:-1:-1;42654:480:0;42474:667;;;;;;:::o;365:723::-;421:13;642:5;651:1;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34278:163;34401:32;34407:2;34411:8;34421:5;34428:4;34401:5;:32::i;39260:2408::-;39340:35;39378:21;39391:7;39378:12;:21::i;:::-;39427:18;;39340:59;;-1:-1:-1;39458:290:0;;;;39492:22;2883:10;-1:-1:-1;;;;;39518:20:0;;;;:77;;-1:-1:-1;39559:36:0;39576:4;2883:10;32264:164;:::i;39559:36::-;39518:134;;;-1:-1:-1;2883:10:0;39616:20;39628:7;39616:11;:20::i;:::-;-1:-1:-1;;;;;39616:36:0;;39518:134;39492:161;;39675:17;39670:66;;39701:35;;-1:-1:-1;;;39701:35:0;;;;;;;;;;;39670:66;39477:271;39458:290;39876:35;39893:1;39897:7;39906:4;39876:8;:35::i;:::-;-1:-1:-1;;;;;40241:18:0;;;40207:31;40241:18;;;:12;:18;;;;;;;;40274:24;;40313:29;-1:-1:-1;;40274:24:0;;;;;;;;;;-1:-1:-1;;40274:24:0;;;;40313:29;;;;;40297:1;40313:29;;;;;;;;;;;;;;;;;;;40475:20;;;:11;:20;;;;;;40510;;-1:-1:-1;;;;40578:15:0;40545:49;;;-1:-1:-1;;;40545:49:0;-1:-1:-1;;;;;;40545:49:0;;;;;;;;;;40609:22;-1:-1:-1;;;40609:22:0;;;40901:11;;;40961:24;;;;;41004:13;;40241:18;;40961:24;;41004:13;41000:384;;41214:13;;41199:11;:28;41195:174;;41252:20;;41321:28;;;;41295:54;;-1:-1:-1;;;41295:54:0;-1:-1:-1;;;;;;41295:54:0;;;-1:-1:-1;;;;;41252:20:0;;41295:54;;;;41195:174;-1:-1:-1;;41412:35:0;;41439:7;;-1:-1:-1;41435:1:0;;-1:-1:-1;;;;;;41412:35:0;;;;;41435:1;;41412:35;-1:-1:-1;;41635:12:0;:14;;;;;;-1:-1:-1;;39260:2408:0:o;34700:1775::-;34839:20;34862:13;-1:-1:-1;;;;;34890:16:0;;34886:48;;34915:19;;-1:-1:-1;;;34915:19:0;;;;;;;;;;;34886:48;34949:8;34961:1;34949:13;34945:44;;34971:18;;-1:-1:-1;;;34971:18:0;;;;;;;;;;;34945:44;-1:-1:-1;;;;;35340:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35399:49:0;;35340:44;;;;;;;;35399:49;;;;-1:-1:-1;;35340:44:0;;;;;;35399:49;;;;;;;;;;;;;;;;35465:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35515:66:0;;;;-1:-1:-1;;;35565:15:0;35515:66;;;;;;;;;;35465:25;35662:23;;;35706:4;:23;;;;-1:-1:-1;;;;;;35714:13:0;;7075:19;:23;;35714:15;35702:641;;;35750:314;35781:38;;35806:12;;-1:-1:-1;;;;;35781:38:0;;;35798:1;;35781:38;;35798:1;;35781:38;35847:69;35886:1;35890:2;35894:14;;;;;;35910:5;35847:30;:69::i;:::-;35842:174;;35952:40;;-1:-1:-1;;;35952:40:0;;;;;;;;;;;35842:174;36059:3;36043:12;:19;35750:314;;36145:12;36128:13;;:29;36124:43;;36159:8;;;36124:43;35702:641;;;36208:120;36239:40;;36264:14;;;;;-1:-1:-1;;;;;36239:40:0;;;36256:1;;36239:40;;36256:1;;36239:40;36323:3;36307:12;:19;36208:120;;35702:641;-1:-1:-1;36357:13:0;:28;36407:60;32992:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1781:196::-;1849:20;;-1:-1:-1;;;;;1898:54:1;;1888:65;;1878:93;;1967:1;1964;1957:12;1878:93;1781:196;;;:::o;1982:254::-;2050:6;2058;2111:2;2099:9;2090:7;2086:23;2082:32;2079:52;;;2127:1;2124;2117:12;2079:52;2150:29;2169:9;2150:29;:::i;:::-;2140:39;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1982:254:1:o;2612:328::-;2689:6;2697;2705;2758:2;2746:9;2737:7;2733:23;2729:32;2726:52;;;2774:1;2771;2764:12;2726:52;2797:29;2816:9;2797:29;:::i;:::-;2787:39;;2845:38;2879:2;2868:9;2864:18;2845:38;:::i;:::-;2835:48;;2930:2;2919:9;2915:18;2902:32;2892:42;;2612:328;;;;;:::o;2945:248::-;3013:6;3021;3074:2;3062:9;3053:7;3049:23;3045:32;3042:52;;;3090:1;3087;3080:12;3042:52;-1:-1:-1;;3113:23:1;;;3183:2;3168:18;;;3155:32;;-1:-1:-1;2945:248:1:o;3693:186::-;3752:6;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3844:29;3863:9;3844:29;:::i;3884:592::-;3955:6;3963;4016:2;4004:9;3995:7;3991:23;3987:32;3984:52;;;4032:1;4029;4022:12;3984:52;4072:9;4059:23;4101:18;4142:2;4134:6;4131:14;4128:34;;;4158:1;4155;4148:12;4128:34;4196:6;4185:9;4181:22;4171:32;;4241:7;4234:4;4230:2;4226:13;4222:27;4212:55;;4263:1;4260;4253:12;4212:55;4303:2;4290:16;4329:2;4321:6;4318:14;4315:34;;;4345:1;4342;4335:12;4315:34;4390:7;4385:2;4376:6;4372:2;4368:15;4364:24;4361:37;4358:57;;;4411:1;4408;4401:12;4358:57;4442:2;4434:11;;;;;4464:6;;-1:-1:-1;3884:592:1;;-1:-1:-1;;;;3884:592:1:o;4481:347::-;4546:6;4554;4607:2;4595:9;4586:7;4582:23;4578:32;4575:52;;;4623:1;4620;4613:12;4575:52;4646:29;4665:9;4646:29;:::i;:::-;4636:39;;4725:2;4714:9;4710:18;4697:32;4772:5;4765:13;4758:21;4751:5;4748:32;4738:60;;4794:1;4791;4784:12;4738:60;4817:5;4807:15;;;4481:347;;;;;:::o;4833:615::-;4919:6;4927;4980:2;4968:9;4959:7;4955:23;4951:32;4948:52;;;4996:1;4993;4986:12;4948:52;5036:9;5023:23;5065:18;5106:2;5098:6;5095:14;5092:34;;;5122:1;5119;5112:12;5092:34;5160:6;5149:9;5145:22;5135:32;;5205:7;5198:4;5194:2;5190:13;5186:27;5176:55;;5227:1;5224;5217:12;5176:55;5267:2;5254:16;5293:2;5285:6;5282:14;5279:34;;;5309:1;5306;5299:12;5279:34;5362:7;5357:2;5347:6;5344:1;5340:14;5336:2;5332:23;5328:32;5325:45;5322:65;;;5383:1;5380;5373:12;5453:127;5514:10;5509:3;5505:20;5502:1;5495:31;5545:4;5542:1;5535:15;5569:4;5566:1;5559:15;5585:1138;5680:6;5688;5696;5704;5757:3;5745:9;5736:7;5732:23;5728:33;5725:53;;;5774:1;5771;5764:12;5725:53;5797:29;5816:9;5797:29;:::i;:::-;5787:39;;5845:38;5879:2;5868:9;5864:18;5845:38;:::i;:::-;5835:48;;5930:2;5919:9;5915:18;5902:32;5892:42;;5985:2;5974:9;5970:18;5957:32;6008:18;6049:2;6041:6;6038:14;6035:34;;;6065:1;6062;6055:12;6035:34;6103:6;6092:9;6088:22;6078:32;;6148:7;6141:4;6137:2;6133:13;6129:27;6119:55;;6170:1;6167;6160:12;6119:55;6206:2;6193:16;6228:2;6224;6221:10;6218:36;;;6234:18;;:::i;:::-;6309:2;6303:9;6277:2;6363:13;;-1:-1:-1;;6359:22:1;;;6383:2;6355:31;6351:40;6339:53;;;6407:18;;;6427:22;;;6404:46;6401:72;;;6453:18;;:::i;:::-;6493:10;6489:2;6482:22;6528:2;6520:6;6513:18;6568:7;6563:2;6558;6554;6550:11;6546:20;6543:33;6540:53;;;6589:1;6586;6579:12;6540:53;6645:2;6640;6636;6632:11;6627:2;6619:6;6615:15;6602:46;6690:1;6685:2;6680;6672:6;6668:15;6664:24;6657:35;6711:6;6701:16;;;;;;;5585:1138;;;;;;;:::o;6728:292::-;6786:6;6839:2;6827:9;6818:7;6814:23;6810:32;6807:52;;;6855:1;6852;6845:12;6807:52;6894:9;6881:23;6944:26;6937:5;6933:38;6926:5;6923:49;6913:77;;6986:1;6983;6976:12;7025:260;7093:6;7101;7154:2;7142:9;7133:7;7129:23;7125:32;7122:52;;;7170:1;7167;7160:12;7122:52;7193:29;7212:9;7193:29;:::i;:::-;7183:39;;7241:38;7275:2;7264:9;7260:18;7241:38;:::i;:::-;7231:48;;7025:260;;;;;:::o;7290:380::-;7369:1;7365:12;;;;7412;;;7433:61;;7487:4;7479:6;7475:17;7465:27;;7433:61;7540:2;7532:6;7529:14;7509:18;7506:38;7503:161;;7586:10;7581:3;7577:20;7574:1;7567:31;7621:4;7618:1;7611:15;7649:4;7646:1;7639:15;7503:161;;7290:380;;;:::o;8035:127::-;8096:10;8091:3;8087:20;8084:1;8077:31;8127:4;8124:1;8117:15;8151:4;8148:1;8141:15;8167:168;8207:7;8273:1;8269;8265:6;8261:14;8258:1;8255:21;8250:1;8243:9;8236:17;8232:45;8229:71;;;8280:18;;:::i;:::-;-1:-1:-1;8320:9:1;;8167:168::o;8340:127::-;8401:10;8396:3;8392:20;8389:1;8382:31;8432:4;8429:1;8422:15;8456:4;8453:1;8446:15;8472:120;8512:1;8538;8528:35;;8543:18;;:::i;:::-;-1:-1:-1;8577:9:1;;8472:120::o;9305:128::-;9345:3;9376:1;9372:6;9369:1;9366:13;9363:39;;;9382:18;;:::i;:::-;-1:-1:-1;9418:9:1;;9305:128::o;10119:135::-;10158:3;10179:17;;;10176:43;;10199:18;;:::i;:::-;-1:-1:-1;10246:1:1;10235:13;;10119:135::o;10259:127::-;10320:10;10315:3;10311:20;10308:1;10301:31;10351:4;10348:1;10341:15;10375:4;10372:1;10365:15;10517:185;10559:3;10597:5;10591:12;10612:52;10657:6;10652:3;10645:4;10638:5;10634:16;10612:52;:::i;:::-;10680:16;;;;;10517:185;-1:-1:-1;;10517:185:1:o;10825:1301::-;11102:3;11131:1;11164:6;11158:13;11194:3;11216:1;11244:9;11240:2;11236:18;11226:28;;11304:2;11293:9;11289:18;11326;11316:61;;11370:4;11362:6;11358:17;11348:27;;11316:61;11396:2;11444;11436:6;11433:14;11413:18;11410:38;11407:165;;-1:-1:-1;;;11471:33:1;;11527:4;11524:1;11517:15;11557:4;11478:3;11545:17;11407:165;11588:18;11615:104;;;;11733:1;11728:320;;;;11581:467;;11615:104;-1:-1:-1;;11648:24:1;;11636:37;;11693:16;;;;-1:-1:-1;11615:104:1;;11728:320;10464:1;10457:14;;;10501:4;10488:18;;11823:1;11837:165;11851:6;11848:1;11845:13;11837:165;;;11929:14;;11916:11;;;11909:35;11972:16;;;;11866:10;;11837:165;;;11841:3;;12031:6;12026:3;12022:16;12015:23;;11581:467;;;;;;;12064:56;12089:30;12115:3;12107:6;12089:30;:::i;:::-;-1:-1:-1;;;10767:20:1;;10812:1;10803:11;;10707:113;12064:56;12057:63;10825:1301;-1:-1:-1;;;;;10825:1301:1:o;12538:523::-;12732:4;-1:-1:-1;;;;;12842:2:1;12834:6;12830:15;12819:9;12812:34;12894:2;12886:6;12882:15;12877:2;12866:9;12862:18;12855:43;;12934:6;12929:2;12918:9;12914:18;12907:34;12977:3;12972:2;12961:9;12957:18;12950:31;12998:57;13050:3;13039:9;13035:19;13027:6;12998:57;:::i;:::-;12990:65;12538:523;-1:-1:-1;;;;;;12538:523:1:o;13066:249::-;13135:6;13188:2;13176:9;13167:7;13163:23;13159:32;13156:52;;;13204:1;13201;13194:12;13156:52;13236:9;13230:16;13255:30;13279:5;13255:30;:::i;13320:125::-;13360:4;13388:1;13385;13382:8;13379:34;;;13393:18;;:::i;:::-;-1:-1:-1;13430:9:1;;13320:125::o;13450:112::-;13482:1;13508;13498:35;;13513:18;;:::i;:::-;-1:-1:-1;13547:9:1;;13450:112::o

Swarm Source

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