ETH Price: $2,237.78 (-6.45%)

ROBBi Planet (RBP)
 

Overview

TokenID

3782

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
RBP

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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

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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return recover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
Context,
ERC165,
IERC721,
IERC721Metadata,
IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // 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) private _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;

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return currentIndex;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
    public
    view
    override
    returns (uint256)
    {
        require(index < totalSupply(), "ERC721A: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
        interfaceId == type(IERC721Enumerable).interfaceId ||
        super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @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)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                "ERC721A: transfer to non ERC721Receiver implementer"
            );
            updatedIndex++;
        }

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
        getApproved(tokenId) == _msgSender() ||
        isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, 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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract RBP is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;


    string public baseURI;
    uint256 public tokensReserved;
    uint256 public immutable maxMint;
    uint256 public immutable maxSupply;
    uint256 public immutable reserveAmount;
    uint256 public constant PRICE = 0.0999 * 10**18; // 0.0999 ETH


    event Minted(address minter, uint256 amount);
    event ReservedToken(address minter, address recipient, uint256 amount);
    event BaseURIChanged(string newBaseURI);

    constructor(
        string memory initBaseURI,
        uint256 _maxBatchSize,
        uint256 _collectionSize,
        uint256 _reserveAmount
    ) ERC721A("ROBBi Planet", "RBP", _maxBatchSize, _collectionSize) {
        baseURI = initBaseURI;
        maxMint = _maxBatchSize;
        maxSupply = _collectionSize;
        reserveAmount = _reserveAmount;
    }


    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function reserve(address recipient, uint256 amount) external onlyOwner {
        require(recipient != address(0), "ROBBiSS: zero address");
        require(amount > 0, "ROBBiSS: invalid amount");
        require(
            totalSupply() + amount <= collectionSize,
            "ROBBiSS: max supply exceeded"
        );
        require(
            tokensReserved + amount <= reserveAmount,
            "ROBBiSS: max reserve amount exceeded"
        );
        require(
            amount <= maxBatchSize ,
            "ROBBiSS: can only mint <= maxBatchSize"
        );

        _safeMint(recipient, amount);

        tokensReserved += amount;
        emit ReservedToken(msg.sender, recipient, amount);
    }

    function mint() external payable {
        require(
            tx.origin == msg.sender,
            "ROBBiSS: contract is not allowed to mint."
        );

        require(
            totalSupply() + 1 + reserveAmount - tokensReserved <=
            collectionSize,
            "ROBBiSS: Max supply exceeded."
        );

        _safeMint(msg.sender, 1);
        refundIfOver(PRICE);

        emit Minted(msg.sender, 1);
    }

    function mintBatch(uint256 amount) external payable {

        require(
            tx.origin == msg.sender,
            "ROBBiSS: contract is not allowed to mint."
        );

        require(
            amount <= maxBatchSize ,
            "ROBBiSS: can only mint <= maxBatchSize"
        );

        require(
            totalSupply() + amount + reserveAmount - tokensReserved <=
            collectionSize,
            "ROBBiSS: Max supply exceeded."
        );

        _safeMint(msg.sender, amount);
        refundIfOver(PRICE * amount);

        emit Minted(msg.sender, amount);
    }



    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "ROBBiSS: Need to send more ETH.");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function withdraw() external nonReentrant onlyOwner {

        uint256 balance = address(this).balance;

        (bool success, ) = payable(0x0CCe9063088BAD07a7e4A934646F357608f4867b)
        .call{value: balance}("");

        require(success, "Transfer failed.");
    }

    function setBaseURI(string calldata newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(newBaseURI);
    }

    function setOwnersExplicit(uint256 quantity)
    external
    onlyOwner
    nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"},{"internalType":"uint256","name":"_maxBatchSize","type":"uint256"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReservedToken","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":"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAmount","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":"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040526000805560006007553480156200001b57600080fd5b506040516200305a3803806200305a8339810160408190526200003e91620002ba565b6040518060400160405280600c81526020016b1493d0909a48141b185b995d60a21b8152506040518060400160405280600381526020016205242560ec1b815250848460008111620000ee5760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001505760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000e5565b83516200016590600190602087019062000214565b5082516200017b90600290602086019062000214565b5060a0919091526080525062000193905033620001c2565b60016009558351620001ad90600a90602087019062000214565b5060c09290925260e0526101005250620003ff565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022290620003ac565b90600052602060002090601f01602090048101928262000246576000855562000291565b82601f106200026157805160ff191683800117855562000291565b8280016001018555821562000291579182015b828111156200029157825182559160200191906001019062000274565b506200029f929150620002a3565b5090565b5b808211156200029f5760008155600101620002a4565b60008060008060808587031215620002d0578384fd5b84516001600160401b0380821115620002e7578586fd5b818701915087601f830112620002fb578586fd5b815181811115620003105762000310620003e9565b604051601f8201601f19908116603f011681019083821181831017156200033b576200033b620003e9565b81604052828152602093508a8484870101111562000357578889fd5b8891505b828210156200037a57848201840151818301850152908301906200035b565b828211156200038b57888484830101525b9289015160408a01516060909a0151939b909a509297509195505050505050565b600181811c90821680620003c157607f821691505b60208210811415620003e357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160e05161010051612bc962000491600039600081816103a60152818161098401528181610af501526114d1015260006105d501526000610484015260008181610a910152818161155a01528181611da101528181611dcb01526122b001526000818161096001528181610ad10152818161144e01528181611ba60152611bd80152612bc96000f3fe6080604052600436106101f95760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105c3578063d7224ba0146105f7578063dc33e6811461060d578063e985e9c51461062d578063f2fde38b14610676576101f9565b8063a22cb46514610543578063b88d4fde14610563578063c87b56dd14610583578063cc47a40b146105a3576101f9565b80638d859f3e116100dc5780638d859f3e146104a65780638da5cb5b146104c25780639231ab2a146104e057806395d89b411461052e576101f9565b80636c0360eb1461042857806370a082311461043d578063715018a61461045d5780637501f74114610472576101f9565b80632d20fb6011610190578063433adb051161015f578063433adb051461037e5780634b09b72a146103945780634f6ccce7146103c857806355f804b3146103e85780636352211e14610408576101f9565b80632d20fb60146103095780632f745c59146103295780633ccfd60b1461034957806342842e0e1461035e576101f9565b80631249c58b116101cc5780631249c58b146102af57806318160ddd146102b757806320e409b4146102d657806323b872dd146102e9576101f9565b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612734565b610696565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610705565b60405161022a91906128b8565b34801561026157600080fd5b506102756102703660046127d9565b610797565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a836600461270b565b610827565b005b6102ad61093f565b3480156102c357600080fd5b506000545b60405190815260200161022a565b6102ad6102e43660046127d9565b610a70565b3480156102f557600080fd5b506102ad6103043660046125c1565b610bea565b34801561031557600080fd5b506102ad6103243660046127d9565b610bf5565b34801561033557600080fd5b506102c861034436600461270b565b610c88565b34801561035557600080fd5b506102ad610dfc565b34801561036a57600080fd5b506102ad6103793660046125c1565b610f28565b34801561038a57600080fd5b506102c8600b5481565b3480156103a057600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000000081565b3480156103d457600080fd5b506102c86103e33660046127d9565b610f43565b3480156103f457600080fd5b506102ad61040336600461276c565b610fa5565b34801561041457600080fd5b506102756104233660046127d9565b611019565b34801561043457600080fd5b5061024861102b565b34801561044957600080fd5b506102c8610458366004612575565b6110b9565b34801561046957600080fd5b506102ad61114a565b34801561047e57600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b257600080fd5b506102c8670162ea854d0fc00081565b3480156104ce57600080fd5b506008546001600160a01b0316610275565b3480156104ec57600080fd5b506105006104fb3660046127d9565b611180565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161022a565b34801561053a57600080fd5b5061024861119d565b34801561054f57600080fd5b506102ad61055e3660046126d1565b6111ac565b34801561056f57600080fd5b506102ad61057e3660046125fc565b61127e565b34801561058f57600080fd5b5061024861059e3660046127d9565b6112b7565b3480156105af57600080fd5b506102ad6105be36600461270b565b611384565b3480156105cf57600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000000081565b34801561060357600080fd5b506102c860075481565b34801561061957600080fd5b506102c8610628366004612575565b6115ff565b34801561063957600080fd5b5061021e61064836600461258f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068257600080fd5b506102ad610691366004612575565b61160a565b60006001600160e01b031982166380ac58cd60e01b14806106c757506001600160e01b03198216635b5e139f60e01b145b806106e257506001600160e01b0319821663780e9d6360e01b145b806106fd57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606001805461071490612ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461074090612ad1565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60006107a4826000541190565b61080b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083282611019565b9050806001600160a01b0316836001600160a01b031614156108a15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610802565b336001600160a01b03821614806108bd57506108bd8133610648565b61092f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610802565b61093a8383836116a5565b505050565b32331461095e5760405162461bcd60e51b815260040161080290612900565b7f0000000000000000000000000000000000000000000000000000000000000000600b547f00000000000000000000000000000000000000000000000000000000000000006109ac60005490565b6109b7906001612a04565b6109c19190612a04565b6109cb9190612a77565b1115610a195760405162461bcd60e51b815260206004820152601d60248201527f524f42426953533a204d617820737570706c792065786365656465642e0000006044820152606401610802565b610a24336001611701565b610a35670162ea854d0fc00061171f565b60408051338152600160208201527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1565b323314610a8f5760405162461bcd60e51b815260040161080290612900565b7f0000000000000000000000000000000000000000000000000000000000000000811115610acf5760405162461bcd60e51b815260040161080290612949565b7f0000000000000000000000000000000000000000000000000000000000000000600b547f000000000000000000000000000000000000000000000000000000000000000083610b1e60005490565b610b289190612a04565b610b329190612a04565b610b3c9190612a77565b1115610b8a5760405162461bcd60e51b815260206004820152601d60248201527f524f42426953533a204d617820737570706c792065786365656465642e0000006044820152606401610802565b610b943382611701565b610bae610ba982670162ea854d0fc000612a30565b61171f565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150565b61093a8383836117ad565b6008546001600160a01b03163314610c1f5760405162461bcd60e51b8152600401610802906128cb565b60026009541415610c725760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b6002600955610c8081611b35565b506001600955565b6000610c93836110b9565b8210610cec5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610802565b600080549080805b83811015610d96576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d4757805192505b876001600160a01b0316836001600160a01b03161415610d835786841415610d7557509350610df692505050565b83610d7f81612b0c565b9450505b5080610d8e81612b0c565b915050610cf4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610802565b92915050565b60026009541415610e4f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b60026009556008546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610802906128cb565b6040514790600090730cce9063088bad07a7e4a934646f357608f4867b9083908381818185875af1925050503d8060008114610ed6576040519150601f19603f3d011682016040523d82523d6000602084013e610edb565b606091505b5050905080610f1f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610802565b50506001600955565b61093a8383836040518060200160405280600081525061127e565b600080548210610fa15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610802565b5090565b6008546001600160a01b03163314610fcf5760405162461bcd60e51b8152600401610802906128cb565b610fdb600a83836124ce565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6828260405161100d929190612889565b60405180910390a15050565b600061102482611d1f565b5192915050565b600a805461103890612ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461106490612ad1565b80156110b15780601f10611086576101008083540402835291602001916110b1565b820191906000526020600020905b81548152906001019060200180831161109457829003601f168201915b505050505081565b60006001600160a01b0382166111255760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610802565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146111745760405162461bcd60e51b8152600401610802906128cb565b61117e6000611ecb565b565b60408051808201909152600080825260208201526106fd82611d1f565b60606002805461071490612ad1565b6001600160a01b0382163314156112055760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610802565b3360008181526006602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611272911515815260200190565b60405180910390a35050565b6112898484846117ad565b61129584848484611f1d565b6112b15760405162461bcd60e51b81526004016108029061298f565b50505050565b60606112c4826000541190565b6113285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610802565b600061133261202b565b90506000815111611352576040518060200160405280600081525061137d565b8061135c8461203a565b60405160200161136d92919061281d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113ae5760405162461bcd60e51b8152600401610802906128cb565b6001600160a01b0382166113fc5760405162461bcd60e51b8152602060048201526015602482015274524f42426953533a207a65726f206164647265737360581b6044820152606401610802565b6000811161144c5760405162461bcd60e51b815260206004820152601760248201527f524f42426953533a20696e76616c696420616d6f756e740000000000000000006044820152606401610802565b7f00000000000000000000000000000000000000000000000000000000000000008161147760005490565b6114819190612a04565b11156114cf5760405162461bcd60e51b815260206004820152601c60248201527f524f42426953533a206d617820737570706c79206578636565646564000000006044820152606401610802565b7f000000000000000000000000000000000000000000000000000000000000000081600b546114fe9190612a04565b11156115585760405162461bcd60e51b8152602060048201526024808201527f524f42426953533a206d6178207265736572766520616d6f756e7420657863656044820152631959195960e21b6064820152608401610802565b7f00000000000000000000000000000000000000000000000000000000000000008111156115985760405162461bcd60e51b815260040161080290612949565b6115a28282611701565b80600b60008282546115b49190612a04565b9091555050604080513381526001600160a01b03841660208201529081018290527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600161100d565b60006106fd82612155565b6008546001600160a01b031633146116345760405162461bcd60e51b8152600401610802906128cb565b6001600160a01b0381166116995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b6116a281611ecb565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61171b8282604051806020016040528060008152506121f3565b5050565b8034101561176f5760405162461bcd60e51b815260206004820152601f60248201527f524f42426953533a204e65656420746f2073656e64206d6f7265204554482e006044820152606401610802565b803411156116a257336108fc6117858334612a77565b6040518115909202916000818181858888f1935050505015801561171b573d6000803e3d6000fd5b60006117b882611d1f565b80519091506000906001600160a01b0316336001600160a01b031614806117ef5750336117e484610797565b6001600160a01b0316145b80611801575081516118019033610648565b90508061186b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610802565b846001600160a01b031682600001516001600160a01b0316146118df5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610802565b6001600160a01b0384166119435760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610802565b61195360008484600001516116a5565b6001600160a01b03851660009081526004602052604081208054600192906119859084906001600160801b0316612a4f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119d1918591166129e2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a59846001612a04565b6000818152600360205260409020549091506001600160a01b0316611aeb57611a83816000541190565b15611aeb5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611b855760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610802565b60006001611b938484612a04565b611b9d9190612a77565b9050611bca60017f0000000000000000000000000000000000000000000000000000000000000000612a77565b811115611bff57611bfc60017f0000000000000000000000000000000000000000000000000000000000000000612a77565b90505b611c0a816000541190565b611c655760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610802565b815b818111611d0b576000818152600360205260409020546001600160a01b0316611cf9576000611c9582611d1f565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d0381612b0c565b915050611c67565b50611d17816001612a04565b600755505050565b6040805180820190915260008082526020820152611d3e826000541190565b611d9d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610802565b60007f00000000000000000000000000000000000000000000000000000000000000008310611dfe57611df07f000000000000000000000000000000000000000000000000000000000000000084612a77565b611dfb906001612a04565b90505b825b818110611e6a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e57579250610700915050565b5080611e6281612aba565b915050611e00565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610802565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561201f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f6190339089908890889060040161284c565b602060405180830381600087803b158015611f7b57600080fd5b505af1925050508015611fab575060408051601f3d908101601f19168201909252611fa891810190612750565b60015b612005573d808015611fd9576040519150601f19603f3d011682016040523d82523d6000602084013e611fde565b606091505b508051611ffd5760405162461bcd60e51b81526004016108029061298f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612023565b5060015b949350505050565b6060600a805461071490612ad1565b60608161205f57506040805180820190915260018152600360fc1b6020820152610700565b8160005b8115612089578061207381612b0c565b91506120829050600a83612a1c565b9150612063565b60008167ffffffffffffffff8111156120b257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120dc576020820181803683370190505b5090505b8415612023576120f1600183612a77565b91506120fe600a86612b27565b612109906030612a04565b60f81b81838151811061212c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061214e600a86612a1c565b94506120e0565b60006001600160a01b0382166121c75760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610802565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166122565760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610802565b612261816000541190565b156122ae5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610802565b7f00000000000000000000000000000000000000000000000000000000000000008311156123295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610802565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906123859087906129e2565b6001600160801b031681526020018583602001516123a391906129e2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124c35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124876000888488611f1d565b6124a35760405162461bcd60e51b81526004016108029061298f565b816124ad81612b0c565b92505080806124bb90612b0c565b91505061243a565b506000819055611b2d565b8280546124da90612ad1565b90600052602060002090601f0160209004810192826124fc5760008555612542565b82601f106125155782800160ff19823516178555612542565b82800160010185558215612542579182015b82811115612542578235825591602001919060010190612527565b50610fa19291505b80821115610fa1576000815560010161254a565b80356001600160a01b038116811461070057600080fd5b600060208284031215612586578081fd5b61137d8261255e565b600080604083850312156125a1578081fd5b6125aa8361255e565b91506125b86020840161255e565b90509250929050565b6000806000606084860312156125d5578081fd5b6125de8461255e565b92506125ec6020850161255e565b9150604084013590509250925092565b60008060008060808587031215612611578081fd5b61261a8561255e565b93506126286020860161255e565b925060408501359150606085013567ffffffffffffffff8082111561264b578283fd5b818701915087601f83011261265e578283fd5b81358181111561267057612670612b67565b604051601f8201601f19908116603f0116810190838211818310171561269857612698612b67565b816040528281528a60208487010111156126b0578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156126e3578182fd5b6126ec8361255e565b915060208301358015158114612700578182fd5b809150509250929050565b6000806040838503121561271d578182fd5b6127268361255e565b946020939093013593505050565b600060208284031215612745578081fd5b813561137d81612b7d565b600060208284031215612761578081fd5b815161137d81612b7d565b6000806020838503121561277e578182fd5b823567ffffffffffffffff80821115612795578384fd5b818501915085601f8301126127a8578384fd5b8135818111156127b6578485fd5b8660208285010111156127c7578485fd5b60209290920196919550909350505050565b6000602082840312156127ea578081fd5b5035919050565b60008151808452612809816020860160208601612a8e565b601f01601f19169290920160200192915050565b6000835161282f818460208801612a8e565b835190830190612843818360208801612a8e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287f908301846127f1565b9695505050505050565b60006020825282602083015282846040840137818301604090810191909152601f909201601f19160101919050565b60006020825261137d60208301846127f1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f524f42426953533a20636f6e7472616374206973206e6f7420616c6c6f776564604082015268103a379036b4b73a1760b91b606082015260800190565b60208082526026908201527f524f42426953533a2063616e206f6e6c79206d696e74203c3d206d6178426174604082015265636853697a6560d01b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561284357612843612b3b565b60008219821115612a1757612a17612b3b565b500190565b600082612a2b57612a2b612b51565b500490565b6000816000190483118215151615612a4a57612a4a612b3b565b500290565b60006001600160801b0383811690831681811015612a6f57612a6f612b3b565b039392505050565b600082821015612a8957612a89612b3b565b500390565b60005b83811015612aa9578181015183820152602001612a91565b838111156112b15750506000910152565b600081612ac957612ac9612b3b565b506000190190565b600181811c90821680612ae557607f821691505b60208210811415612b0657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b2057612b20612b3b565b5060010190565b600082612b3657612b36612b51565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116a257600080fdfea26469706673582212207dc1d8772c10234e71033b075d54f1433fae62147ff37457fed9dc6ec89e805a64736f6c6343000803003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000270f0000000000000000000000000000000000000000000000000000000000000708000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6173736574732e726f62626976657273652e696f2f000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105c3578063d7224ba0146105f7578063dc33e6811461060d578063e985e9c51461062d578063f2fde38b14610676576101f9565b8063a22cb46514610543578063b88d4fde14610563578063c87b56dd14610583578063cc47a40b146105a3576101f9565b80638d859f3e116100dc5780638d859f3e146104a65780638da5cb5b146104c25780639231ab2a146104e057806395d89b411461052e576101f9565b80636c0360eb1461042857806370a082311461043d578063715018a61461045d5780637501f74114610472576101f9565b80632d20fb6011610190578063433adb051161015f578063433adb051461037e5780634b09b72a146103945780634f6ccce7146103c857806355f804b3146103e85780636352211e14610408576101f9565b80632d20fb60146103095780632f745c59146103295780633ccfd60b1461034957806342842e0e1461035e576101f9565b80631249c58b116101cc5780631249c58b146102af57806318160ddd146102b757806320e409b4146102d657806323b872dd146102e9576101f9565b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004612734565b610696565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610705565b60405161022a91906128b8565b34801561026157600080fd5b506102756102703660046127d9565b610797565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a836600461270b565b610827565b005b6102ad61093f565b3480156102c357600080fd5b506000545b60405190815260200161022a565b6102ad6102e43660046127d9565b610a70565b3480156102f557600080fd5b506102ad6103043660046125c1565b610bea565b34801561031557600080fd5b506102ad6103243660046127d9565b610bf5565b34801561033557600080fd5b506102c861034436600461270b565b610c88565b34801561035557600080fd5b506102ad610dfc565b34801561036a57600080fd5b506102ad6103793660046125c1565b610f28565b34801561038a57600080fd5b506102c8600b5481565b3480156103a057600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000070881565b3480156103d457600080fd5b506102c86103e33660046127d9565b610f43565b3480156103f457600080fd5b506102ad61040336600461276c565b610fa5565b34801561041457600080fd5b506102756104233660046127d9565b611019565b34801561043457600080fd5b5061024861102b565b34801561044957600080fd5b506102c8610458366004612575565b6110b9565b34801561046957600080fd5b506102ad61114a565b34801561047e57600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000003281565b3480156104b257600080fd5b506102c8670162ea854d0fc00081565b3480156104ce57600080fd5b506008546001600160a01b0316610275565b3480156104ec57600080fd5b506105006104fb3660046127d9565b611180565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161022a565b34801561053a57600080fd5b5061024861119d565b34801561054f57600080fd5b506102ad61055e3660046126d1565b6111ac565b34801561056f57600080fd5b506102ad61057e3660046125fc565b61127e565b34801561058f57600080fd5b5061024861059e3660046127d9565b6112b7565b3480156105af57600080fd5b506102ad6105be36600461270b565b611384565b3480156105cf57600080fd5b506102c87f000000000000000000000000000000000000000000000000000000000000270f81565b34801561060357600080fd5b506102c860075481565b34801561061957600080fd5b506102c8610628366004612575565b6115ff565b34801561063957600080fd5b5061021e61064836600461258f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561068257600080fd5b506102ad610691366004612575565b61160a565b60006001600160e01b031982166380ac58cd60e01b14806106c757506001600160e01b03198216635b5e139f60e01b145b806106e257506001600160e01b0319821663780e9d6360e01b145b806106fd57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606001805461071490612ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461074090612ad1565b801561078d5780601f106107625761010080835404028352916020019161078d565b820191906000526020600020905b81548152906001019060200180831161077057829003601f168201915b5050505050905090565b60006107a4826000541190565b61080b5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083282611019565b9050806001600160a01b0316836001600160a01b031614156108a15760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610802565b336001600160a01b03821614806108bd57506108bd8133610648565b61092f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610802565b61093a8383836116a5565b505050565b32331461095e5760405162461bcd60e51b815260040161080290612900565b7f000000000000000000000000000000000000000000000000000000000000270f600b547f00000000000000000000000000000000000000000000000000000000000007086109ac60005490565b6109b7906001612a04565b6109c19190612a04565b6109cb9190612a77565b1115610a195760405162461bcd60e51b815260206004820152601d60248201527f524f42426953533a204d617820737570706c792065786365656465642e0000006044820152606401610802565b610a24336001611701565b610a35670162ea854d0fc00061171f565b60408051338152600160208201527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a1565b323314610a8f5760405162461bcd60e51b815260040161080290612900565b7f0000000000000000000000000000000000000000000000000000000000000032811115610acf5760405162461bcd60e51b815260040161080290612949565b7f000000000000000000000000000000000000000000000000000000000000270f600b547f000000000000000000000000000000000000000000000000000000000000070883610b1e60005490565b610b289190612a04565b610b329190612a04565b610b3c9190612a77565b1115610b8a5760405162461bcd60e51b815260206004820152601d60248201527f524f42426953533a204d617820737570706c792065786365656465642e0000006044820152606401610802565b610b943382611701565b610bae610ba982670162ea854d0fc000612a30565b61171f565b60408051338152602081018390527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150565b61093a8383836117ad565b6008546001600160a01b03163314610c1f5760405162461bcd60e51b8152600401610802906128cb565b60026009541415610c725760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b6002600955610c8081611b35565b506001600955565b6000610c93836110b9565b8210610cec5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610802565b600080549080805b83811015610d96576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d4757805192505b876001600160a01b0316836001600160a01b03161415610d835786841415610d7557509350610df692505050565b83610d7f81612b0c565b9450505b5080610d8e81612b0c565b915050610cf4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610802565b92915050565b60026009541415610e4f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610802565b60026009556008546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610802906128cb565b6040514790600090730cce9063088bad07a7e4a934646f357608f4867b9083908381818185875af1925050503d8060008114610ed6576040519150601f19603f3d011682016040523d82523d6000602084013e610edb565b606091505b5050905080610f1f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610802565b50506001600955565b61093a8383836040518060200160405280600081525061127e565b600080548210610fa15760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610802565b5090565b6008546001600160a01b03163314610fcf5760405162461bcd60e51b8152600401610802906128cb565b610fdb600a83836124ce565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6828260405161100d929190612889565b60405180910390a15050565b600061102482611d1f565b5192915050565b600a805461103890612ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461106490612ad1565b80156110b15780601f10611086576101008083540402835291602001916110b1565b820191906000526020600020905b81548152906001019060200180831161109457829003601f168201915b505050505081565b60006001600160a01b0382166111255760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610802565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146111745760405162461bcd60e51b8152600401610802906128cb565b61117e6000611ecb565b565b60408051808201909152600080825260208201526106fd82611d1f565b60606002805461071490612ad1565b6001600160a01b0382163314156112055760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610802565b3360008181526006602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611272911515815260200190565b60405180910390a35050565b6112898484846117ad565b61129584848484611f1d565b6112b15760405162461bcd60e51b81526004016108029061298f565b50505050565b60606112c4826000541190565b6113285760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610802565b600061133261202b565b90506000815111611352576040518060200160405280600081525061137d565b8061135c8461203a565b60405160200161136d92919061281d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146113ae5760405162461bcd60e51b8152600401610802906128cb565b6001600160a01b0382166113fc5760405162461bcd60e51b8152602060048201526015602482015274524f42426953533a207a65726f206164647265737360581b6044820152606401610802565b6000811161144c5760405162461bcd60e51b815260206004820152601760248201527f524f42426953533a20696e76616c696420616d6f756e740000000000000000006044820152606401610802565b7f000000000000000000000000000000000000000000000000000000000000270f8161147760005490565b6114819190612a04565b11156114cf5760405162461bcd60e51b815260206004820152601c60248201527f524f42426953533a206d617820737570706c79206578636565646564000000006044820152606401610802565b7f000000000000000000000000000000000000000000000000000000000000070881600b546114fe9190612a04565b11156115585760405162461bcd60e51b8152602060048201526024808201527f524f42426953533a206d6178207265736572766520616d6f756e7420657863656044820152631959195960e21b6064820152608401610802565b7f00000000000000000000000000000000000000000000000000000000000000328111156115985760405162461bcd60e51b815260040161080290612949565b6115a28282611701565b80600b60008282546115b49190612a04565b9091555050604080513381526001600160a01b03841660208201529081018290527fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e9060600161100d565b60006106fd82612155565b6008546001600160a01b031633146116345760405162461bcd60e51b8152600401610802906128cb565b6001600160a01b0381166116995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b6116a281611ecb565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61171b8282604051806020016040528060008152506121f3565b5050565b8034101561176f5760405162461bcd60e51b815260206004820152601f60248201527f524f42426953533a204e65656420746f2073656e64206d6f7265204554482e006044820152606401610802565b803411156116a257336108fc6117858334612a77565b6040518115909202916000818181858888f1935050505015801561171b573d6000803e3d6000fd5b60006117b882611d1f565b80519091506000906001600160a01b0316336001600160a01b031614806117ef5750336117e484610797565b6001600160a01b0316145b80611801575081516118019033610648565b90508061186b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610802565b846001600160a01b031682600001516001600160a01b0316146118df5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610802565b6001600160a01b0384166119435760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610802565b61195360008484600001516116a5565b6001600160a01b03851660009081526004602052604081208054600192906119859084906001600160801b0316612a4f565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119d1918591166129e2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a59846001612a04565b6000818152600360205260409020549091506001600160a01b0316611aeb57611a83816000541190565b15611aeb5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60075481611b855760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610802565b60006001611b938484612a04565b611b9d9190612a77565b9050611bca60017f000000000000000000000000000000000000000000000000000000000000270f612a77565b811115611bff57611bfc60017f000000000000000000000000000000000000000000000000000000000000270f612a77565b90505b611c0a816000541190565b611c655760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610802565b815b818111611d0b576000818152600360205260409020546001600160a01b0316611cf9576000611c9582611d1f565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600390965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b80611d0381612b0c565b915050611c67565b50611d17816001612a04565b600755505050565b6040805180820190915260008082526020820152611d3e826000541190565b611d9d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610802565b60007f00000000000000000000000000000000000000000000000000000000000000328310611dfe57611df07f000000000000000000000000000000000000000000000000000000000000003284612a77565b611dfb906001612a04565b90505b825b818110611e6a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611e57579250610700915050565b5080611e6281612aba565b915050611e00565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610802565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561201f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f6190339089908890889060040161284c565b602060405180830381600087803b158015611f7b57600080fd5b505af1925050508015611fab575060408051601f3d908101601f19168201909252611fa891810190612750565b60015b612005573d808015611fd9576040519150601f19603f3d011682016040523d82523d6000602084013e611fde565b606091505b508051611ffd5760405162461bcd60e51b81526004016108029061298f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612023565b5060015b949350505050565b6060600a805461071490612ad1565b60608161205f57506040805180820190915260018152600360fc1b6020820152610700565b8160005b8115612089578061207381612b0c565b91506120829050600a83612a1c565b9150612063565b60008167ffffffffffffffff8111156120b257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120dc576020820181803683370190505b5090505b8415612023576120f1600183612a77565b91506120fe600a86612b27565b612109906030612a04565b60f81b81838151811061212c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061214e600a86612a1c565b94506120e0565b60006001600160a01b0382166121c75760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610802565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166122565760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610802565b612261816000541190565b156122ae5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610802565b7f00000000000000000000000000000000000000000000000000000000000000328311156123295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610802565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906123859087906129e2565b6001600160801b031681526020018583602001516123a391906129e2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156124c35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46124876000888488611f1d565b6124a35760405162461bcd60e51b81526004016108029061298f565b816124ad81612b0c565b92505080806124bb90612b0c565b91505061243a565b506000819055611b2d565b8280546124da90612ad1565b90600052602060002090601f0160209004810192826124fc5760008555612542565b82601f106125155782800160ff19823516178555612542565b82800160010185558215612542579182015b82811115612542578235825591602001919060010190612527565b50610fa19291505b80821115610fa1576000815560010161254a565b80356001600160a01b038116811461070057600080fd5b600060208284031215612586578081fd5b61137d8261255e565b600080604083850312156125a1578081fd5b6125aa8361255e565b91506125b86020840161255e565b90509250929050565b6000806000606084860312156125d5578081fd5b6125de8461255e565b92506125ec6020850161255e565b9150604084013590509250925092565b60008060008060808587031215612611578081fd5b61261a8561255e565b93506126286020860161255e565b925060408501359150606085013567ffffffffffffffff8082111561264b578283fd5b818701915087601f83011261265e578283fd5b81358181111561267057612670612b67565b604051601f8201601f19908116603f0116810190838211818310171561269857612698612b67565b816040528281528a60208487010111156126b0578586fd5b82602086016020830137918201602001949094529598949750929550505050565b600080604083850312156126e3578182fd5b6126ec8361255e565b915060208301358015158114612700578182fd5b809150509250929050565b6000806040838503121561271d578182fd5b6127268361255e565b946020939093013593505050565b600060208284031215612745578081fd5b813561137d81612b7d565b600060208284031215612761578081fd5b815161137d81612b7d565b6000806020838503121561277e578182fd5b823567ffffffffffffffff80821115612795578384fd5b818501915085601f8301126127a8578384fd5b8135818111156127b6578485fd5b8660208285010111156127c7578485fd5b60209290920196919550909350505050565b6000602082840312156127ea578081fd5b5035919050565b60008151808452612809816020860160208601612a8e565b601f01601f19169290920160200192915050565b6000835161282f818460208801612a8e565b835190830190612843818360208801612a8e565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061287f908301846127f1565b9695505050505050565b60006020825282602083015282846040840137818301604090810191909152601f909201601f19160101919050565b60006020825261137d60208301846127f1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f524f42426953533a20636f6e7472616374206973206e6f7420616c6c6f776564604082015268103a379036b4b73a1760b91b606082015260800190565b60208082526026908201527f524f42426953533a2063616e206f6e6c79206d696e74203c3d206d6178426174604082015265636853697a6560d01b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561284357612843612b3b565b60008219821115612a1757612a17612b3b565b500190565b600082612a2b57612a2b612b51565b500490565b6000816000190483118215151615612a4a57612a4a612b3b565b500290565b60006001600160801b0383811690831681811015612a6f57612a6f612b3b565b039392505050565b600082821015612a8957612a89612b3b565b500390565b60005b83811015612aa9578181015183820152602001612a91565b838111156112b15750506000910152565b600081612ac957612ac9612b3b565b506000190190565b600181811c90821680612ae557607f821691505b60208210811415612b0657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b2057612b20612b3b565b5060010190565b600082612b3657612b36612b51565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116a257600080fdfea26469706673582212207dc1d8772c10234e71033b075d54f1433fae62147ff37457fed9dc6ec89e805a64736f6c63430008030033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000270f0000000000000000000000000000000000000000000000000000000000000708000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6173736574732e726f62626976657273652e696f2f000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): https://assets.robbiverse.io/
Arg [1] : _maxBatchSize (uint256): 50
Arg [2] : _collectionSize (uint256): 9999
Arg [3] : _reserveAmount (uint256): 1800

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 000000000000000000000000000000000000000000000000000000000000270f
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000708
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [5] : 68747470733a2f2f6173736574732e726f62626976657273652e696f2f000000


Deployed Bytecode Sourcemap

47717:3948:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33956:386;;;;;;;;;;-1:-1:-1;33956:386:0;;;;;:::i;:::-;;:::i;:::-;;;6965:14:1;;6958:22;6940:41;;6928:2;6913:18;33956:386:0;;;;;;;;35869:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37524:276::-;;;;;;;;;;-1:-1:-1;37524:276:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5317:32:1;;;5299:51;;5287:2;5272:18;37524:276:0;5254:102:1;37045:413:0;;;;;;;;;;-1:-1:-1;37045:413:0;;;;;:::i;:::-;;:::i;:::-;;49471:445;;;:::i;32344:100::-;;;;;;;;;;-1:-1:-1;32397:7:0;32424:12;32344:100;;;21067:25:1;;;21055:2;21040:18;32344:100:0;21022:76:1;49924:614:0;;;;;;:::i;:::-;;:::i;38507:162::-;;;;;;;;;;-1:-1:-1;38507:162:0;;;;;:::i;:::-;;:::i;51234:144::-;;;;;;;;;;-1:-1:-1;51234:144:0;;;;;:::i;:::-;;:::i;33036:848::-;;;;;;;;;;-1:-1:-1;33036:848:0;;;;;:::i;:::-;;:::i;50791:279::-;;;;;;;;;;;;;:::i;38740:177::-;;;;;;;;;;-1:-1:-1;38740:177:0;;;;;:::i;:::-;;:::i;47836:29::-;;;;;;;;;;;;;;;;47952:38;;;;;;;;;;;;;;;32521:212;;;;;;;;;;-1:-1:-1;32521:212:0;;;;;:::i;:::-;;:::i;51078:148::-;;;;;;;;;;-1:-1:-1;51078:148:0;;;;;:::i;:::-;;:::i;35678:124::-;;;;;;;;;;-1:-1:-1;35678:124:0;;;;;:::i;:::-;;:::i;47808:21::-;;;;;;;;;;;;;:::i;34406:258::-;;;;;;;;;;-1:-1:-1;34406:258:0;;;;;:::i;:::-;;:::i;2376:94::-;;;;;;;;;;;;;:::i;47872:32::-;;;;;;;;;;;;;;;47997:47;;;;;;;;;;;;48029:15;47997:47;;1725:87;;;;;;;;;;-1:-1:-1;1798:6:0;;-1:-1:-1;;;;;1798:6:0;1725:87;;51507:155;;;;;;;;;;-1:-1:-1;51507:155:0;;;;;:::i;:::-;;:::i;:::-;;;;20786:13:1;;-1:-1:-1;;;;;20782:39:1;20764:58;;20882:4;20870:17;;;20864:24;20890:18;20860:49;20838:20;;;20831:79;;;;20737:18;51507:155:0;20719:197:1;36038:104:0;;;;;;;;;;;;;:::i;37872:303::-;;;;;;;;;;-1:-1:-1;37872:303:0;;;;;:::i;:::-;;:::i;38988:355::-;;;;;;;;;;-1:-1:-1;38988:355:0;;;;;:::i;:::-;;:::i;36213:428::-;;;;;;;;;;-1:-1:-1;36213:428:0;;;;;:::i;:::-;;:::i;48733:730::-;;;;;;;;;;-1:-1:-1;48733:730:0;;;;;:::i;:::-;;:::i;47911:34::-;;;;;;;;;;;;;;;43861:43;;;;;;;;;;;;;;;;51386:113;;;;;;;;;;-1:-1:-1;51386:113:0;;;;;:::i;:::-;;:::i;38246:194::-;;;;;;;;;;-1:-1:-1;38246:194:0;;;;;:::i;:::-;-1:-1:-1;;;;;38397:25:0;;;38368:4;38397:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38246:194;2625:192;;;;;;;;;;-1:-1:-1;2625:192:0;;;;;:::i;:::-;;:::i;33956:386::-;34083:4;-1:-1:-1;;;;;;34121:40:0;;-1:-1:-1;;;34121:40:0;;:101;;-1:-1:-1;;;;;;;34174:48:0;;-1:-1:-1;;;34174:48:0;34121:101;:164;;;-1:-1:-1;;;;;;;34235:50:0;;-1:-1:-1;;;34235:50:0;34121:164;:213;;;-1:-1:-1;;;;;;;;;;29924:40:0;;;34298:36;34105:229;;33956:386;;;;:::o;35869:100::-;35923:13;35956:5;35949:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35869:100;:::o;37524:276::-;37612:7;37659:16;37667:7;39655:4;39689:12;-1:-1:-1;39679:22:0;39598:111;37659:16;37637:111;;;;-1:-1:-1;;;37637:111:0;;19939:2:1;37637:111:0;;;19921:21:1;19978:2;19958:18;;;19951:30;20017:34;19997:18;;;19990:62;-1:-1:-1;;;20068:18:1;;;20061:43;20121:19;;37637:111:0;;;;;;;;;-1:-1:-1;37768:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37768:24:0;;37524:276::o;37045:413::-;37118:13;37134:24;37150:7;37134:15;:24::i;:::-;37118:40;;37183:5;-1:-1:-1;;;;;37177:11:0;:2;-1:-1:-1;;;;;37177:11:0;;;37169:58;;;;-1:-1:-1;;;37169:58:0;;16061:2:1;37169:58:0;;;16043:21:1;16100:2;16080:18;;;16073:30;16139:34;16119:18;;;16112:62;-1:-1:-1;;;16190:18:1;;;16183:32;16232:19;;37169:58:0;16033:224:1;37169:58:0;681:10;-1:-1:-1;;;;;37262:21:0;;;;:62;;-1:-1:-1;37287:37:0;37304:5;681:10;37311:12;601:98;37287:37;37240:169;;;;-1:-1:-1;;;37240:169:0;;10615:2:1;37240:169:0;;;10597:21:1;10654:2;10634:18;;;10627:30;10693:34;10673:18;;;10666:62;10764:27;10744:18;;;10737:55;10809:19;;37240:169:0;10587:247:1;37240:169:0;37422:28;37431:2;37435:7;37444:5;37422:8;:28::i;:::-;37045:413;;;:::o;49471:445::-;49537:9;49550:10;49537:23;49515:114;;;;-1:-1:-1;;;49515:114:0;;;;;;;:::i;:::-;49731:14;49700;;49684:13;49664;32397:7;32424:12;32344:100;;49664:13;:17;;49680:1;49664:17;:::i;:::-;:33;;;;:::i;:::-;:50;;;;:::i;:::-;:81;;49642:160;;;;-1:-1:-1;;;49642:160:0;;12166:2:1;49642:160:0;;;12148:21:1;12205:2;12185:18;;;12178:30;12244:31;12224:18;;;12217:59;12293:18;;49642:160:0;12138:179:1;49642:160:0;49815:24;49825:10;49837:1;49815:9;:24::i;:::-;49850:19;48029:15;49850:12;:19::i;:::-;49887:21;;;49894:10;6416:51:1;;49906:1:0;6498:2:1;6483:18;;6476:34;49887:21:0;;6389:18:1;49887:21:0;;;;;;;49471:445::o;49924:614::-;50011:9;50024:10;50011:23;49989:114;;;;-1:-1:-1;;;49989:114:0;;;;;;;:::i;:::-;50148:12;50138:6;:22;;50116:111;;;;-1:-1:-1;;;50116:111:0;;;;;;;:::i;:::-;50334:14;50303;;50287:13;50278:6;50262:13;32397:7;32424:12;32344:100;;50262:13;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:55;;;;:::i;:::-;:86;;50240:165;;;;-1:-1:-1;;;50240:165:0;;12166:2:1;50240:165:0;;;12148:21:1;12205:2;12185:18;;;12178:30;12244:31;12224:18;;;12217:59;12293:18;;50240:165:0;12138:179:1;50240:165:0;50418:29;50428:10;50440:6;50418:9;:29::i;:::-;50458:28;50471:14;50479:6;48029:15;50471:14;:::i;:::-;50458:12;:28::i;:::-;50504:26;;;50511:10;6416:51:1;;6498:2;6483:18;;6476:34;;;50504:26:0;;6389:18:1;50504:26:0;;;;;;;49924:614;:::o;38507:162::-;38633:28;38643:4;38649:2;38653:7;38633:9;:28::i;51234:144::-;1798:6;;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;4656:1:::1;5252:7;;:19;;5244:63;;;::::0;-1:-1:-1;;;5244:63:0;;19163:2:1;5244:63:0::1;::::0;::::1;19145:21:1::0;19202:2;19182:18;;;19175:30;19241:33;19221:18;;;19214:61;19292:18;;5244:63:0::1;19135:181:1::0;5244:63:0::1;4656:1;5385:7;:18:::0;51342:28:::2;51361:8:::0;51342:18:::2;:28::i;:::-;-1:-1:-1::0;4612:1:0::1;5564:7;:22:::0;51234:144::o;33036:848::-;33145:7;33186:16;33196:5;33186:9;:16::i;:::-;33178:5;:24;33170:71;;;;-1:-1:-1;;;33170:71:0;;7816:2:1;33170:71:0;;;7798:21:1;7855:2;7835:18;;;7828:30;7894:34;7874:18;;;7867:62;-1:-1:-1;;;7945:18:1;;;7938:32;7987:19;;33170:71:0;7788:224:1;33170:71:0;33252:22;32424:12;;;33252:22;;33384:426;33408:14;33404:1;:18;33384:426;;;33444:31;33478:14;;;:11;:14;;;;;;;;;33444:48;;;;;;;;;-1:-1:-1;;;;;33444:48:0;;;;;-1:-1:-1;;;33444:48:0;;;;;;;;;;;;33511:28;33507:103;;33580:14;;;-1:-1:-1;33507:103:0;33649:5;-1:-1:-1;;;;;33628:26:0;:17;-1:-1:-1;;;;;33628:26:0;;33624:175;;;33694:5;33679:11;:20;33675:77;;;-1:-1:-1;33731:1:0;-1:-1:-1;33724:8:0;;-1:-1:-1;;;33724:8:0;33675:77;33770:13;;;;:::i;:::-;;;;33624:175;-1:-1:-1;33424:3:0;;;;:::i;:::-;;;;33384:426;;;-1:-1:-1;33820:56:0;;-1:-1:-1;;;33820:56:0;;17989:2:1;33820:56:0;;;17971:21:1;18028:2;18008:18;;;18001:30;18067:34;18047:18;;;18040:62;-1:-1:-1;;;18118:18:1;;;18111:44;18172:19;;33820:56:0;17961:236:1;33036:848:0;;;;;:::o;50791:279::-;4656:1;5252:7;;:19;;5244:63;;;;-1:-1:-1;;;5244:63:0;;19163:2:1;5244:63:0;;;19145:21:1;19202:2;19182:18;;;19175:30;19241:33;19221:18;;;19214:61;19292:18;;5244:63:0;19135:181:1;5244:63:0;4656:1;5385:7;:18;1798:6;;-1:-1:-1;;;;;1798:6:0;681:10;1945:23:::1;1937:68;;;;-1:-1:-1::0;;;1937:68:0::1;;;;;;;:::i;:::-;50927:86:::2;::::0;50874:21:::2;::::0;50856:15:::2;::::0;50935:42:::2;::::0;50874:21;;50856:15;50927:86;50856:15;50927:86;50874:21;50935:42;50927:86:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50908:105;;;51034:7;51026:36;;;::::0;-1:-1:-1;;;51026:36:0;;16464:2:1;51026:36:0::2;::::0;::::2;16446:21:1::0;16503:2;16483:18;;;16476:30;-1:-1:-1;;;16522:18:1;;;16515:46;16578:18;;51026:36:0::2;16436:166:1::0;51026:36:0::2;-1:-1:-1::0;;4612:1:0;5564:7;:22;50791:279::o;38740:177::-;38870:39;38887:4;38893:2;38897:7;38870:39;;;;;;;;;;;;:16;:39::i;32521:212::-;32608:7;32424:12;;32641:5;:21;32633:69;;;;-1:-1:-1;;;32633:69:0;;9387:2:1;32633:69:0;;;9369:21:1;9426:2;9406:18;;;9399:30;9465:34;9445:18;;;9438:62;-1:-1:-1;;;9516:18:1;;;9509:33;9559:19;;32633:69:0;9359:225:1;32633:69:0;-1:-1:-1;32720:5:0;32521:212::o;51078:148::-;1798:6;;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;51156:20:::1;:7;51166:10:::0;;51156:20:::1;:::i;:::-;;51192:26;51207:10;;51192:26;;;;;;;:::i;:::-;;;;;;;;51078:148:::0;;:::o;35678:124::-;35742:7;35769:20;35781:7;35769:11;:20::i;:::-;:25;;35678:124;-1:-1:-1;;35678:124:0:o;47808:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34406:258::-;34470:7;-1:-1:-1;;;;;34512:19:0;;34490:112;;;;-1:-1:-1;;;34490:112:0;;11754:2:1;34490:112:0;;;11736:21:1;11793:2;11773:18;;;11766:30;11832:34;11812:18;;;11805:62;-1:-1:-1;;;11883:18:1;;;11876:41;11934:19;;34490:112:0;11726:233:1;34490:112:0;-1:-1:-1;;;;;;34628:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34628:27:0;;34406:258::o;2376:94::-;1798:6;;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;2441:21:::1;2459:1;2441:9;:21::i;:::-;2376:94::o:0;51507:155::-;-1:-1:-1;;;;;;;;;;;;;;;;;51634:20:0;51646:7;51634:11;:20::i;36038:104::-;36094:13;36127:7;36120:14;;;;;:::i;37872:303::-;-1:-1:-1;;;;;37982:24:0;;681:10;37982:24;;37974:63;;;;-1:-1:-1;;;37974:63:0;;14523:2:1;37974:63:0;;;14505:21:1;14562:2;14542:18;;;14535:30;14601:28;14581:18;;;14574:56;14647:18;;37974:63:0;14495:176:1;37974:63:0;681:10;38050:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38050:42:0;;;;;;;;;;:53;;-1:-1:-1;;38050:53:0;;;;;;;:42;-1:-1:-1;;;;;38119:48:0;;38158:8;38119:48;;;;6965:14:1;6958:22;6940:41;;6928:2;6913:18;;6895:92;38119:48:0;;;;;;;;37872:303;;:::o;38988:355::-;39147:28;39157:4;39163:2;39167:7;39147:9;:28::i;:::-;39208:48;39231:4;39237:2;39241:7;39250:5;39208:22;:48::i;:::-;39186:149;;;;-1:-1:-1;;;39186:149:0;;;;;;;:::i;:::-;38988:355;;;;:::o;36213:428::-;36311:13;36364:16;36372:7;39655:4;39689:12;-1:-1:-1;39679:22:0;39598:111;36364:16;36342:113;;;;-1:-1:-1;;;36342:113:0;;14107:2:1;36342:113:0;;;14089:21:1;14146:2;14126:18;;;14119:30;14185:34;14165:18;;;14158:62;-1:-1:-1;;;14236:18:1;;;14229:45;14291:19;;36342:113:0;14079:237:1;36342:113:0;36468:21;36492:10;:8;:10::i;:::-;36468:34;;36553:1;36535:7;36529:21;:25;:104;;;;;;;;;;;;;;;;;36590:7;36599:18;:7;:16;:18::i;:::-;36573:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36529:104;36513:120;36213:428;-1:-1:-1;;;36213:428:0:o;48733:730::-;1798:6;;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48823:23:0;::::1;48815:57;;;::::0;-1:-1:-1;;;48815:57:0;;8219:2:1;48815:57:0::1;::::0;::::1;8201:21:1::0;8258:2;8238:18;;;8231:30;-1:-1:-1;;;8277:18:1;;;8270:51;8338:18;;48815:57:0::1;8191:171:1::0;48815:57:0::1;48900:1;48891:6;:10;48883:46;;;::::0;-1:-1:-1;;;48883:46:0;;18811:2:1;48883:46:0::1;::::0;::::1;18793:21:1::0;18850:2;18830:18;;;18823:30;18889:25;18869:18;;;18862:53;18932:18;;48883:46:0::1;18783:173:1::0;48883:46:0::1;48988:14;48978:6;48962:13;32397:7:::0;32424:12;32344:100;;48962:13:::1;:22;;;;:::i;:::-;:40;;48940:118;;;::::0;-1:-1:-1;;;48940:118:0;;15704:2:1;48940:118:0::1;::::0;::::1;15686:21:1::0;15743:2;15723:18;;;15716:30;15782;15762:18;;;15755:58;15830:18;;48940:118:0::1;15676:178:1::0;48940:118:0::1;49118:13;49108:6;49091:14;;:23;;;;:::i;:::-;:40;;49069:126;;;::::0;-1:-1:-1;;;49069:126:0;;13292:2:1;49069:126:0::1;::::0;::::1;13274:21:1::0;13331:2;13311:18;;;13304:30;13370:34;13350:18;;;13343:62;-1:-1:-1;;;13421:18:1;;;13414:34;13465:19;;49069:126:0::1;13264:226:1::0;49069:126:0::1;49238:12;49228:6;:22;;49206:111;;;;-1:-1:-1::0;;;49206:111:0::1;;;;;;;:::i;:::-;49330:28;49340:9;49351:6;49330:9;:28::i;:::-;49389:6;49371:14;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;49411:44:0::1;::::0;;49425:10:::1;5601:34:1::0;;-1:-1:-1;;;;;5671:15:1;;5666:2;5651:18;;5644:43;5703:18;;;5696:34;;;49411:44:0::1;::::0;5551:2:1;5536:18;49411:44:0::1;5518:218:1::0;51386:113:0;51444:7;51471:20;51485:5;51471:13;:20::i;2625:192::-;1798:6;;-1:-1:-1;;;;;1798:6:0;681:10;1945:23;1937:68;;;;-1:-1:-1;;;1937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2714:22:0;::::1;2706:73;;;::::0;-1:-1:-1;;;2706:73:0;;8569:2:1;2706:73:0::1;::::0;::::1;8551:21:1::0;8608:2;8588:18;;;8581:30;8647:34;8627:18;;;8620:62;-1:-1:-1;;;8698:18:1;;;8691:36;8744:19;;2706:73:0::1;8541:228:1::0;2706:73:0::1;2790:19;2800:8;2790:9;:19::i;:::-;2625:192:::0;:::o;43657:196::-;43772:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43772:29:0;-1:-1:-1;;;;;43772:29:0;;;;;;;;;43817:28;;43772:24;;43817:28;;;;;;;43657:196;;;:::o;39717:104::-;39786:27;39796:2;39800:8;39786:27;;;;;;;;;;;;:9;:27::i;:::-;39717:104;;:::o;50550:233::-;50627:5;50614:9;:18;;50606:62;;;;-1:-1:-1;;;50606:62:0;;11394:2:1;50606:62:0;;;11376:21:1;11433:2;11413:18;;;11406:30;11472:33;11452:18;;;11445:61;11523:18;;50606:62:0;11366:181:1;50606:62:0;50695:5;50683:9;:17;50679:97;;;50725:10;50717:47;50746:17;50758:5;50746:9;:17;:::i;:::-;50717:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41838:1701;41953:35;41991:20;42003:7;41991:11;:20::i;:::-;42066:18;;41953:58;;-1:-1:-1;42024:22:0;;-1:-1:-1;;;;;42050:34:0;681:10;-1:-1:-1;;;;;42050:34:0;;:83;;;-1:-1:-1;681:10:0;42097:20;42109:7;42097:11;:20::i;:::-;-1:-1:-1;;;;;42097:36:0;;42050:83;:146;;;-1:-1:-1;42163:18:0;;42146:50;;681:10;42183:12;601:98;42146:50;42024:173;;42232:17;42210:117;;;;-1:-1:-1;;;42210:117:0;;14878:2:1;42210:117:0;;;14860:21:1;14917:2;14897:18;;;14890:30;14956:34;14936:18;;;14929:62;-1:-1:-1;;;15007:18:1;;;15000:48;15065:19;;42210:117:0;14850:240:1;42210:117:0;42384:4;-1:-1:-1;;;;;42362:26:0;:13;:18;;;-1:-1:-1;;;;;42362:26:0;;42340:114;;;;-1:-1:-1;;;42340:114:0;;12524:2:1;42340:114:0;;;12506:21:1;12563:2;12543:18;;;12536:30;12602:34;12582:18;;;12575:62;-1:-1:-1;;;12653:18:1;;;12646:36;12699:19;;42340:114:0;12496:228:1;42340:114:0;-1:-1:-1;;;;;42473:16:0;;42465:66;;;;-1:-1:-1;;;42465:66:0;;9791:2:1;42465:66:0;;;9773:21:1;9830:2;9810:18;;;9803:30;9869:34;9849:18;;;9842:62;-1:-1:-1;;;9920:18:1;;;9913:35;9965:19;;42465:66:0;9763:227:1;42465:66:0;42652:49;42669:1;42673:7;42682:13;:18;;;42652:8;:49::i;:::-;-1:-1:-1;;;;;42714:18:0;;;;;;:12;:18;;;;;:31;;42744:1;;42714:18;:31;;42744:1;;-1:-1:-1;;;;;42714:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;42714:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42756:16:0;;-1:-1:-1;42756:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;42756:16:0;;:29;;-1:-1:-1;;42756:29:0;;:::i;:::-;;;-1:-1:-1;;;;;42756:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42819:43:0;;;;;;;;-1:-1:-1;;;;;42819:43:0;;;;;;42845:15;42819:43;;;;;;;;;-1:-1:-1;42796:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;42796:66:0;-1:-1:-1;;;;;;42796:66:0;;;;;;;;;;;43124:11;42808:7;-1:-1:-1;43124:11:0;:::i;:::-;43191:1;43150:24;;;:11;:24;;;;;:29;43102:33;;-1:-1:-1;;;;;;43150:29:0;43146:288;;43214:20;43222:11;39655:4;39689:12;-1:-1:-1;39679:22:0;39598:111;43214:20;43210:213;;;43282:125;;;;;;;;43319:18;;-1:-1:-1;;;;;43282:125:0;;;;;;43360:28;;;;43282:125;;;;;;;;;;-1:-1:-1;43255:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;43255:152:0;-1:-1:-1;;;;;;43255:152:0;;;;;;;;;;;;43210:213;43470:7;43466:2;-1:-1:-1;;;;;43451:27:0;43460:4;-1:-1:-1;;;;;43451:27:0;;;;;;;;;;;43489:42;41838:1701;;;;;;:::o;44017:950::-;44111:24;;44154:12;44146:49;;;;-1:-1:-1;;;44146:49:0;;11041:2:1;44146:49:0;;;11023:21:1;11080:2;11060:18;;;11053:30;11119:26;11099:18;;;11092:54;11163:18;;44146:49:0;11013:174:1;44146:49:0;44206:16;44256:1;44225:28;44245:8;44225:17;:28;:::i;:::-;:32;;;;:::i;:::-;44206:51;-1:-1:-1;44283:18:0;44300:1;44283:14;:18;:::i;:::-;44272:8;:29;44268:91;;;44329:18;44346:1;44329:14;:18;:::i;:::-;44318:29;;44268:91;44482:17;44490:8;39655:4;39689:12;-1:-1:-1;39679:22:0;39598:111;44482:17;44474:68;;;;-1:-1:-1;;;44474:68:0;;18404:2:1;44474:68:0;;;18386:21:1;18443:2;18423:18;;;18416:30;18482:34;18462:18;;;18455:62;-1:-1:-1;;;18533:18:1;;;18526:36;18579:19;;44474:68:0;18376:228:1;44474:68:0;44570:17;44553:357;44594:8;44589:1;:13;44553:357;;44659:1;44628:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;44628:19:0;44624:275;;44682:31;44716:14;44728:1;44716:11;:14::i;:::-;44766:117;;;;;;;;44803:14;;-1:-1:-1;;;;;44766:117:0;;;;;;44840:24;;;;44766:117;;;;;;;;;;-1:-1:-1;44749:14:0;;;:11;:14;;;;;;;:134;;;;;;;;;-1:-1:-1;;;44749:134:0;-1:-1:-1;;;;;;44749:134:0;;;;;;;;;;;;-1:-1:-1;44624:275:0;44604:3;;;;:::i;:::-;;;;44553:357;;;-1:-1:-1;44947:12:0;:8;44958:1;44947:12;:::i;:::-;44920:24;:39;-1:-1:-1;;;44017:950:0:o;34946:670::-;-1:-1:-1;;;;;;;;;;;;;;;;;35069:16:0;35077:7;39655:4;39689:12;-1:-1:-1;39679:22:0;39598:111;35069:16;35061:71;;;;-1:-1:-1;;;35061:71:0;;8976:2:1;35061:71:0;;;8958:21:1;9015:2;8995:18;;;8988:30;9054:34;9034:18;;;9027:62;-1:-1:-1;;;9105:18:1;;;9098:40;9155:19;;35061:71:0;8948:232:1;35061:71:0;35145:26;35197:12;35186:7;:23;35182:103;;35247:22;35257:12;35247:7;:22;:::i;:::-;:26;;35272:1;35247:26;:::i;:::-;35226:47;;35182:103;35317:7;35297:242;35334:18;35326:4;:26;35297:242;;35377:31;35411:17;;;:11;:17;;;;;;;;;35377:51;;;;;;;;;-1:-1:-1;;;;;35377:51:0;;;;;-1:-1:-1;;;35377:51:0;;;;;;;;;;;;35447:28;35443:85;;35503:9;-1:-1:-1;35496:16:0;;-1:-1:-1;;35496:16:0;35443:85;-1:-1:-1;35354:6:0;;;;:::i;:::-;;;;35297:242;;;-1:-1:-1;35551:57:0;;-1:-1:-1;;;35551:57:0;;19523:2:1;35551:57:0;;;19505:21:1;19562:2;19542:18;;;19535:30;19601:34;19581:18;;;19574:62;-1:-1:-1;;;19652:18:1;;;19645:45;19707:19;;35551:57:0;19495:237:1;2825:173:0;2900:6;;;-1:-1:-1;;;;;2917:17:0;;;-1:-1:-1;;;;;;2917:17:0;;;;;;;2950:40;;2900:6;;;2917:17;2900:6;;2950:40;;2881:16;;2950:40;2825:173;;:::o;45532:961::-;45687:4;-1:-1:-1;;;;;45708:13:0;;20341:20;20389:8;45704:782;;45757:155;;-1:-1:-1;;;45757:155:0;;-1:-1:-1;;;;;45757:36:0;;;;;:155;;681:10;;45843:4;;45866:7;;45892:5;;45757:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45757:155:0;;;;;;;;-1:-1:-1;;45757:155:0;;;;;;;;;;;;:::i;:::-;;;45740:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46099:13:0;;46095:321;;46142:109;;-1:-1:-1;;;46142:109:0;;;;;;;:::i;46095:321::-;46366:6;46360:13;46351:6;46347:2;46343:15;46336:38;45740:691;-1:-1:-1;;;;;;45976:55:0;-1:-1:-1;;;45976:55:0;;-1:-1:-1;45969:62:0;;45704:782;-1:-1:-1;46470:4:0;45704:782;45532:961;;;;;;:::o;48625:100::-;48677:13;48710:7;48703:14;;;;;:::i;27358:723::-;27414:13;27635:10;27631:53;;-1:-1:-1;27662:10:0;;;;;;;;;;;;-1:-1:-1;;;27662:10:0;;;;;;27631:53;27709:5;27694:12;27750:78;27757:9;;27750:78;;27783:8;;;;:::i;:::-;;-1:-1:-1;27806:10:0;;-1:-1:-1;27814:2:0;27806:10;;:::i;:::-;;;27750:78;;;27838:19;27870:6;27860:17;;;;;;-1:-1:-1;;;27860:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27860:17:0;;27838:39;;27888:154;27895:10;;27888:154;;27922:11;27932:1;27922:11;;:::i;:::-;;-1:-1:-1;27991:10:0;27999:2;27991:5;:10;:::i;:::-;27978:24;;:2;:24;:::i;:::-;27965:39;;27948:6;27955;27948:14;;;;;;-1:-1:-1;;;27948:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;27948:56:0;;;;;;;;-1:-1:-1;28019:11:0;28028:2;28019:11;;:::i;:::-;;;27888:154;;34672:266;34733:7;-1:-1:-1;;;;;34775:19:0;;34753:118;;;;-1:-1:-1;;;34753:118:0;;10197:2:1;34753:118:0;;;10179:21:1;10236:2;10216:18;;;10209:30;10275:34;10255:18;;;10248:62;-1:-1:-1;;;10326:18:1;;;10319:47;10383:19;;34753:118:0;10169:239:1;34753:118:0;-1:-1:-1;;;;;;34897:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;34897:32:0;;-1:-1:-1;;;;;34897:32:0;;34672:266::o;40184:1400::-;40307:20;40330:12;-1:-1:-1;;;;;40361:16:0;;40353:62;;;;-1:-1:-1;;;40353:62:0;;17587:2:1;40353:62:0;;;17569:21:1;17626:2;17606:18;;;17599:30;17665:34;17645:18;;;17638:62;-1:-1:-1;;;17716:18:1;;;17709:31;17757:19;;40353:62:0;17559:223:1;40353:62:0;40560:21;40568:12;39655:4;39689:12;-1:-1:-1;39679:22:0;39598:111;40560:21;40559:22;40551:64;;;;-1:-1:-1;;;40551:64:0;;17229:2:1;40551:64:0;;;17211:21:1;17268:2;17248:18;;;17241:30;17307:31;17287:18;;;17280:59;17356:18;;40551:64:0;17201:179:1;40551:64:0;40646:12;40634:8;:24;;40626:71;;;;-1:-1:-1;;;40626:71:0;;20353:2:1;40626:71:0;;;20335:21:1;20392:2;20372:18;;;20365:30;20431:34;20411:18;;;20404:62;-1:-1:-1;;;20482:18:1;;;20475:32;20524:19;;40626:71:0;20325:224:1;40626:71:0;-1:-1:-1;;;;;40817:16:0;;40784:30;40817:16;;;:12;:16;;;;;;;;;40784:49;;;;;;;;;-1:-1:-1;;;;;40784:49:0;;;;;-1:-1:-1;;;40784:49:0;;;;;;;;;;;40863:135;;;;;;;;40889:19;;40784:49;;40863:135;;;40889:39;;40919:8;;40889:39;:::i;:::-;-1:-1:-1;;;;;40863:135:0;;;;;40978:8;40943:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;40863:135:0;;;;;;-1:-1:-1;;;;;40844:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;40844:154:0;;;;;;;;;;;;41037:43;;;;;;;;;;;41063:15;41037:43;;;;;;;;41009:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;41009:71:0;-1:-1:-1;;;;;;41009:71:0;;;;;;;;;;;;;;;;;;41021:12;;41141:325;41165:8;41161:1;:12;41141:325;;;41200:38;;41225:12;;-1:-1:-1;;;;;41200:38:0;;;41217:1;;41200:38;;41217:1;;41200:38;41279:59;41310:1;41314:2;41318:12;41332:5;41279:22;:59::i;:::-;41253:172;;;;-1:-1:-1;;;41253:172:0;;;;;;;:::i;:::-;41440:14;;;;:::i;:::-;;;;41175:3;;;;;:::i;:::-;;;;41141:325;;;-1:-1:-1;41478:12:0;:27;;;41516:60;38988:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:196;;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;;;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;;;;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;;;;;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;;;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;;;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:642::-;;;3496:2;3484:9;3475:7;3471:23;3467:32;3464:2;;;3517:6;3509;3502:22;3464:2;3562:9;3549:23;3591:18;3632:2;3624:6;3621:14;3618:2;;;3653:6;3645;3638:22;3618:2;3696:6;3685:9;3681:22;3671:32;;3741:7;3734:4;3730:2;3726:13;3722:27;3712:2;;3768:6;3760;3753:22;3712:2;3813;3800:16;3839:2;3831:6;3828:14;3825:2;;;3860:6;3852;3845:22;3825:2;3910:7;3905:2;3896:6;3892:2;3888:15;3884:24;3881:37;3878:2;;;3936:6;3928;3921:22;3878:2;3972;3964:11;;;;;3994:6;;-1:-1:-1;3454:552:1;;-1:-1:-1;;;;3454:552:1:o;4011:190::-;;4123:2;4111:9;4102:7;4098:23;4094:32;4091:2;;;4144:6;4136;4129:22;4091:2;-1:-1:-1;4172:23:1;;4081:120;-1:-1:-1;4081:120:1:o;4206:257::-;;4285:5;4279:12;4312:6;4307:3;4300:19;4328:63;4384:6;4377:4;4372:3;4368:14;4361:4;4354:5;4350:16;4328:63;:::i;:::-;4445:2;4424:15;-1:-1:-1;;4420:29:1;4411:39;;;;4452:4;4407:50;;4255:208;-1:-1:-1;;4255:208:1:o;4468:470::-;;4685:6;4679:13;4701:53;4747:6;4742:3;4735:4;4727:6;4723:17;4701:53;:::i;:::-;4817:13;;4776:16;;;;4839:57;4817:13;4776:16;4873:4;4861:17;;4839:57;:::i;:::-;4912:20;;4655:283;-1:-1:-1;;;;4655:283:1:o;5741:488::-;-1:-1:-1;;;;;6010:15:1;;;5992:34;;6062:15;;6057:2;6042:18;;6035:43;6109:2;6094:18;;6087:34;;;6157:3;6152:2;6137:18;;6130:31;;;5741:488;;6178:45;;6203:19;;6195:6;6178:45;:::i;:::-;6170:53;5944:285;-1:-1:-1;;;;;;5944:285:1:o;6992:393::-;;7151:2;7140:9;7133:21;7190:6;7185:2;7174:9;7170:18;7163:34;7247:6;7239;7234:2;7223:9;7219:18;7206:48;7274:22;;;7298:2;7270:31;;;7263:45;;;;7369:2;7348:15;;;-1:-1:-1;;7344:29:1;7329:45;7325:54;;7123:262;-1:-1:-1;7123:262:1:o;7390:219::-;;7539:2;7528:9;7521:21;7559:44;7599:2;7588:9;7584:18;7576:6;7559:44;:::i;12729:356::-;12931:2;12913:21;;;12950:18;;;12943:30;13009:34;13004:2;12989:18;;12982:62;13076:2;13061:18;;12903:182::o;13495:405::-;13697:2;13679:21;;;13736:2;13716:18;;;13709:30;13775:34;13770:2;13755:18;;13748:62;-1:-1:-1;;;13841:2:1;13826:18;;13819:39;13890:3;13875:19;;13669:231::o;15095:402::-;15297:2;15279:21;;;15336:2;15316:18;;;15309:30;15375:34;15370:2;15355:18;;15348:62;-1:-1:-1;;;15441:2:1;15426:18;;15419:36;15487:3;15472:19;;15269:228::o;16607:415::-;16809:2;16791:21;;;16848:2;16828:18;;;16821:30;16887:34;16882:2;16867:18;;16860:62;-1:-1:-1;;;16953:2:1;16938:18;;16931:49;17012:3;16997:19;;16781:241::o;21103:253::-;;-1:-1:-1;;;;;21232:2:1;21229:1;21225:10;21262:2;21259:1;21255:10;21293:3;21289:2;21285:12;21280:3;21277:21;21274:2;;;21301:18;;:::i;21361:128::-;;21432:1;21428:6;21425:1;21422:13;21419:2;;;21438:18;;:::i;:::-;-1:-1:-1;21474:9:1;;21409:80::o;21494:120::-;;21560:1;21550:2;;21565:18;;:::i;:::-;-1:-1:-1;21599:9:1;;21540:74::o;21619:168::-;;21725:1;21721;21717:6;21713:14;21710:1;21707:21;21702:1;21695:9;21688:17;21684:45;21681:2;;;21732:18;;:::i;:::-;-1:-1:-1;21772:9:1;;21671:116::o;21792:246::-;;-1:-1:-1;;;;;21945:10:1;;;;21915;;21967:12;;;21964:2;;;21982:18;;:::i;:::-;22019:13;;21841:197;-1:-1:-1;;;21841:197:1:o;22043:125::-;;22111:1;22108;22105:8;22102:2;;;22116:18;;:::i;:::-;-1:-1:-1;22153:9:1;;22092:76::o;22173:258::-;22245:1;22255:113;22269:6;22266:1;22263:13;22255:113;;;22345:11;;;22339:18;22326:11;;;22319:39;22291:2;22284:10;22255:113;;;22386:6;22383:1;22380:13;22377:2;;;-1:-1:-1;;22421:1:1;22403:16;;22396:27;22226:205::o;22436:136::-;;22503:5;22493:2;;22512:18;;:::i;:::-;-1:-1:-1;;;22548:18:1;;22483:89::o;22577:380::-;22656:1;22652:12;;;;22699;;;22720:2;;22774:4;22766:6;22762:17;22752:27;;22720:2;22827;22819:6;22816:14;22796:18;22793:38;22790:2;;;22873:10;22868:3;22864:20;22861:1;22854:31;22908:4;22905:1;22898:15;22936:4;22933:1;22926:15;22790:2;;22632:325;;;:::o;22962:135::-;;-1:-1:-1;;23022:17:1;;23019:2;;;23042:18;;:::i;:::-;-1:-1:-1;23089:1:1;23078:13;;23009:88::o;23102:112::-;;23160:1;23150:2;;23165:18;;:::i;:::-;-1:-1:-1;23199:9:1;;23140:74::o;23219:127::-;23280:10;23275:3;23271:20;23268:1;23261:31;23311:4;23308:1;23301:15;23335:4;23332:1;23325:15;23351:127;23412:10;23407:3;23403:20;23400:1;23393:31;23443:4;23440:1;23433:15;23467:4;23464:1;23457:15;23483:127;23544:10;23539:3;23535:20;23532:1;23525:31;23575:4;23572:1;23565:15;23599:4;23596:1;23589:15;23615:131;-1:-1:-1;;;;;;23689:32:1;;23679:43;;23669:2;;23736:1;23733;23726:12

Swarm Source

ipfs://7dc1d8772c10234e71033b075d54f1433fae62147ff37457fed9dc6ec89e805a
Loading...
Loading
Loading...
Loading
[ 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.