ETH Price: $3,058.31 (-7.42%)
Gas: 18 Gwei

Token

Seelies (SEELIES)
 

Overview

Max Total Supply

3,757 SEELIES

Holders

1,353

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SEELIES
0x387dc443d9944f36b74fe3e6ea0eeb4e2a17e1ef
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:
Seelies

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-20
*/

// SPDX-License-Identifier: MIT
// Creator: lohko.io

pragma solidity >=0.8.17;


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs




// ERC721A Contracts v3.3.0
// Creator: Chiru Labs




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




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



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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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


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





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


/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

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



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


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



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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


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



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


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




// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)



/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}


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





/**
 * @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 extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)




// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)





/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}


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





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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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



// OpenZeppelin Contracts (last updated v4.8.0) (finance/PaymentSplitter.sol)




// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)




// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)



/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)



/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
 * time of contract deployment and can't be updated thereafter.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Getter for the amount of payee's releasable Ether.
     */
    function releasable(address account) public view returns (uint256) {
        uint256 totalReceived = address(this).balance + totalReleased();
        return _pendingPayment(account, totalReceived, released(account));
    }

    /**
     * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
     * IERC20 contract.
     */
    function releasable(IERC20 token, address account) public view returns (uint256) {
        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        return _pendingPayment(account, totalReceived, released(token, account));
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _totalReleased is the sum of all values in _released.
        // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow.
        _totalReleased += payment;
        unchecked {
            _released[account] += payment;
        }

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 payment = releasable(token, account);

        require(payment != 0, "PaymentSplitter: account is not due payment");

        // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token].
        // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment"
        // cannot overflow.
        _erc20TotalReleased[token] += payment;
        unchecked {
            _erc20Released[token][account] += payment;
        }

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)



/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


contract Seelies is Ownable, ERC721A, ERC2981, PaymentSplitter {
    using Strings for uint256;

    /*//////////////////////////////////////////////////////////////
                                CONSTANTS
    //////////////////////////////////////////////////////////////*/

    uint256 public constant maxSupplyCap = 3888;

    uint256 public constant publicSupplyCap = 3700;
    uint256 public constant maxTokensPerTx = 3;
    uint256 public constant price = 0.019 ether;

    uint256 public constant whitelistSupplyCap = 3000;
    uint256 public constant maxWhitelistTokensPerAddr = 3;
    uint256 public constant whitelistPrice = 0.014 ether;

    /*//////////////////////////////////////////////////////////////
                                VARIABLES
    //////////////////////////////////////////////////////////////*/

    uint32 public whitelistSaleStart;
    uint32 public publicSaleStart;
    uint32 public enchantedClaimStart;
    uint32 public enchantedClaimEnd;

    bytes32 public merkleRoot;

    bool public revealed;

    string private _baseTokenURI;
    string private notRevealedUri;

    mapping(address => bool) public enchantedClaimed;

    /*//////////////////////////////////////////////////////////////
                                 ERRORS
    //////////////////////////////////////////////////////////////*/

    error SaleNotStarted();
    error ClaimClosed();
    error InvalidProof();
    error QuantityOffLimits();
    error MaxSupplyReached();
    error InsufficientFunds();
    error AlreadyClaimed();
    error InvalidInput();
    error NonExistentTokenURI();

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _initNotRevealedUri,
        address[] memory payees_,
        uint256[] memory shares_
    ) ERC721A("Seelies", "SEELIES") PaymentSplitter(payees_, shares_) {
        notRevealedUri = _initNotRevealedUri;
        _mint(msg.sender, 1);
    }

    /*//////////////////////////////////////////////////////////////
                            MINTING LOGIC
    //////////////////////////////////////////////////////////////*/

    function whitelistMint(uint256 quantity, bytes32[] memory proof)
        external
        payable
    {
        // If minting has not started, revert.
        if (block.timestamp < whitelistSaleStart) revert SaleNotStarted();

        // If provided proof is invalid, revert.
        if (
            !(
                MerkleProof.verify(
                    proof,
                    merkleRoot,
                    keccak256(abi.encodePacked(msg.sender))
                )
            )
        ) revert InvalidProof();

        // If supply cap is reached, revert.
        if (_totalMinted() + quantity > whitelistSupplyCap)
            revert MaxSupplyReached();

        // If provided value doesn't match with the price, revert.
        if (msg.value != whitelistPrice * quantity) revert InsufficientFunds();

        // If provided quantity is outside of predefined limits, revert.
        if (quantity == 0 || quantity > maxTokensPerTx)
            revert QuantityOffLimits();

        // If the user has already claimed their tokens, revert.
        uint64 _mintSlotsUsed = _getAux(msg.sender) + uint64(quantity);
        if (_mintSlotsUsed > maxWhitelistTokensPerAddr) revert AlreadyClaimed();

        _setAux(msg.sender, _mintSlotsUsed);

        _mint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable {
        // If public minting has not started by reaching timestamp or minting out the whitelist supply, revert.
        if (
            _totalMinted() < whitelistSupplyCap &&
            block.timestamp < publicSaleStart
        ) {
            revert SaleNotStarted();
        }

        // If provided value doesn't match with the price, revert.
        if (msg.value != price * quantity) revert InsufficientFunds();

        // If provided quantity is outside of predefined limits, revert.
        if (quantity == 0 || quantity > maxTokensPerTx)
            revert QuantityOffLimits();

        // If enchanted claim is not ended, cap the supply to public max. If yes, free the rest of the supply for public.
        if (block.timestamp < enchantedClaimEnd) {
            if (_totalMinted() + quantity > publicSupplyCap)
                revert MaxSupplyReached();
        } else {
            if (_totalMinted() + quantity > maxSupplyCap)
                revert MaxSupplyReached();
        }

        _mint(msg.sender, quantity);
    }

    function enchantedClaim(bytes32[] memory proof) external payable {
        // If claiming has not started, revert.
        if (
            block.timestamp < enchantedClaimStart ||
            block.timestamp > enchantedClaimEnd
        ) revert ClaimClosed();

        // If provided proof is invalid, revert.
        if (
            !(
                MerkleProof.verify(
                    proof,
                    merkleRoot,
                    keccak256(abi.encodePacked(msg.sender))
                )
            )
        ) revert InvalidProof();

        // If supply cap is reached, revert.
        if (_totalMinted() + 1 > maxSupplyCap) revert MaxSupplyReached();

        // If the user has already claimed their tokens, revert.
        if (enchantedClaimed[msg.sender]) revert AlreadyClaimed();

        enchantedClaimed[msg.sender] = true;

        _mint(msg.sender, 1);
    }

    /*//////////////////////////////////////////////////////////////
                            FRONTEND HELPERS
    //////////////////////////////////////////////////////////////*/

    function isWhitelistOpen() public view returns (bool) {
        return block.timestamp < whitelistSaleStart ? false : true;
    }

    function isPublicOpen() public view returns (bool) {
        return block.timestamp < publicSaleStart ? false : true;
    }

    function isEnchantedStarted() public view returns (bool) {
        return block.timestamp < enchantedClaimStart ? false : true;
    }

    function isEnchantedOver() public view returns (bool) {
        return block.timestamp < enchantedClaimEnd ? false : true;
    }

    function earlyClaimed(address user) public view returns (uint256) {
        return _getAux(user);
    }

    function mintedByAddr(address addr) external view returns (uint256) {
        return _numberMinted(addr);
    }

    function totalMinted() external view virtual returns (uint256) {
        return _totalMinted();
    }

    /*//////////////////////////////////////////////////////////////
                                ADMIN
    //////////////////////////////////////////////////////////////*/

    function rewardCollaborators(
        address[] calldata receivers,
        uint256[] calldata amounts
    ) external onlyOwner {
        // If there is a mismatch between receivers and amounts lengths, revert.
        if (receivers.length != amounts.length || receivers.length == 0)
            revert InvalidInput();

        for (uint256 i; i < receivers.length; ) {
            // If the supply cap is reached, revert.
            if (_totalMinted() + amounts[i] > maxSupplyCap)
                revert MaxSupplyReached();

            _mint(receivers[i], amounts[i]);

            unchecked {
                ++i;
            }
        }
    }

    function setSaleTimes(
        uint32 _whitelistSaleStart,
        uint32 _publicSaleStart,
        uint32 _enchantedClaimStart,
        uint32 _enchantedClaimEnd
    ) external onlyOwner {
        whitelistSaleStart = _whitelistSaleStart;
        publicSaleStart = _publicSaleStart;
        enchantedClaimStart = _enchantedClaimStart;
        enchantedClaimEnd = _enchantedClaimEnd;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

    function setDefaultRoyalty(address receiver, uint96 feeNumerator)
        external
        onlyOwner
    {
        _setDefaultRoyalty(receiver, feeNumerator);
    }

    function deleteDefaultRoyalty() external onlyOwner {
        _deleteDefaultRoyalty();
    }

    /*//////////////////////////////////////////////////////////////
                                OVERRIDES
    //////////////////////////////////////////////////////////////*/

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert NonExistentTokenURI();
        if (revealed == false) {
            return notRevealedUri;
        }
        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
                : "";
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"address[]","name":"payees_","type":"address[]"},{"internalType":"uint256[]","name":"shares_","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ClaimClosed","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidInput","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NonExistentTokenURI","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"QuantityOffLimits","type":"error"},{"inputs":[],"name":"SaleNotStarted","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"earlyClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"enchantedClaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"enchantedClaimEnd","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enchantedClaimStart","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"enchantedClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEnchantedOver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isEnchantedStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistTokensPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"mintedByAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupplyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"rewardCollaborators","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_whitelistSaleStart","type":"uint32"},{"internalType":"uint32","name":"_publicSaleStart","type":"uint32"},{"internalType":"uint32","name":"_enchantedClaimStart","type":"uint32"},{"internalType":"uint32","name":"_enchantedClaimEnd","type":"uint32"}],"name":"setSaleTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleStart","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSupplyCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620045d9380380620045d98339810160408190526200003491620006d8565b8181604051806040016040528060078152602001665365656c69657360c81b815250604051806040016040528060078152602001665345454c49455360c81b815250620000906200008a6200020f60201b60201c565b62000213565b60036200009e838262000869565b506004620000ad828262000869565b506001805550508051825114620001265760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001795760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200011d565b60005b8251811015620001e557620001d08382815181106200019f576200019f62000935565b6020026020010151838381518110620001bc57620001bc62000935565b60200260200101516200026360201b60201c565b80620001dc8162000961565b9150506200017c565b5060169150620001f89050848262000869565b506200020633600162000451565b50505062000999565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002d05760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200011d565b60008111620003225760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200011d565b6001600160a01b0382166000908152600d6020526040902054156200039e5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200011d565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b54620004089082906200097d565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6001546001600160a01b0383166200047b57604051622e076360e81b815260040160405180910390fd5b816000036200049d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080546001600160801b031981166001600160401b038083168a018116918217680100000000000000006001600160401b031990941690921783900481168a01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106200052f57506001555b505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620005be57620005be6200057d565b604052919050565b60006001600160401b03821115620005e257620005e26200057d565b5060051b60200190565b600082601f830112620005fe57600080fd5b81516020620006176200061183620005c6565b62000593565b82815260059290921b840181019181810190868411156200063757600080fd5b8286015b848110156200066b5780516001600160a01b03811681146200065d5760008081fd5b83529183019183016200063b565b509695505050505050565b600082601f8301126200068857600080fd5b815160206200069b6200061183620005c6565b82815260059290921b84018101918181019086841115620006bb57600080fd5b8286015b848110156200066b5780518352918301918301620006bf565b600080600060608486031215620006ee57600080fd5b83516001600160401b03808211156200070657600080fd5b818601915086601f8301126200071b57600080fd5b8151818111156200073057620007306200057d565b602062000746601f8301601f1916820162000593565b82815289828487010111156200075b57600080fd5b60005b838110156200077b5785810183015182820184015282016200075e565b5060009281018201929092528701519095509150808211156200079d57600080fd5b620007ab87838801620005ec565b93506040860151915080821115620007c257600080fd5b50620007d18682870162000676565b9150509250925092565b600181811c90821680620007f057607f821691505b6020821081036200081157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200057857600081815260208120601f850160051c81016020861015620008405750805b601f850160051c820191505b8181101562000861578281556001016200084c565b505050505050565b81516001600160401b038111156200088557620008856200057d565b6200089d81620008968454620007db565b8462000817565b602080601f831160018114620008d55760008415620008bc5750858301515b600019600386901b1c1916600185901b17855562000861565b600085815260208120601f198616915b828110156200090657888601518255948401946001909101908401620008e5565b5085821015620009255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016200097657620009766200094b565b5060010190565b808201808211156200099357620009936200094b565b92915050565b613c3080620009a96000396000f3fe6080604052600436106103a65760003560e01c80637a5e3418116101e7578063a475b5dd1161010d578063d72eab21116100a0578063ea6617d71161006f578063ea6617d714610b75578063f2c4ce1e14610b95578063f2fde38b14610bb5578063fc1a1c3614610bd557600080fd5b8063d72eab2114610714578063d79779b214610ae1578063e33b7de314610b17578063e985e9c514610b2c57600080fd5b8063c45ac050116100dc578063c45ac05014610a58578063c87b56dd14610a78578063ce7c2ac214610a98578063d2cab05614610ace57600080fd5b8063a475b5dd146109f8578063aa1b103f14610a0d578063b5e6fce614610a22578063b88d4fde14610a3857600080fd5b80639a109dac11610185578063a22cb46511610154578063a22cb46514610947578063a2309ff814610967578063a3857c9d1461097c578063a3f8eace146109d857600080fd5b80639a109dac146108c95780639d70902f146108f95780639fa719b51461090f578063a035b1fe1461092c57600080fd5b80638da5cb5b116101c15780638da5cb5b1461084b57806394f4504d1461086957806395d89b411461087e5780639852595c1461089357600080fd5b80637a5e3418146107eb5780637cb647591461080b5780638b83209b1461082b57600080fd5b80633a98ef39116102cc5780635e307a481161026a57806370a082311161023957806370a082311461078c57806370e508d3146107ac578063715018a6146107c15780637a2e34d6146107d657600080fd5b80635e307a48146107145780635fe4cc7f146107295780636352211e1461075657806368b4cb891461077657600080fd5b806348b75044116102a657806348b750441461069a57806351830227146106ba57806355f804b3146106d45780635de31dcf146106f457600080fd5b80633a98ef391461061f578063406072a91461063457806342842e0e1461067a57600080fd5b806318160ddd116103445780632a55205a116103135780632a55205a146105925780632db11544146105d15780632eb4a7ab146105e45780633360caa0146105fa57600080fd5b806318160ddd14610518578063191655871461053f5780631c93d5b81461055f57806323b872dd1461057257600080fd5b806306fdde031161038057806306fdde0314610489578063081812fc146104ab578063095ea7b3146104e357806311c67efc1461050357600080fd5b806301ffc9a7146103f4578063021605721461042957806304634d8d1461046757600080fd5b366103ef577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561040057600080fd5b5061041461040f3660046131af565b610bf0565b60405190151581526020015b60405180910390f35b34801561043557600080fd5b506012546104529068010000000000000000900463ffffffff1681565b60405163ffffffff9091168152602001610420565b34801561047357600080fd5b506104876104823660046131e1565b610c10565b005b34801561049557600080fd5b5061049e610c26565b604051610420919061327b565b3480156104b757600080fd5b506104cb6104c636600461328e565b610cb8565b6040516001600160a01b039091168152602001610420565b3480156104ef57600080fd5b506104876104fe3660046132a7565b610d15565b34801561050f57600080fd5b50610414610dcd565b34801561052457600080fd5b5060025460015403600019015b604051908152602001610420565b34801561054b57600080fd5b5061048761055a3660046132d3565b610df5565b61048761056d3660046133c5565b610f8d565b34801561057e57600080fd5b5061048761058d3660046133fa565b61116e565b34801561059e57600080fd5b506105b26105ad36600461343b565b611179565b604080516001600160a01b039093168352602083019190915201610420565b6104876105df36600461328e565b611258565b3480156105f057600080fd5b5061053160135481565b34801561060657600080fd5b5060125461045290640100000000900463ffffffff1681565b34801561062b57600080fd5b50600b54610531565b34801561064057600080fd5b5061053161064f36600461345d565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561068657600080fd5b506104876106953660046133fa565b61141d565b3480156106a657600080fd5b506104876106b536600461345d565b611438565b3480156106c657600080fd5b506014546104149060ff1681565b3480156106e057600080fd5b506104876106ef36600461348b565b6115f5565b34801561070057600080fd5b5061048761070f366004613542565b61160a565b34801561072057600080fd5b50610531600381565b34801561073557600080fd5b50601254610452906c01000000000000000000000000900463ffffffff1681565b34801561076257600080fd5b506104cb61077136600461328e565b611723565b34801561078257600080fd5b50610531610e7481565b34801561079857600080fd5b506105316107a73660046132d3565b611735565b3480156107b857600080fd5b5061041461179d565b3480156107cd57600080fd5b506104876117c1565b3480156107e257600080fd5b506104146117d5565b3480156107f757600080fd5b506104876108063660046135c7565b6117fd565b34801561081757600080fd5b5061048761082636600461328e565b6118bb565b34801561083757600080fd5b506104cb61084636600461328e565b6118c8565b34801561085757600080fd5b506000546001600160a01b03166104cb565b34801561087557600080fd5b506104146118f8565b34801561088a57600080fd5b5061049e611910565b34801561089f57600080fd5b506105316108ae3660046132d3565b6001600160a01b03166000908152600e602052604090205490565b3480156108d557600080fd5b506104146108e43660046132d3565b60176020526000908152604090205460ff1681565b34801561090557600080fd5b50610531610f3081565b34801561091b57600080fd5b506012546104529063ffffffff1681565b34801561093857600080fd5b50610531664380663abb800081565b34801561095357600080fd5b50610487610962366004613629565b61191f565b34801561097357600080fd5b506105316119eb565b34801561098857600080fd5b506105316109973660046132d3565b6001600160a01b03166000908152600660205260409020547801000000000000000000000000000000000000000000000000900467ffffffffffffffff1690565b3480156109e457600080fd5b506105316109f33660046132d3565b6119fa565b348015610a0457600080fd5b50610487611a42565b348015610a1957600080fd5b50610487611a77565b348015610a2e57600080fd5b50610531610bb881565b348015610a4457600080fd5b50610487610a533660046136af565b611a89565b348015610a6457600080fd5b50610531610a7336600461345d565b611aec565b348015610a8457600080fd5b5061049e610a9336600461328e565b611bd0565b348015610aa457600080fd5b50610531610ab33660046132d3565b6001600160a01b03166000908152600d602052604090205490565b610487610adc36600461372f565b611d0d565b348015610aed57600080fd5b50610531610afc3660046132d3565b6001600160a01b031660009081526010602052604090205490565b348015610b2357600080fd5b50600c54610531565b348015610b3857600080fd5b50610414610b4736600461345d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610b8157600080fd5b50610531610b903660046132d3565b611f8b565b348015610ba157600080fd5b50610487610bb0366004613776565b611fbf565b348015610bc157600080fd5b50610487610bd03660046132d3565b611fd3565b348015610be157600080fd5b506105316631bced02db000081565b6000610bfb82612060565b80610c0a5750610c0a82612143565b92915050565b610c18612199565b610c2282826121f3565b5050565b606060038054610c35906137bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c61906137bf565b8015610cae5780601f10610c8357610100808354040283529160200191610cae565b820191906000526020600020905b815481529060010190602001808311610c9157829003601f168201915b5050505050905090565b6000610cc38261231e565b610cf9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610d2082611723565b9050806001600160a01b0316836001600160a01b031603610d6d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610dbd57610d878133610b47565b610dbd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dc8838383612370565b505050565b601254600090640100000000900463ffffffff164210610ded5750600190565b60005b905090565b6001600160a01b0381166000908152600d6020526040902054610e855760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6000610e90826119fa565b905080600003610f085760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610e7c565b80600c6000828254610f1a9190613841565b90915550506001600160a01b0382166000908152600e60205260409020805482019055610f4782826123e4565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b60125468010000000000000000900463ffffffff16421080610fc657506012546c01000000000000000000000000900463ffffffff1642115b15610ffd576040517ff6e8504100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6013546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526110539183916034015b604051602081830303815290604052805190602001206124fd565b611089576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f306110996001546000190190565b6110a4906001613841565b11156110dc576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526017602052604090205460ff1615611126576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260176020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915561116b9190612513565b50565b610dc88383836126c8565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff1692820192909252829161121a5750604080518082019091526009546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b60208101516000906127109061123e906bffffffffffffffffffffffff1687613854565b611248919061386b565b91519350909150505b9250929050565b610bb86112686001546000190190565b1080156112845750601254640100000000900463ffffffff1642105b156112bb576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112cc81664380663abb8000613854565b3414611304576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015806113115750600381115b15611348576040517f65ed98f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6012546c01000000000000000000000000900463ffffffff164210156113c057610e74816113796001546000190190565b6113839190613841565b11156113bb576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611413565b610f30816113d16001546000190190565b6113db9190613841565b1115611413576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61116b3382612513565b610dc883838360405180602001604052806000815250611a89565b6001600160a01b0381166000908152600d60205260409020546114c35760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610e7c565b60006114cf8383611aec565b9050806000036115475760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610e7c565b6001600160a01b0383166000908152601060205260408120805483929061156f908490613841565b90915550506001600160a01b0380841660009081526011602090815260408083209386168352929052208054820190556115aa83838361296a565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b6115fd612199565b6015610dc88284836138f4565b611612612199565b828114158061161f575082155b15611656576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8381101561171c57610f30838383818110611676576116766139b4565b9050602002013561168a6001546000190190565b6116949190613841565b11156116cc576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117148585838181106116e1576116e16139b4565b90506020020160208101906116f691906132d3565b848484818110611708576117086139b4565b90506020020135612513565b600101611659565b5050505050565b600061172e826129ea565b5192915050565b60006001600160a01b038216611777576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b60125460009068010000000000000000900463ffffffff164210610ded5750600190565b6117c9612199565b6117d36000612b7b565b565b6012546000906c01000000000000000000000000900463ffffffff164210610ded5750600190565b611805612199565b6012805463ffffffff9586167fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009091161764010000000094861694909402939093177fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff1668010000000000000000928516929092027fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff16919091176c010000000000000000000000009190931602919091179055565b6118c3612199565b601355565b6000600f82815481106118dd576118dd6139b4565b6000918252602090912001546001600160a01b031692915050565b60125460009063ffffffff164210610ded5750600190565b606060048054610c35906137bf565b336001600160a01b03831603611961576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610df06001546000190190565b600080611a06600c5490565b611a109047613841565b9050611a3b8382611a36866001600160a01b03166000908152600e602052604090205490565b612be3565b9392505050565b611a4a612199565b601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b611a7f612199565b6117d36000600955565b611a948484846126c8565b6001600160a01b0383163b15611ae657611ab084848484612c21565b611ae6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6001600160a01b03821660009081526010602052604081205481906040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611b64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8891906139e3565b611b929190613841565b6001600160a01b03808616600090815260116020908152604080832093881683529290522054909150611bc89084908390612be3565b949350505050565b6060611bdb8261231e565b611c11576040517fd872946b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60145460ff161515600003611cb25760168054611c2d906137bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611c59906137bf565b8015611ca65780601f10611c7b57610100808354040283529160200191611ca6565b820191906000526020600020905b815481529060010190602001808311611c8957829003601f168201915b50505050509050919050565b6000611cbc612d6f565b90506000815111611cdc5760405180602001604052806000815250611a3b565b80611ce684612d7e565b604051602001611cf79291906139fc565b6040516020818303038152906040529392505050565b60125463ffffffff16421015611d4f576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6013546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152611d8e918391603401611038565b611dc4576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb882611dd56001546000190190565b611ddf9190613841565b1115611e17576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e28826631bced02db0000613854565b3414611e60576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b811580611e6d5750600382115b15611ea4576040517f65ed98f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526006602052604081205483907801000000000000000000000000000000000000000000000000900467ffffffffffffffff16611ee69190613a53565b905060038167ffffffffffffffff161115611f2d576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600660205260409020805477ffffffffffffffffffffffffffffffffffffffffffffffff16780100000000000000000000000000000000000000000000000067ffffffffffffffff841602179055610dc83384612513565b6001600160a01b03811660009081526006602052604081205468010000000000000000900467ffffffffffffffff16610c0a565b611fc7612199565b6016610c228282613a7b565b611fdb612199565b6001600160a01b0381166120575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e7c565b61116b81612b7b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806120f357507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610c0a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610c0a5750610c0a82612060565b6000546001600160a01b031633146117d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e7c565b6127106bffffffffffffffffffffffff821611156122795760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610e7c565b6001600160a01b0382166122cf5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610e7c565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600955565b600081600111158015612332575060015482105b8015610c0a5750506000908152600560205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526007602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b804710156124345760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e7c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612481576040519150601f19603f3d011682016040523d82523d6000602084013e612486565b606091505b5050905080610dc85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e7c565b60008261250a8584612e1e565b14949350505050565b6001546001600160a01b038316612556576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003612590576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168a018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168a01811690920217909155858452600590925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061267c5750600155505050565b60006126d3826129ea565b9050836001600160a01b031681600001516001600160a01b031614612724576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061274257506127428533610b47565b8061275d57503361275284610cb8565b6001600160a01b0316145b905080612796576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166127d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127e260008487612370565b6001600160a01b03858116600090815260066020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612921576001548214612921578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461171c565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610dc8908490612e6b565b60408051606081018252600080825260208201819052918101919091528180600111612b4957600154811015612b4957600081815260056020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905290612b475780516001600160a01b031615612ab3579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215612b42579392505050565b612ab3565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b546001600160a01b0384166000908152600d602052604081205490918391612c0d9086613854565b612c17919061386b565b611bc89190613b3b565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290612c6f903390899088908890600401613b4e565b6020604051808303816000875af1925050508015612caa575060408051601f3d908101601f19168201909252612ca791810190613b8a565b60015b612d21573d808015612cd8576040519150601f19603f3d011682016040523d82523d6000602084013e612cdd565b606091505b508051600003612d19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b606060158054610c35906137bf565b60606000612d8b83612f50565b600101905060008167ffffffffffffffff811115612dab57612dab6132f0565b6040519080825280601f01601f191660200182016040528015612dd5576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084612ddf57509392505050565b600081815b8451811015612e6357612e4f82868381518110612e4257612e426139b4565b6020026020010151613032565b915080612e5b81613ba7565b915050612e23565b509392505050565b6000612ec0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661305e9092919063ffffffff16565b805190915015610dc85780806020019051810190612ede9190613bc1565b610dc85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610e7c565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f99577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612fc5576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612fe357662386f26fc10000830492506010015b6305f5e1008310612ffb576305f5e100830492506008015b612710831061300f57612710830492506004015b60648310613021576064830492506002015b600a8310610c0a5760010192915050565b600081831061304e576000828152602084905260409020611a3b565b5060009182526020526040902090565b6060611bc8848460008585600080866001600160a01b031685876040516130859190613bde565b60006040518083038185875af1925050503d80600081146130c2576040519150601f19603f3d011682016040523d82523d6000602084013e6130c7565b606091505b50915091506130d8878383876130e3565b979650505050505050565b6060831561315257825160000361314b576001600160a01b0385163b61314b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e7c565b5081611bc8565b611bc883838151156131675781518083602001fd5b8060405162461bcd60e51b8152600401610e7c919061327b565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461116b57600080fd5b6000602082840312156131c157600080fd5b8135611a3b81613181565b6001600160a01b038116811461116b57600080fd5b600080604083850312156131f457600080fd5b82356131ff816131cc565b915060208301356bffffffffffffffffffffffff8116811461322057600080fd5b809150509250929050565b60005b8381101561324657818101518382015260200161322e565b50506000910152565b6000815180845261326781602086016020860161322b565b601f01601f19169290920160200192915050565b602081526000611a3b602083018461324f565b6000602082840312156132a057600080fd5b5035919050565b600080604083850312156132ba57600080fd5b82356132c5816131cc565b946020939093013593505050565b6000602082840312156132e557600080fd5b8135611a3b816131cc565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613348576133486132f0565b604052919050565b600082601f83011261336157600080fd5b8135602067ffffffffffffffff82111561337d5761337d6132f0565b8160051b61338c82820161331f565b92835284810182019282810190878511156133a657600080fd5b83870192505b848310156130d8578235825291830191908301906133ac565b6000602082840312156133d757600080fd5b813567ffffffffffffffff8111156133ee57600080fd5b611bc884828501613350565b60008060006060848603121561340f57600080fd5b833561341a816131cc565b9250602084013561342a816131cc565b929592945050506040919091013590565b6000806040838503121561344e57600080fd5b50508035926020909101359150565b6000806040838503121561347057600080fd5b823561347b816131cc565b91506020830135613220816131cc565b6000806020838503121561349e57600080fd5b823567ffffffffffffffff808211156134b657600080fd5b818501915085601f8301126134ca57600080fd5b8135818111156134d957600080fd5b8660208285010111156134eb57600080fd5b60209290920196919550909350505050565b60008083601f84011261350f57600080fd5b50813567ffffffffffffffff81111561352757600080fd5b6020830191508360208260051b850101111561125157600080fd5b6000806000806040858703121561355857600080fd5b843567ffffffffffffffff8082111561357057600080fd5b61357c888389016134fd565b9096509450602087013591508082111561359557600080fd5b506135a2878288016134fd565b95989497509550505050565b803563ffffffff811681146135c257600080fd5b919050565b600080600080608085870312156135dd57600080fd5b6135e6856135ae565b93506135f4602086016135ae565b9250613602604086016135ae565b9150613610606086016135ae565b905092959194509250565b801515811461116b57600080fd5b6000806040838503121561363c57600080fd5b8235613647816131cc565b915060208301356132208161361b565b600067ffffffffffffffff831115613671576136716132f0565b6136846020601f19601f8601160161331f565b905082815283838301111561369857600080fd5b828260208301376000602084830101529392505050565b600080600080608085870312156136c557600080fd5b84356136d0816131cc565b935060208501356136e0816131cc565b925060408501359150606085013567ffffffffffffffff81111561370357600080fd5b8501601f8101871361371457600080fd5b61372387823560208401613657565b91505092959194509250565b6000806040838503121561374257600080fd5b82359150602083013567ffffffffffffffff81111561376057600080fd5b61376c85828601613350565b9150509250929050565b60006020828403121561378857600080fd5b813567ffffffffffffffff81111561379f57600080fd5b8201601f810184136137b057600080fd5b611bc884823560208401613657565b600181811c908216806137d357607f821691505b60208210810361380c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610c0a57610c0a613812565b8082028115828204841417610c0a57610c0a613812565b6000826138a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b601f821115610dc857600081815260208120601f850160051c810160208610156138cd5750805b601f850160051c820191505b818110156138ec578281556001016138d9565b505050505050565b67ffffffffffffffff83111561390c5761390c6132f0565b6139208361391a83546137bf565b836138a6565b6000601f841160018114613954576000851561393c5750838201355b600019600387901b1c1916600186901b17835561171c565b600083815260209020601f19861690835b828110156139855786850135825560209485019460019092019101613965565b50868210156139a25760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156139f557600080fd5b5051919050565b60008351613a0e81846020880161322b565b835190830190613a2281836020880161322b565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b67ffffffffffffffff818116838216019080821115613a7457613a74613812565b5092915050565b815167ffffffffffffffff811115613a9557613a956132f0565b613aa981613aa384546137bf565b846138a6565b602080601f831160018114613ade5760008415613ac65750858301515b600019600386901b1c1916600185901b1785556138ec565b600085815260208120601f198616915b82811015613b0d57888601518255948401946001909101908401613aee565b5085821015613b2b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610c0a57610c0a613812565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b80608083018461324f565b9695505050505050565b600060208284031215613b9c57600080fd5b8151611a3b81613181565b60006000198203613bba57613bba613812565b5060010190565b600060208284031215613bd357600080fd5b8151611a3b8161361b565b60008251613bf081846020870161322b565b919091019291505056fea2646970667358221220ced571e456040659a536661baa34c278395d91a35f52a129b00e39d65ae5ed1464736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6337524b504d72753833435872646b794d714d4c6741365133674c5876717646536e414b766441457042646200000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ae1e589ed4423fda24597166526a76179a63963a000000000000000000000000e34e95f6767ef95c05a5ef98113e2f9c8847f10c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000014

Deployed Bytecode

0x6080604052600436106103a65760003560e01c80637a5e3418116101e7578063a475b5dd1161010d578063d72eab21116100a0578063ea6617d71161006f578063ea6617d714610b75578063f2c4ce1e14610b95578063f2fde38b14610bb5578063fc1a1c3614610bd557600080fd5b8063d72eab2114610714578063d79779b214610ae1578063e33b7de314610b17578063e985e9c514610b2c57600080fd5b8063c45ac050116100dc578063c45ac05014610a58578063c87b56dd14610a78578063ce7c2ac214610a98578063d2cab05614610ace57600080fd5b8063a475b5dd146109f8578063aa1b103f14610a0d578063b5e6fce614610a22578063b88d4fde14610a3857600080fd5b80639a109dac11610185578063a22cb46511610154578063a22cb46514610947578063a2309ff814610967578063a3857c9d1461097c578063a3f8eace146109d857600080fd5b80639a109dac146108c95780639d70902f146108f95780639fa719b51461090f578063a035b1fe1461092c57600080fd5b80638da5cb5b116101c15780638da5cb5b1461084b57806394f4504d1461086957806395d89b411461087e5780639852595c1461089357600080fd5b80637a5e3418146107eb5780637cb647591461080b5780638b83209b1461082b57600080fd5b80633a98ef39116102cc5780635e307a481161026a57806370a082311161023957806370a082311461078c57806370e508d3146107ac578063715018a6146107c15780637a2e34d6146107d657600080fd5b80635e307a48146107145780635fe4cc7f146107295780636352211e1461075657806368b4cb891461077657600080fd5b806348b75044116102a657806348b750441461069a57806351830227146106ba57806355f804b3146106d45780635de31dcf146106f457600080fd5b80633a98ef391461061f578063406072a91461063457806342842e0e1461067a57600080fd5b806318160ddd116103445780632a55205a116103135780632a55205a146105925780632db11544146105d15780632eb4a7ab146105e45780633360caa0146105fa57600080fd5b806318160ddd14610518578063191655871461053f5780631c93d5b81461055f57806323b872dd1461057257600080fd5b806306fdde031161038057806306fdde0314610489578063081812fc146104ab578063095ea7b3146104e357806311c67efc1461050357600080fd5b806301ffc9a7146103f4578063021605721461042957806304634d8d1461046757600080fd5b366103ef577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561040057600080fd5b5061041461040f3660046131af565b610bf0565b60405190151581526020015b60405180910390f35b34801561043557600080fd5b506012546104529068010000000000000000900463ffffffff1681565b60405163ffffffff9091168152602001610420565b34801561047357600080fd5b506104876104823660046131e1565b610c10565b005b34801561049557600080fd5b5061049e610c26565b604051610420919061327b565b3480156104b757600080fd5b506104cb6104c636600461328e565b610cb8565b6040516001600160a01b039091168152602001610420565b3480156104ef57600080fd5b506104876104fe3660046132a7565b610d15565b34801561050f57600080fd5b50610414610dcd565b34801561052457600080fd5b5060025460015403600019015b604051908152602001610420565b34801561054b57600080fd5b5061048761055a3660046132d3565b610df5565b61048761056d3660046133c5565b610f8d565b34801561057e57600080fd5b5061048761058d3660046133fa565b61116e565b34801561059e57600080fd5b506105b26105ad36600461343b565b611179565b604080516001600160a01b039093168352602083019190915201610420565b6104876105df36600461328e565b611258565b3480156105f057600080fd5b5061053160135481565b34801561060657600080fd5b5060125461045290640100000000900463ffffffff1681565b34801561062b57600080fd5b50600b54610531565b34801561064057600080fd5b5061053161064f36600461345d565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b34801561068657600080fd5b506104876106953660046133fa565b61141d565b3480156106a657600080fd5b506104876106b536600461345d565b611438565b3480156106c657600080fd5b506014546104149060ff1681565b3480156106e057600080fd5b506104876106ef36600461348b565b6115f5565b34801561070057600080fd5b5061048761070f366004613542565b61160a565b34801561072057600080fd5b50610531600381565b34801561073557600080fd5b50601254610452906c01000000000000000000000000900463ffffffff1681565b34801561076257600080fd5b506104cb61077136600461328e565b611723565b34801561078257600080fd5b50610531610e7481565b34801561079857600080fd5b506105316107a73660046132d3565b611735565b3480156107b857600080fd5b5061041461179d565b3480156107cd57600080fd5b506104876117c1565b3480156107e257600080fd5b506104146117d5565b3480156107f757600080fd5b506104876108063660046135c7565b6117fd565b34801561081757600080fd5b5061048761082636600461328e565b6118bb565b34801561083757600080fd5b506104cb61084636600461328e565b6118c8565b34801561085757600080fd5b506000546001600160a01b03166104cb565b34801561087557600080fd5b506104146118f8565b34801561088a57600080fd5b5061049e611910565b34801561089f57600080fd5b506105316108ae3660046132d3565b6001600160a01b03166000908152600e602052604090205490565b3480156108d557600080fd5b506104146108e43660046132d3565b60176020526000908152604090205460ff1681565b34801561090557600080fd5b50610531610f3081565b34801561091b57600080fd5b506012546104529063ffffffff1681565b34801561093857600080fd5b50610531664380663abb800081565b34801561095357600080fd5b50610487610962366004613629565b61191f565b34801561097357600080fd5b506105316119eb565b34801561098857600080fd5b506105316109973660046132d3565b6001600160a01b03166000908152600660205260409020547801000000000000000000000000000000000000000000000000900467ffffffffffffffff1690565b3480156109e457600080fd5b506105316109f33660046132d3565b6119fa565b348015610a0457600080fd5b50610487611a42565b348015610a1957600080fd5b50610487611a77565b348015610a2e57600080fd5b50610531610bb881565b348015610a4457600080fd5b50610487610a533660046136af565b611a89565b348015610a6457600080fd5b50610531610a7336600461345d565b611aec565b348015610a8457600080fd5b5061049e610a9336600461328e565b611bd0565b348015610aa457600080fd5b50610531610ab33660046132d3565b6001600160a01b03166000908152600d602052604090205490565b610487610adc36600461372f565b611d0d565b348015610aed57600080fd5b50610531610afc3660046132d3565b6001600160a01b031660009081526010602052604090205490565b348015610b2357600080fd5b50600c54610531565b348015610b3857600080fd5b50610414610b4736600461345d565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b348015610b8157600080fd5b50610531610b903660046132d3565b611f8b565b348015610ba157600080fd5b50610487610bb0366004613776565b611fbf565b348015610bc157600080fd5b50610487610bd03660046132d3565b611fd3565b348015610be157600080fd5b506105316631bced02db000081565b6000610bfb82612060565b80610c0a5750610c0a82612143565b92915050565b610c18612199565b610c2282826121f3565b5050565b606060038054610c35906137bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610c61906137bf565b8015610cae5780601f10610c8357610100808354040283529160200191610cae565b820191906000526020600020905b815481529060010190602001808311610c9157829003601f168201915b5050505050905090565b6000610cc38261231e565b610cf9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b6000610d2082611723565b9050806001600160a01b0316836001600160a01b031603610d6d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614610dbd57610d878133610b47565b610dbd576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610dc8838383612370565b505050565b601254600090640100000000900463ffffffff164210610ded5750600190565b60005b905090565b6001600160a01b0381166000908152600d6020526040902054610e855760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6000610e90826119fa565b905080600003610f085760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610e7c565b80600c6000828254610f1a9190613841565b90915550506001600160a01b0382166000908152600e60205260409020805482019055610f4782826123e4565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b60125468010000000000000000900463ffffffff16421080610fc657506012546c01000000000000000000000000900463ffffffff1642115b15610ffd576040517ff6e8504100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6013546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526110539183916034015b604051602081830303815290604052805190602001206124fd565b611089576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f306110996001546000190190565b6110a4906001613841565b11156110dc576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526017602052604090205460ff1615611126576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600081815260176020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915561116b9190612513565b50565b610dc88383836126c8565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff1692820192909252829161121a5750604080518082019091526009546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b60208101516000906127109061123e906bffffffffffffffffffffffff1687613854565b611248919061386b565b91519350909150505b9250929050565b610bb86112686001546000190190565b1080156112845750601254640100000000900463ffffffff1642105b156112bb576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112cc81664380663abb8000613854565b3414611304576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015806113115750600381115b15611348576040517f65ed98f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6012546c01000000000000000000000000900463ffffffff164210156113c057610e74816113796001546000190190565b6113839190613841565b11156113bb576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611413565b610f30816113d16001546000190190565b6113db9190613841565b1115611413576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61116b3382612513565b610dc883838360405180602001604052806000815250611a89565b6001600160a01b0381166000908152600d60205260409020546114c35760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610e7c565b60006114cf8383611aec565b9050806000036115475760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610e7c565b6001600160a01b0383166000908152601060205260408120805483929061156f908490613841565b90915550506001600160a01b0380841660009081526011602090815260408083209386168352929052208054820190556115aa83838361296a565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b6115fd612199565b6015610dc88284836138f4565b611612612199565b828114158061161f575082155b15611656576040517fb4fa3fb300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8381101561171c57610f30838383818110611676576116766139b4565b9050602002013561168a6001546000190190565b6116949190613841565b11156116cc576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117148585838181106116e1576116e16139b4565b90506020020160208101906116f691906132d3565b848484818110611708576117086139b4565b90506020020135612513565b600101611659565b5050505050565b600061172e826129ea565b5192915050565b60006001600160a01b038216611777576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b60125460009068010000000000000000900463ffffffff164210610ded5750600190565b6117c9612199565b6117d36000612b7b565b565b6012546000906c01000000000000000000000000900463ffffffff164210610ded5750600190565b611805612199565b6012805463ffffffff9586167fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000009091161764010000000094861694909402939093177fffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff1668010000000000000000928516929092027fffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffff16919091176c010000000000000000000000009190931602919091179055565b6118c3612199565b601355565b6000600f82815481106118dd576118dd6139b4565b6000918252602090912001546001600160a01b031692915050565b60125460009063ffffffff164210610ded5750600190565b606060048054610c35906137bf565b336001600160a01b03831603611961576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610df06001546000190190565b600080611a06600c5490565b611a109047613841565b9050611a3b8382611a36866001600160a01b03166000908152600e602052604090205490565b612be3565b9392505050565b611a4a612199565b601480547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b611a7f612199565b6117d36000600955565b611a948484846126c8565b6001600160a01b0383163b15611ae657611ab084848484612c21565b611ae6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6001600160a01b03821660009081526010602052604081205481906040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa158015611b64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b8891906139e3565b611b929190613841565b6001600160a01b03808616600090815260116020908152604080832093881683529290522054909150611bc89084908390612be3565b949350505050565b6060611bdb8261231e565b611c11576040517fd872946b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60145460ff161515600003611cb25760168054611c2d906137bf565b80601f0160208091040260200160405190810160405280929190818152602001828054611c59906137bf565b8015611ca65780601f10611c7b57610100808354040283529160200191611ca6565b820191906000526020600020905b815481529060010190602001808311611c8957829003601f168201915b50505050509050919050565b6000611cbc612d6f565b90506000815111611cdc5760405180602001604052806000815250611a3b565b80611ce684612d7e565b604051602001611cf79291906139fc565b6040516020818303038152906040529392505050565b60125463ffffffff16421015611d4f576040517f2d0a346e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6013546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152611d8e918391603401611038565b611dc4576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bb882611dd56001546000190190565b611ddf9190613841565b1115611e17576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e28826631bced02db0000613854565b3414611e60576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b811580611e6d5750600382115b15611ea4576040517f65ed98f300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526006602052604081205483907801000000000000000000000000000000000000000000000000900467ffffffffffffffff16611ee69190613a53565b905060038167ffffffffffffffff161115611f2d576040517f646cf55800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600660205260409020805477ffffffffffffffffffffffffffffffffffffffffffffffff16780100000000000000000000000000000000000000000000000067ffffffffffffffff841602179055610dc83384612513565b6001600160a01b03811660009081526006602052604081205468010000000000000000900467ffffffffffffffff16610c0a565b611fc7612199565b6016610c228282613a7b565b611fdb612199565b6001600160a01b0381166120575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e7c565b61116b81612b7b565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806120f357507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610c0a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610c0a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a000000000000000000000000000000000000000000000000000000001480610c0a5750610c0a82612060565b6000546001600160a01b031633146117d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e7c565b6127106bffffffffffffffffffffffff821611156122795760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610e7c565b6001600160a01b0382166122cf5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610e7c565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600955565b600081600111158015612332575060015482105b8015610c0a5750506000908152600560205260409020547c0100000000000000000000000000000000000000000000000000000000900460ff161590565b60008281526007602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b804710156124345760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e7c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612481576040519150601f19603f3d011682016040523d82523d6000602084013e612486565b606091505b5050905080610dc85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e7c565b60008261250a8584612e1e565b14949350505050565b6001546001600160a01b038316612556576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600003612590576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038316600081815260066020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168a018116918217680100000000000000007fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000090941690921783900481168a01811690920217909155858452600590925290912080547fffffffff0000000000000000000000000000000000000000000000000000000016909217740100000000000000000000000000000000000000004290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061267c5750600155505050565b60006126d3826129ea565b9050836001600160a01b031681600001516001600160a01b031614612724576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061274257506127428533610b47565b8061275d57503361275284610cb8565b6001600160a01b0316145b905080612796576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166127d6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127e260008487612370565b6001600160a01b03858116600090815260066020908152604080832080547fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000080821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080547fffffffff00000000000000000000000000000000000000000000000000000000169094177401000000000000000000000000000000000000000042909216919091021783558701808452922080549193909116612921576001548214612921578054602086015167ffffffffffffffff1674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461171c565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610dc8908490612e6b565b60408051606081018252600080825260208201819052918101919091528180600111612b4957600154811015612b4957600081815260056020908152604091829020825160608101845290546001600160a01b038116825274010000000000000000000000000000000000000000810467ffffffffffffffff16928201929092527c010000000000000000000000000000000000000000000000000000000090910460ff16151591810182905290612b475780516001600160a01b031615612ab3579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b03811680835274010000000000000000000000000000000000000000820467ffffffffffffffff16938301939093527c0100000000000000000000000000000000000000000000000000000000900460ff1615159281019290925215612b42579392505050565b612ab3565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600b546001600160a01b0384166000908152600d602052604081205490918391612c0d9086613854565b612c17919061386b565b611bc89190613b3b565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290612c6f903390899088908890600401613b4e565b6020604051808303816000875af1925050508015612caa575060408051601f3d908101601f19168201909252612ca791810190613b8a565b60015b612d21573d808015612cd8576040519150601f19603f3d011682016040523d82523d6000602084013e612cdd565b606091505b508051600003612d19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b606060158054610c35906137bf565b60606000612d8b83612f50565b600101905060008167ffffffffffffffff811115612dab57612dab6132f0565b6040519080825280601f01601f191660200182016040528015612dd5576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084612ddf57509392505050565b600081815b8451811015612e6357612e4f82868381518110612e4257612e426139b4565b6020026020010151613032565b915080612e5b81613ba7565b915050612e23565b509392505050565b6000612ec0826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661305e9092919063ffffffff16565b805190915015610dc85780806020019051810190612ede9190613bc1565b610dc85760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610e7c565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f99577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310612fc5576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612fe357662386f26fc10000830492506010015b6305f5e1008310612ffb576305f5e100830492506008015b612710831061300f57612710830492506004015b60648310613021576064830492506002015b600a8310610c0a5760010192915050565b600081831061304e576000828152602084905260409020611a3b565b5060009182526020526040902090565b6060611bc8848460008585600080866001600160a01b031685876040516130859190613bde565b60006040518083038185875af1925050503d80600081146130c2576040519150601f19603f3d011682016040523d82523d6000602084013e6130c7565b606091505b50915091506130d8878383876130e3565b979650505050505050565b6060831561315257825160000361314b576001600160a01b0385163b61314b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e7c565b5081611bc8565b611bc883838151156131675781518083602001fd5b8060405162461bcd60e51b8152600401610e7c919061327b565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461116b57600080fd5b6000602082840312156131c157600080fd5b8135611a3b81613181565b6001600160a01b038116811461116b57600080fd5b600080604083850312156131f457600080fd5b82356131ff816131cc565b915060208301356bffffffffffffffffffffffff8116811461322057600080fd5b809150509250929050565b60005b8381101561324657818101518382015260200161322e565b50506000910152565b6000815180845261326781602086016020860161322b565b601f01601f19169290920160200192915050565b602081526000611a3b602083018461324f565b6000602082840312156132a057600080fd5b5035919050565b600080604083850312156132ba57600080fd5b82356132c5816131cc565b946020939093013593505050565b6000602082840312156132e557600080fd5b8135611a3b816131cc565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613348576133486132f0565b604052919050565b600082601f83011261336157600080fd5b8135602067ffffffffffffffff82111561337d5761337d6132f0565b8160051b61338c82820161331f565b92835284810182019282810190878511156133a657600080fd5b83870192505b848310156130d8578235825291830191908301906133ac565b6000602082840312156133d757600080fd5b813567ffffffffffffffff8111156133ee57600080fd5b611bc884828501613350565b60008060006060848603121561340f57600080fd5b833561341a816131cc565b9250602084013561342a816131cc565b929592945050506040919091013590565b6000806040838503121561344e57600080fd5b50508035926020909101359150565b6000806040838503121561347057600080fd5b823561347b816131cc565b91506020830135613220816131cc565b6000806020838503121561349e57600080fd5b823567ffffffffffffffff808211156134b657600080fd5b818501915085601f8301126134ca57600080fd5b8135818111156134d957600080fd5b8660208285010111156134eb57600080fd5b60209290920196919550909350505050565b60008083601f84011261350f57600080fd5b50813567ffffffffffffffff81111561352757600080fd5b6020830191508360208260051b850101111561125157600080fd5b6000806000806040858703121561355857600080fd5b843567ffffffffffffffff8082111561357057600080fd5b61357c888389016134fd565b9096509450602087013591508082111561359557600080fd5b506135a2878288016134fd565b95989497509550505050565b803563ffffffff811681146135c257600080fd5b919050565b600080600080608085870312156135dd57600080fd5b6135e6856135ae565b93506135f4602086016135ae565b9250613602604086016135ae565b9150613610606086016135ae565b905092959194509250565b801515811461116b57600080fd5b6000806040838503121561363c57600080fd5b8235613647816131cc565b915060208301356132208161361b565b600067ffffffffffffffff831115613671576136716132f0565b6136846020601f19601f8601160161331f565b905082815283838301111561369857600080fd5b828260208301376000602084830101529392505050565b600080600080608085870312156136c557600080fd5b84356136d0816131cc565b935060208501356136e0816131cc565b925060408501359150606085013567ffffffffffffffff81111561370357600080fd5b8501601f8101871361371457600080fd5b61372387823560208401613657565b91505092959194509250565b6000806040838503121561374257600080fd5b82359150602083013567ffffffffffffffff81111561376057600080fd5b61376c85828601613350565b9150509250929050565b60006020828403121561378857600080fd5b813567ffffffffffffffff81111561379f57600080fd5b8201601f810184136137b057600080fd5b611bc884823560208401613657565b600181811c908216806137d357607f821691505b60208210810361380c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610c0a57610c0a613812565b8082028115828204841417610c0a57610c0a613812565b6000826138a1577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b601f821115610dc857600081815260208120601f850160051c810160208610156138cd5750805b601f850160051c820191505b818110156138ec578281556001016138d9565b505050505050565b67ffffffffffffffff83111561390c5761390c6132f0565b6139208361391a83546137bf565b836138a6565b6000601f841160018114613954576000851561393c5750838201355b600019600387901b1c1916600186901b17835561171c565b600083815260209020601f19861690835b828110156139855786850135825560209485019460019092019101613965565b50868210156139a25760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156139f557600080fd5b5051919050565b60008351613a0e81846020880161322b565b835190830190613a2281836020880161322b565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b67ffffffffffffffff818116838216019080821115613a7457613a74613812565b5092915050565b815167ffffffffffffffff811115613a9557613a956132f0565b613aa981613aa384546137bf565b846138a6565b602080601f831160018114613ade5760008415613ac65750858301515b600019600386901b1c1916600185901b1785556138ec565b600085815260208120601f198616915b82811015613b0d57888601518255948401946001909101908401613aee565b5085821015613b2b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610c0a57610c0a613812565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613b80608083018461324f565b9695505050505050565b600060208284031215613b9c57600080fd5b8151611a3b81613181565b60006000198203613bba57613bba613812565b5060010190565b600060208284031215613bd357600080fd5b8151611a3b8161361b565b60008251613bf081846020870161322b565b919091019291505056fea2646970667358221220ced571e456040659a536661baa34c278395d91a35f52a129b00e39d65ae5ed1464736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d6337524b504d72753833435872646b794d714d4c6741365133674c5876717646536e414b766441457042646200000000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000ae1e589ed4423fda24597166526a76179a63963a000000000000000000000000e34e95f6767ef95c05a5ef98113e2f9c8847f10c000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000014

-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): ipfs://Qmc7RKPMru83CXrdkyMqMLgA6Q3gLXvqvFSnAKvdAEpBdb
Arg [1] : payees_ (address[]): 0xaE1e589ed4423FdA24597166526A76179A63963a,0xe34e95f6767ef95c05a5EF98113E2F9c8847f10C
Arg [2] : shares_ (uint256[]): 80,20

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [4] : 697066733a2f2f516d6337524b504d72753833435872646b794d714d4c674136
Arg [5] : 5133674c5876717646536e414b76644145704264620000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 000000000000000000000000ae1e589ed4423fda24597166526a76179a63963a
Arg [8] : 000000000000000000000000e34e95f6767ef95c05a5ef98113e2f9c8847f10c
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000014


Deployed Bytecode Sourcemap

93306:9996:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78487:40;20586:10;78487:40;;;-1:-1:-1;;;;;206:55:1;;;188:74;;78517:9:0;293:2:1;278:18;;271:34;161:18;78487:40:0;;;;;;;93306:9996;;;;;103008:291;;;;;;;;;;-1:-1:-1;103008:291:0;;;;;:::i;:::-;;:::i;:::-;;;913:14:1;;906:22;888:41;;876:2;861:18;103008:291:0;;;;;;;;94238:33;;;;;;;;;;-1:-1:-1;94238:33:0;;;;;;;;;;;;;;1114:10:1;1102:23;;;1084:42;;1072:2;1057:18;94238:33:0;940:192:1;101812:169:0;;;;;;;;;;-1:-1:-1;101812:169:0;;;;;:::i;:::-;;:::i;:::-;;42532:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44036:204::-;;;;;;;;;;-1:-1:-1;44036:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2900:55:1;;;2882:74;;2870:2;2855:18;44036:204:0;2736:226:1;43598:372:0;;;;;;;;;;-1:-1:-1;43598:372:0;;;;;:::i;:::-;;:::i;99350:125::-;;;;;;;;;;;;;:::i;38657:312::-;;;;;;;;;;-1:-1:-1;38920:12:0;;102489:1;38904:13;:28;-1:-1:-1;;38904:46:0;38657:312;;;3433:25:1;;;3421:2;3406:18;38657:312:0;3287:177:1;81008:671:0;;;;;;;;;;-1:-1:-1;81008:671:0;;;;;:::i;:::-;;:::i;98094:921::-;;;;;;:::i;:::-;;:::i;44901:170::-;;;;;;;;;;-1:-1:-1;44901:170:0;;;;;:::i;:::-;;:::i;60618:442::-;;;;;;;;;;-1:-1:-1;60618:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;206:55:1;;;188:74;;293:2;278:18;;271:34;;;;161:18;60618:442:0;14:297:1;96964:1122:0;;;;;;:::i;:::-;;:::i;94318:25::-;;;;;;;;;;;;;;;;94202:29;;;;;;;;;;-1:-1:-1;94202:29:0;;;;;;;;;;;78618:91;;;;;;;;;;-1:-1:-1;78689:12:0;;78618:91;;79747:135;;;;;;;;;;-1:-1:-1;79747:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;79844:21:0;;;79817:7;79844:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;79747:135;45142:185;;;;;;;;;;-1:-1:-1;45142:185:0;;;;;:::i;:::-;;:::i;81947:792::-;;;;;;;;;;-1:-1:-1;81947:792:0;;;;;:::i;:::-;;:::i;94352:20::-;;;;;;;;;;-1:-1:-1;94352:20:0;;;;;;;;101505:106;;;;;;;;;;-1:-1:-1;101505:106:0;;;;;:::i;:::-;;:::i;100290:666::-;;;;;;;;;;-1:-1:-1;100290:666:0;;;;;:::i;:::-;;:::i;93700:42::-;;;;;;;;;;;;93741:1;93700:42;;94278:31;;;;;;;;;;-1:-1:-1;94278:31:0;;;;;;;;;;;42340:125;;;;;;;;;;-1:-1:-1;42340:125:0;;;;;:::i;:::-;;:::i;93647:46::-;;;;;;;;;;;;93689:4;93647:46;;39786:206;;;;;;;;;;-1:-1:-1;39786:206:0;;;;;:::i;:::-;;:::i;99483:135::-;;;;;;;;;;;;;:::i;64922:103::-;;;;;;;;;;;;;:::i;99626:130::-;;;;;;;;;;;;;:::i;100964:399::-;;;;;;;;;;-1:-1:-1;100964:399:0;;;;;:::i;:::-;;:::i;101619:106::-;;;;;;;;;;-1:-1:-1;101619:106:0;;;;;:::i;:::-;;:::i;79973:100::-;;;;;;;;;;-1:-1:-1;79973:100:0;;;;;:::i;:::-;;:::i;64274:87::-;;;;;;;;;;-1:-1:-1;64320:7:0;64347:6;-1:-1:-1;;;;;64347:6:0;64274:87;;99211:131;;;;;;;;;;;;;:::i;42701:104::-;;;;;;;;;;;;;:::i;79469:109::-;;;;;;;;;;-1:-1:-1;79469:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;79552:18:0;79525:7;79552:18;;;:9;:18;;;;;;;79469:109;94454:48;;;;;;;;;;-1:-1:-1;94454:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;93595:43;;;;;;;;;;;;93634:4;93595:43;;94163:32;;;;;;;;;;-1:-1:-1;94163:32:0;;;;;;;;93749:43;;;;;;;;;;;;93781:11;93749:43;;44312:287;;;;;;;;;;-1:-1:-1;44312:287:0;;;;;:::i;:::-;;:::i;99998:103::-;;;;;;;;;;;;;:::i;99764:105::-;;;;;;;;;;-1:-1:-1;99764:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;40645:19:0;99821:7;40645:19;;;:12;:19;;;;;:23;;;;;;;99764:105;80163:225;;;;;;;;;;-1:-1:-1;80163:225:0;;;;;:::i;:::-;;:::i;101733:71::-;;;;;;;;;;;;;:::i;101989:93::-;;;;;;;;;;;;;:::i;93801:49::-;;;;;;;;;;;;93846:4;93801:49;;45398:370;;;;;;;;;;-1:-1:-1;45398:370:0;;;;;:::i;:::-;;:::i;80548:260::-;;;;;;;;;;-1:-1:-1;80548:260:0;;;;;:::i;:::-;;:::i;102506:494::-;;;;;;;;;;-1:-1:-1;102506:494:0;;;;;:::i;:::-;;:::i;79265:105::-;;;;;;;;;;-1:-1:-1;79265:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;79346:16:0;79319:7;79346:16;;;:7;:16;;;;;;;79265:105;95625:1331;;;;;;:::i;:::-;;:::i;79055:119::-;;;;;;;;;;-1:-1:-1;79055:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;79140:26:0;79113:7;79140:26;;;:19;:26;;;;;;;79055:119;78803:95;;;;;;;;;;-1:-1:-1;78876:14:0;;78803:95;;44670:164;;;;;;;;;;-1:-1:-1;44670:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;44791:25:0;;;44767:4;44791:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;44670:164;99877:113;;;;;;;;;;-1:-1:-1;99877:113:0;;;;;:::i;:::-;;:::i;101371:126::-;;;;;;;;;;-1:-1:-1;101371:126:0;;;;;:::i;:::-;;:::i;65180:201::-;;;;;;;;;;-1:-1:-1;65180:201:0;;;;;:::i;:::-;;:::i;93917:52::-;;;;;;;;;;;;93958:11;93917:52;;103008:291;103156:4;103198:38;103224:11;103198:25;:38::i;:::-;:93;;;;103253:38;103279:11;103253:25;:38::i;:::-;103178:113;103008:291;-1:-1:-1;;103008:291:0:o;101812:169::-;64160:13;:11;:13::i;:::-;101931:42:::1;101950:8;101960:12;101931:18;:42::i;:::-;101812:169:::0;;:::o;42532:100::-;42586:13;42619:5;42612:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42532:100;:::o;44036:204::-;44104:7;44129:16;44137:7;44129;:16::i;:::-;44124:64;;44154:34;;;;;;;;;;;;;;44124:64;-1:-1:-1;44208:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44208:24:0;;44036:204::o;43598:372::-;43671:13;43687:24;43703:7;43687:15;:24::i;:::-;43671:40;;43732:5;-1:-1:-1;;;;;43726:11:0;:2;-1:-1:-1;;;;;43726:11:0;;43722:48;;43746:24;;;;;;;;;;;;;;43722:48;20586:10;-1:-1:-1;;;;;43787:21:0;;;43783:139;;43814:37;43831:5;20586:10;44670:164;:::i;43814:37::-;43810:112;;43875:35;;;;;;;;;;;;;;43810:112;43934:28;43943:2;43947:7;43956:5;43934:8;:28::i;:::-;43660:310;43598:372;;:::o;99350:125::-;99437:15;;99395:4;;99437:15;;;;;99419;:33;:48;;-1:-1:-1;99463:4:0;;99350:125::o;99419:48::-;99455:5;99419:48;99412:55;;99350:125;:::o;81008:671::-;-1:-1:-1;;;;;81084:16:0;;81103:1;81084:16;;;:7;:16;;;;;;81076:71;;;;-1:-1:-1;;;81076:71:0;;13348:2:1;81076:71:0;;;13330:21:1;13387:2;13367:18;;;13360:30;13426:34;13406:18;;;13399:62;13497:8;13477:18;;;13470:36;13523:19;;81076:71:0;;;;;;;;;81160:15;81178:19;81189:7;81178:10;:19::i;:::-;81160:37;;81218:7;81229:1;81218:12;81210:68;;;;-1:-1:-1;;;81210:68:0;;13755:2:1;81210:68:0;;;13737:21:1;13794:2;13774:18;;;13767:30;13833:34;13813:18;;;13806:62;13904:13;13884:18;;;13877:41;13935:19;;81210:68:0;13553:407:1;81210:68:0;81491:7;81473:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;81534:18:0;;;;;;:9;:18;;;;;:29;;;;;;81587:35;81544:7;81556;81587:17;:35::i;:::-;81638:33;;;-1:-1:-1;;;;;206:55:1;;188:74;;293:2;278:18;;271:34;;;81638:33:0;;161:18:1;81638:33:0;;;;;;;81065:614;81008:671;:::o;98094:921::-;98255:19;;;;;;;98237:15;:37;;:89;;-1:-1:-1;98309:17:0;;;;;;;98291:15;:35;98237:89;98219:139;;;98345:13;;;;;;;;;;;;;;98219:139;98528:10;;98571:28;;14756:66:1;98588:10:0;14743:2:1;14739:15;14735:88;98571:28:0;;;14723:101:1;98459:160:0;;98500:5;;14840:12:1;;98571:28:0;;;;;;;;;;;;;98561:39;;;;;;98459:18;:160::i;:::-;98421:246;;98653:14;;;;;;;;;;;;;;98421:246;93634:4;98730:14;102489:1;39295:13;-1:-1:-1;;39295:31:0;;39062:283;98730:14;:18;;98747:1;98730:18;:::i;:::-;:33;98726:64;;;98772:18;;;;;;;;;;;;;;98726:64;98890:10;98873:28;;;;:16;:28;;;;;;;;98869:57;;;98910:16;;;;;;;;;;;;;;98869:57;98956:10;98939:28;;;;:16;:28;;;;;:35;;;;98970:4;98939:35;;;;;;98987:20;;98956:10;98987:5;:20::i;:::-;98094:921;:::o;44901:170::-;45035:28;45045:4;45051:2;45055:7;45035:9;:28::i;60618:442::-;60715:7;60773:27;;;:17;:27;;;;;;;;60744:56;;;;;;;;;-1:-1:-1;;;;;60744:56:0;;;;;;;;;;;;;;;;;;60715:7;;60813:92;;-1:-1:-1;60864:29:0;;;;;;;;;60874:19;60864:29;-1:-1:-1;;;;;60864:29:0;;;;;;;;;;;;;60813:92;60955:23;;;;60917:21;;61426:5;;60942:36;;60941:58;60942:36;:10;:36;:::i;:::-;60941:58;;;;:::i;:::-;61020:16;;;-1:-1:-1;60917:82:0;;-1:-1:-1;;60618:442:0;;;;;;:::o;96964:1122::-;93846:4;97161:14;102489:1;39295:13;-1:-1:-1;;39295:31:0;;39062:283;97161:14;:35;:85;;;;-1:-1:-1;97231:15:0;;;;;;;97213;:33;97161:85;97143:165;;;97280:16;;;;;;;;;;;;;;97143:165;97405:16;97413:8;93781:11;97405:16;:::i;:::-;97392:9;:29;97388:61;;97430:19;;;;;;;;;;;;;;97388:61;97540:13;;;:42;;;93741:1;97557:8;:25;97540:42;97536:87;;;97604:19;;;;;;;;;;;;;;97536:87;97781:17;;;;;;;97763:15;:35;97759:280;;;93689:4;97836:8;97819:14;102489:1;39295:13;-1:-1:-1;;39295:31:0;;39062:283;97819:14;:25;;;;:::i;:::-;:43;97815:91;;;97888:18;;;;;;;;;;;;;;97815:91;97759:280;;;93634:4;97960:8;97943:14;102489:1;39295:13;-1:-1:-1;;39295:31:0;;39062:283;97943:14;:25;;;;:::i;:::-;:40;97939:88;;;98009:18;;;;;;;;;;;;;;97939:88;98051:27;98057:10;98069:8;98051:5;:27::i;45142:185::-;45280:39;45297:4;45303:2;45307:7;45280:39;;;;;;;;;;;;:16;:39::i;81947:792::-;-1:-1:-1;;;;;82029:16:0;;82048:1;82029:16;;;:7;:16;;;;;;82021:71;;;;-1:-1:-1;;;82021:71:0;;13348:2:1;82021:71:0;;;13330:21:1;13387:2;13367:18;;;13360:30;13426:34;13406:18;;;13399:62;13497:8;13477:18;;;13470:36;13523:19;;82021:71:0;13146:402:1;82021:71:0;82105:15;82123:26;82134:5;82141:7;82123:10;:26::i;:::-;82105:44;;82170:7;82181:1;82170:12;82162:68;;;;-1:-1:-1;;;82162:68:0;;13755:2:1;82162:68:0;;;13737:21:1;13794:2;13774:18;;;13767:30;13833:34;13813:18;;;13806:62;13904:13;13884:18;;;13877:41;13935:19;;82162:68:0;13553:407:1;82162:68:0;-1:-1:-1;;;;;82485:26:0;;;;;;:19;:26;;;;;:37;;82515:7;;82485:26;:37;;82515:7;;82485:37;:::i;:::-;;;;-1:-1:-1;;;;;;;82558:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;:41;;;;;;82623:47;82573:5;82580:7;82592;82623:22;:47::i;:::-;82686:45;;;-1:-1:-1;;;;;206:55:1;;;188:74;;293:2;278:18;;271:34;;;82686:45:0;;;;;161:18:1;82686:45:0;;;;;;;82010:729;81947:792;;:::o;101505:106::-;64160:13;:11;:13::i;:::-;101580::::1;:23;101596:7:::0;;101580:13;:23:::1;:::i;100290:666::-:0;64160:13;:11;:13::i;:::-;100518:34;;::::1;;::::0;:59:::1;;-1:-1:-1::0;100556:21:0;;100518:59:::1;100514:99;;;100599:14;;;;;;;;;;;;;;100514:99;100631:9;100626:323;100642:20:::0;;::::1;100626:323;;;93634:4;100756:7;;100764:1;100756:10;;;;;;;:::i;:::-;;;;;;;100739:14;102489:1:::0;39295:13;-1:-1:-1;;39295:31:0;;39062:283;100739:14:::1;:27;;;;:::i;:::-;:42;100735:90;;;100807:18;;;;;;;;;;;;;;100735:90;100842:31;100848:9;;100858:1;100848:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;100862:7;;100870:1;100862:10;;;;;;;:::i;:::-;;;;;;;100842:5;:31::i;:::-;100919:3;;100626:323;;;;100290:666:::0;;;;:::o;42340:125::-;42404:7;42431:21;42444:7;42431:12;:21::i;:::-;:26;;42340:125;-1:-1:-1;;42340:125:0:o;39786:206::-;39850:7;-1:-1:-1;;;;;39874:19:0;;39870:60;;39902:28;;;;;;;;;;;;;;39870:60;-1:-1:-1;;;;;;39956:19:0;;;;;:12;:19;;;;;:27;;;;39786:206::o;99483:135::-;99576:19;;99534:4;;99576:19;;;;;99558:15;:37;:52;;-1:-1:-1;99606:4:0;;99350:125::o;64922:103::-;64160:13;:11;:13::i;:::-;64987:30:::1;65014:1;64987:18;:30::i;:::-;64922:103::o:0;99626:130::-;99716:17;;99674:4;;99716:17;;;;;99698:15;:35;:50;;-1:-1:-1;99744:4:0;;99350:125::o;100964:399::-;64160:13;:11;:13::i;:::-;101168:18:::1;:40:::0;;::::1;::::0;;::::1;101219:34:::0;;;;;;;;::::1;::::0;;;::::1;::::0;;;::::1;101317:38:::0;;101264:42;;;::::1;::::0;;;::::1;101317:38:::0;;;;;;;;;;::::1;;::::0;;;::::1;::::0;;100964:399::o;101619:106::-;64160:13;:11;:13::i;:::-;101693:10:::1;:24:::0;101619:106::o;79973:100::-;80024:7;80051;80059:5;80051:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;80051:14:0;;79973:100;-1:-1:-1;;79973:100:0:o;99211:131::-;99301:18;;99259:4;;99301:18;;99283:15;:36;:51;;-1:-1:-1;99330:4:0;;99350:125::o;42701:104::-;42757:13;42790:7;42783:14;;;;;:::i;44312:287::-;20586:10;-1:-1:-1;;;;;44411:24:0;;;44407:54;;44444:17;;;;;;;;;;;;;;44407:54;20586:10;44474:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44474:42:0;;;;;;;;;;;;:53;;;;;;;;;;;;;44543:48;;888:41:1;;;44474:42:0;;20586:10;44543:48;;861:18:1;44543:48:0;;;;;;;44312:287;;:::o;99998:103::-;100052:7;100079:14;102489:1;39295:13;-1:-1:-1;;39295:31:0;;39062:283;80163:225;80221:7;80241:21;80289:15;78876:14;;;78803:95;80289:15;80265:39;;:21;:39;:::i;:::-;80241:63;;80322:58;80338:7;80347:13;80362:17;80371:7;-1:-1:-1;;;;;79552:18:0;79525:7;79552:18;;;:9;:18;;;;;;;79469:109;80362:17;80322:15;:58::i;:::-;80315:65;80163:225;-1:-1:-1;;;80163:225:0:o;101733:71::-;64160:13;:11;:13::i;:::-;101781:8:::1;:15:::0;;;::::1;101792:4;101781:15;::::0;;101733:71::o;101989:93::-;64160:13;:11;:13::i;:::-;102051:23:::1;62186:19:::0;;62179:26;62118:95;45398:370;45565:28;45575:4;45581:2;45585:7;45565:9;:28::i;:::-;-1:-1:-1;;;;;45608:13:0;;12004:19;:23;45604:157;;45629:56;45660:4;45666:2;45670:7;45679:5;45629:30;:56::i;:::-;45625:136;;45709:40;;;;;;;;;;;;;;45625:136;45398:370;;;;:::o;80548:260::-;-1:-1:-1;;;;;79140:26:0;;80620:7;79140:26;;;:19;:26;;;;;;80620:7;;80664:30;;;;;80688:4;80664:30;;;2882:74:1;-1:-1:-1;;;;;80664:15:0;;;;;2855:18:1;;80664:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;79844:21:0;;;79817:7;79844:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;80640:77;;-1:-1:-1;80735:65:0;;80751:7;;80640:77;;80322:15;:58::i;80735:65::-;80728:72;80548:260;-1:-1:-1;;;;80548:260:0:o;102506:494::-;102624:13;102660:16;102668:7;102660;:16::i;:::-;102655:51;;102685:21;;;;;;;;;;;;;;102655:51;102721:8;;;;:17;;:8;:17;102717:71;;102762:14;102755:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102506:494;;;:::o;102717:71::-;102798:21;102822:10;:8;:10::i;:::-;102798:34;;102887:1;102869:7;102863:21;:25;:129;;;;;;;;;;;;;;;;;102932:7;102941:18;:7;:16;:18::i;:::-;102915:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;102843:149;102506:494;-1:-1:-1;;;102506:494:0:o;95625:1331::-;95811:18;;;;95793:15;:36;95789:65;;;95838:16;;;;;;;;;;;;;;95789:65;96024:10;;96067:28;;14756:66:1;96084:10:0;14743:2:1;14739:15;14735:88;96067:28:0;;;14723:101:1;95955:160:0;;95996:5;;14840:12:1;;96067:28:0;14594:264:1;95955:160:0;95917:246;;96149:14;;;;;;;;;;;;;;95917:246;93846:4;96243:8;96226:14;102489:1;39295:13;-1:-1:-1;;39295:31:0;;39062:283;96226:14;:25;;;;:::i;:::-;:46;96222:90;;;96294:18;;;;;;;;;;;;;;96222:90;96410:25;96427:8;93958:11;96410:25;:::i;:::-;96397:9;:38;96393:70;;96444:19;;;;;;;;;;;;;;96393:70;96554:13;;;:42;;;93741:1;96571:8;:25;96554:42;96550:87;;;96618:19;;;;;;;;;;;;;;96550:87;96748:10;96716:21;40645:19;;;:12;:19;;;;;:23;96769:8;;40645:23;;;;;96740:38;;;;:::i;:::-;96716:62;;93909:1;96793:14;:42;;;96789:71;;;96844:16;;;;;;;;;;;;;;96789:71;96881:10;40928:19;;;;:12;:19;;;;;:29;;;;;;;;;;;;96921:27;96927:10;96939:8;96921:5;:27::i;99877:113::-;-1:-1:-1;;;;;40170:19:0;;99936:7;40170:19;;;:12;:19;;;;;:32;;;;;;99963:19;40074:137;101371:126;64160:13;:11;:13::i;:::-;101457:14:::1;:32;101474:15:::0;101457:14;:32:::1;:::i;65180:201::-:0;64160:13;:11;:13::i;:::-;-1:-1:-1;;;;;65269:22:0;::::1;65261:73;;;::::0;-1:-1:-1;;;65261:73:0;;20650:2:1;65261:73:0::1;::::0;::::1;20632:21:1::0;20689:2;20669:18;;;20662:30;20728:34;20708:18;;;20701:62;20799:8;20779:18;;;20772:36;20825:19;;65261:73:0::1;20448:402:1::0;65261:73:0::1;65345:28;65364:8;65345:18;:28::i;39417:305::-:0;39519:4;39556:40;;;39571:25;39556:40;;:105;;-1:-1:-1;39613:48:0;;;39628:33;39613:48;39556:105;:158;;;-1:-1:-1;36664:25:0;36649:40;;;;39678:36;36540:157;60348:215;60450:4;60474:41;;;60489:26;60474:41;;:81;;;60519:36;60543:11;60519:23;:36::i;64439:132::-;64320:7;64347:6;-1:-1:-1;;;;;64347:6:0;20586:10;64503:23;64495:68;;;;-1:-1:-1;;;64495:68:0;;21057:2:1;64495:68:0;;;21039:21:1;;;21076:18;;;21069:30;21135:34;21115:18;;;21108:62;21187:18;;64495:68:0;20855:356:1;61710:332:0;61426:5;61813:33;;;;;61805:88;;;;-1:-1:-1;;;61805:88:0;;21418:2:1;61805:88:0;;;21400:21:1;21457:2;21437:18;;;21430:30;21496:34;21476:18;;;21469:62;21567:12;21547:18;;;21540:40;21597:19;;61805:88:0;21216:406:1;61805:88:0;-1:-1:-1;;;;;61912:22:0;;61904:60;;;;-1:-1:-1;;;61904:60:0;;21829:2:1;61904:60:0;;;21811:21:1;21868:2;21848:18;;;21841:30;21907:27;21887:18;;;21880:55;21952:18;;61904:60:0;21627:349:1;61904:60:0;61999:35;;;;;;;;;-1:-1:-1;;;;;61999:35:0;;;;;;;;;;;;;;;;;61977:57;;;;;:19;:57;61710:332::o;46023:174::-;46080:4;46123:7;102489:1;46104:26;;:53;;;;;46144:13;;46134:7;:23;46104:53;:85;;;;-1:-1:-1;;46162:20:0;;;;:11;:20;;;;;:27;;;;;;46161:28;;46023:174::o;55245:196::-;55360:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;55360:29:0;;;;;;;;;55405:28;;55360:24;;55405:28;;;;;;;55245:196;;;:::o;12970:317::-;13085:6;13060:21;:31;;13052:73;;;;-1:-1:-1;;;13052:73:0;;22183:2:1;13052:73:0;;;22165:21:1;22222:2;22202:18;;;22195:30;22261:31;22241:18;;;22234:59;22310:18;;13052:73:0;21981:353:1;13052:73:0;13139:12;13157:9;-1:-1:-1;;;;;13157:14:0;13179:6;13157:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13138:52;;;13209:7;13201:78;;;;-1:-1:-1;;;13201:78:0;;22751:2:1;13201:78:0;;;22733:21:1;22790:2;22770:18;;;22763:30;22829:34;22809:18;;;22802:62;22900:28;22880:18;;;22873:56;22946:19;;13201:78:0;22549:422:1;84965:190:0;85090:4;85143;85114:25;85127:5;85134:4;85114:12;:25::i;:::-;:33;;84965:190;-1:-1:-1;;;;84965:190:0:o;48766:1173::-;48854:13;;-1:-1:-1;;;;;48882:16:0;;48878:48;;48907:19;;;;;;;;;;;;;;48878:48;48941:8;48953:1;48941:13;48937:44;;48963:18;;;;;;;;;;;;;;48937:44;-1:-1:-1;;;;;49332:16:0;;;;;;:12;:16;;;;;;;;:44;;49391:49;;;49332:44;;;;;;;;49391:49;;;;49332:44;;;;;;;49391:49;;;;;;;;;;;;;;;;49457:25;;;:11;:25;;;;;;:35;;49507:66;;;;;;49557:15;49507:66;;;;;;;;;;49457:25;49654:23;;;49694:111;49721:40;;49746:14;;;;;-1:-1:-1;;;;;49721:40:0;;;49738:1;;49721:40;;49738:1;;49721:40;49800:3;49785:12;:18;49694:111;;-1:-1:-1;49821:13:0;:28;43660:310;43598:372;;:::o;50193:2130::-;50308:35;50346:21;50359:7;50346:12;:21::i;:::-;50308:59;;50406:4;-1:-1:-1;;;;;50384:26:0;:13;:18;;;-1:-1:-1;;;;;50384:26:0;;50380:67;;50419:28;;;;;;;;;;;;;;50380:67;50460:22;20586:10;-1:-1:-1;;;;;50486:20:0;;;;:73;;-1:-1:-1;50523:36:0;50540:4;20586:10;44670:164;:::i;50523:36::-;50486:126;;;-1:-1:-1;20586:10:0;50576:20;50588:7;50576:11;:20::i;:::-;-1:-1:-1;;;;;50576:36:0;;50486:126;50460:153;;50631:17;50626:66;;50657:35;;;;;;;;;;;;;;50626:66;-1:-1:-1;;;;;50707:16:0;;50703:52;;50732:23;;;;;;;;;;;;;;50703:52;50876:35;50893:1;50897:7;50906:4;50876:8;:35::i;:::-;-1:-1:-1;;;;;51207:18:0;;;;;;;:12;:18;;;;;;;;:31;;;;;;;;;;-1:-1:-1;;51207:31:0;;;;;;;51253:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51253:29:0;;;;;;;;;;;51333:20;;;:11;:20;;;;;;51368:18;;51401:49;;;;;;51434:15;51401:49;;;;;;;;;;51724:11;;51784:24;;;;;51827:13;;51333:20;;51784:24;;51827:13;51823:384;;52037:13;;52022:11;:28;52018:174;;52075:20;;52144:28;;;;52118:54;;;;;;;;-1:-1:-1;;;;;52075:20:0;;52118:54;;;;52018:174;51182:1036;;;52254:7;52250:2;-1:-1:-1;;;;;52235:27:0;52244:4;-1:-1:-1;;;;;52235:27:0;;;;;;;;;;;52273:42;45398:370;71506:211;71650:58;;;-1:-1:-1;;;;;206:55:1;;71650:58:0;;;188:74:1;278:18;;;;271:34;;;71650:58:0;;;;;;;;;;161:18:1;;;;71650:58:0;;;;;;;;;;71673:23;71650:58;;;71623:86;;71643:5;;71623:19;:86::i;41167:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;41278:7:0;;102489:1;41327:23;41323:888;;41363:13;;41356:4;:20;41352:859;;;41397:31;41431:17;;;:11;:17;;;;;;;;;41397:51;;;;;;;;;-1:-1:-1;;;;;41397:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41467:729;;41517:14;;-1:-1:-1;;;;;41517:28:0;;41513:101;;41581:9;41167:1111;-1:-1:-1;;;41167:1111:0:o;41513:101::-;-1:-1:-1;;;41956:6:0;42001:17;;;;:11;:17;;;;;;;;;41989:29;;;;;;;;;-1:-1:-1;;;;;41989:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42049:28;42045:109;;42117:9;41167:1111;-1:-1:-1;;;41167:1111:0:o;42045:109::-;41916:261;;;41378:833;41352:859;42239:31;;;;;;;;;;;;;;65541:191;65615:16;65634:6;;-1:-1:-1;;;;;65651:17:0;;;;;;;;;;65684:40;;65634:6;;;;;;;65684:40;;65615:16;65684:40;65604:128;65541:191;:::o;82917:248::-;83127:12;;-1:-1:-1;;;;;83107:16:0;;83063:7;83107:16;;;:7;:16;;;;;;83063:7;;83142:15;;83091:32;;:13;:32;:::i;:::-;83090:49;;;;:::i;:::-;:67;;;;:::i;55933:667::-;56117:72;;;;;56096:4;;-1:-1:-1;;;;;56117:36:0;;;;;:72;;20586:10;;56168:4;;56174:7;;56183:5;;56117:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56117:72:0;;;;;;;;-1:-1:-1;;56117:72:0;;;;;;;;;;;;:::i;:::-;;;56113:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56351:6;:13;56368:1;56351:18;56347:235;;56397:40;;;;;;;;;;;;;;56347:235;56540:6;56534:13;56525:6;56521:2;56517:15;56510:38;56113:480;56236:55;;56246:45;56236:55;;-1:-1:-1;55933:667:0;;;;;;:::o;102275:114::-;102335:13;102368;102361:20;;;;;:::i;33869:716::-;33925:13;33976:14;33993:17;34004:5;33993:10;:17::i;:::-;34013:1;33993:21;33976:38;;34029:20;34063:6;34052:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34052:18:0;-1:-1:-1;34029:41:0;-1:-1:-1;34194:28:0;;;34210:2;34194:28;34251:288;-1:-1:-1;;34283:5:0;34425:8;34420:2;34409:14;;34404:30;34283:5;34391:44;34481:2;34472:11;;;-1:-1:-1;34502:21:0;34251:288;34502:21;-1:-1:-1;34560:6:0;33869:716;-1:-1:-1;;;33869:716:0:o;85832:296::-;85915:7;85958:4;85915:7;85973:118;85997:5;:12;85993:1;:16;85973:118;;;86046:33;86056:12;86070:5;86076:1;86070:8;;;;;;;;:::i;:::-;;;;;;;86046:9;:33::i;:::-;86031:48;-1:-1:-1;86011:3:0;;;;:::i;:::-;;;;85973:118;;;-1:-1:-1;86108:12:0;85832:296;-1:-1:-1;;;85832:296:0:o;74573:716::-;74997:23;75023:69;75051:4;75023:69;;;;;;;;;;;;;;;;;75031:5;-1:-1:-1;;;;;75023:27:0;;;:69;;;;;:::i;:::-;75107:17;;74997:95;;-1:-1:-1;75107:21:0;75103:179;;75204:10;75193:30;;;;;;;;;;;;:::i;:::-;75185:85;;;;-1:-1:-1;;;75185:85:0;;24532:2:1;75185:85:0;;;24514:21:1;24571:2;24551:18;;;24544:30;24610:34;24590:18;;;24583:62;24681:12;24661:18;;;24654:40;24711:19;;75185:85:0;24330:406:1;30889:922:0;30942:7;;31029:6;31020:15;;31016:102;;31065:6;31056:15;;;-1:-1:-1;31100:2:0;31090:12;31016:102;31145:6;31136:5;:15;31132:102;;31181:6;31172:15;;;-1:-1:-1;31216:2:0;31206:12;31132:102;31261:6;31252:5;:15;31248:102;;31297:6;31288:15;;;-1:-1:-1;31332:2:0;31322:12;31248:102;31377:5;31368;:14;31364:99;;31412:5;31403:14;;;-1:-1:-1;31446:1:0;31436:11;31364:99;31490:5;31481;:14;31477:99;;31525:5;31516:14;;;-1:-1:-1;31559:1:0;31549:11;31477:99;31603:5;31594;:14;31590:99;;31638:5;31629:14;;;-1:-1:-1;31672:1:0;31662:11;31590:99;31716:5;31707;:14;31703:66;;31752:1;31742:11;31797:6;30889:922;-1:-1:-1;;30889:922:0:o;92872:149::-;92935:7;92966:1;92962;:5;:51;;93097:13;93191:15;;;93227:4;93220:15;;;93274:4;93258:21;;92962:51;;;-1:-1:-1;93097:13:0;93191:15;;;93227:4;93220:15;93274:4;93258:21;;;92872:149::o;14466:229::-;14603:12;14635:52;14657:6;14665:4;14671:1;14674:12;14603;15874;15888:23;15915:6;-1:-1:-1;;;;;15915:11:0;15934:5;15941:4;15915:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15873:73;;;;15964:69;15991:6;15999:7;16008:10;16020:12;15964:26;:69::i;:::-;15957:76;15586:455;-1:-1:-1;;;;;;;15586:455:0:o;18159:644::-;18344:12;18373:7;18369:427;;;18401:10;:17;18422:1;18401:22;18397:290;;-1:-1:-1;;;;;12004:19:0;;;18611:60;;;;-1:-1:-1;;;18611:60:0;;25642:2:1;18611:60:0;;;25624:21:1;25681:2;25661:18;;;25654:30;25720:31;25700:18;;;25693:59;25769:18;;18611:60:0;25440:353:1;18611:60:0;-1:-1:-1;18708:10:0;18701:17;;18369:427;18751:33;18759:10;18771:12;19506:17;;:21;19502:388;;19738:10;19732:17;19795:15;19782:10;19778:2;19774:19;19767:44;19502:388;19865:12;19858:20;;-1:-1:-1;;;19858:20:0;;;;;;;;:::i;316:177:1:-;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;1137:154::-;-1:-1:-1;;;;;1216:5:1;1212:54;1205:5;1202:65;1192:93;;1281:1;1278;1271:12;1296:435;1363:6;1371;1424:2;1412:9;1403:7;1399:23;1395:32;1392:52;;;1440:1;1437;1430:12;1392:52;1479:9;1466:23;1498:31;1523:5;1498:31;:::i;:::-;1548:5;-1:-1:-1;1605:2:1;1590:18;;1577:32;1653:26;1640:40;;1628:53;;1618:81;;1695:1;1692;1685:12;1618:81;1718:7;1708:17;;;1296:435;;;;;:::o;1736:250::-;1821:1;1831:113;1845:6;1842:1;1839:13;1831:113;;;1921:11;;;1915:18;1902:11;;;1895:39;1867:2;1860:10;1831:113;;;-1:-1:-1;;1978:1:1;1960:16;;1953:27;1736:250::o;1991:330::-;2033:3;2071:5;2065:12;2098:6;2093:3;2086:19;2114:76;2183:6;2176:4;2171:3;2167:14;2160:4;2153:5;2149:16;2114:76;:::i;:::-;2235:2;2223:15;-1:-1:-1;;2219:88:1;2210:98;;;;2310:4;2206:109;;1991:330;-1:-1:-1;;1991:330:1:o;2326:220::-;2475:2;2464:9;2457:21;2438:4;2495:45;2536:2;2525:9;2521:18;2513:6;2495:45;:::i;2551:180::-;2610:6;2663:2;2651:9;2642:7;2638:23;2634:32;2631:52;;;2679:1;2676;2669:12;2631:52;-1:-1:-1;2702:23:1;;2551:180;-1:-1:-1;2551:180:1:o;2967:315::-;3035:6;3043;3096:2;3084:9;3075:7;3071:23;3067:32;3064:52;;;3112:1;3109;3102:12;3064:52;3151:9;3138:23;3170:31;3195:5;3170:31;:::i;:::-;3220:5;3272:2;3257:18;;;;3244:32;;-1:-1:-1;;;2967:315:1:o;3469:255::-;3536:6;3589:2;3577:9;3568:7;3564:23;3560:32;3557:52;;;3605:1;3602;3595:12;3557:52;3644:9;3631:23;3663:31;3688:5;3663:31;:::i;3729:184::-;3781:77;3778:1;3771:88;3878:4;3875:1;3868:15;3902:4;3899:1;3892:15;3918:334;3989:2;3983:9;4045:2;4035:13;;-1:-1:-1;;4031:86:1;4019:99;;4148:18;4133:34;;4169:22;;;4130:62;4127:88;;;4195:18;;:::i;:::-;4231:2;4224:22;3918:334;;-1:-1:-1;3918:334:1:o;4257:712::-;4311:5;4364:3;4357:4;4349:6;4345:17;4341:27;4331:55;;4382:1;4379;4372:12;4331:55;4418:6;4405:20;4444:4;4467:18;4463:2;4460:26;4457:52;;;4489:18;;:::i;:::-;4535:2;4532:1;4528:10;4558:28;4582:2;4578;4574:11;4558:28;:::i;:::-;4620:15;;;4690;;;4686:24;;;4651:12;;;;4722:15;;;4719:35;;;4750:1;4747;4740:12;4719:35;4786:2;4778:6;4774:15;4763:26;;4798:142;4814:6;4809:3;4806:15;4798:142;;;4880:17;;4868:30;;4831:12;;;;4918;;;;4798:142;;4974:348;5058:6;5111:2;5099:9;5090:7;5086:23;5082:32;5079:52;;;5127:1;5124;5117:12;5079:52;5167:9;5154:23;5200:18;5192:6;5189:30;5186:50;;;5232:1;5229;5222:12;5186:50;5255:61;5308:7;5299:6;5288:9;5284:22;5255:61;:::i;5327:456::-;5404:6;5412;5420;5473:2;5461:9;5452:7;5448:23;5444:32;5441:52;;;5489:1;5486;5479:12;5441:52;5528:9;5515:23;5547:31;5572:5;5547:31;:::i;:::-;5597:5;-1:-1:-1;5654:2:1;5639:18;;5626:32;5667:33;5626:32;5667:33;:::i;:::-;5327:456;;5719:7;;-1:-1:-1;;;5773:2:1;5758:18;;;;5745:32;;5327:456::o;5788:248::-;5856:6;5864;5917:2;5905:9;5896:7;5892:23;5888:32;5885:52;;;5933:1;5930;5923:12;5885:52;-1:-1:-1;;5956:23:1;;;6026:2;6011:18;;;5998:32;;-1:-1:-1;5788:248:1:o;6223:403::-;6306:6;6314;6367:2;6355:9;6346:7;6342:23;6338:32;6335:52;;;6383:1;6380;6373:12;6335:52;6422:9;6409:23;6441:31;6466:5;6441:31;:::i;:::-;6491:5;-1:-1:-1;6548:2:1;6533:18;;6520:32;6561:33;6520:32;6561:33;:::i;6631:592::-;6702:6;6710;6763:2;6751:9;6742:7;6738:23;6734:32;6731:52;;;6779:1;6776;6769:12;6731:52;6819:9;6806:23;6848:18;6889:2;6881:6;6878:14;6875:34;;;6905:1;6902;6895:12;6875:34;6943:6;6932:9;6928:22;6918:32;;6988:7;6981:4;6977:2;6973:13;6969:27;6959:55;;7010:1;7007;7000:12;6959:55;7050:2;7037:16;7076:2;7068:6;7065:14;7062:34;;;7092:1;7089;7082:12;7062:34;7137:7;7132:2;7123:6;7119:2;7115:15;7111:24;7108:37;7105:57;;;7158:1;7155;7148:12;7105:57;7189:2;7181:11;;;;;7211:6;;-1:-1:-1;6631:592:1;;-1:-1:-1;;;;6631:592:1:o;7228:367::-;7291:8;7301:6;7355:3;7348:4;7340:6;7336:17;7332:27;7322:55;;7373:1;7370;7363:12;7322:55;-1:-1:-1;7396:20:1;;7439:18;7428:30;;7425:50;;;7471:1;7468;7461:12;7425:50;7508:4;7500:6;7496:17;7484:29;;7568:3;7561:4;7551:6;7548:1;7544:14;7536:6;7532:27;7528:38;7525:47;7522:67;;;7585:1;7582;7575:12;7600:773;7722:6;7730;7738;7746;7799:2;7787:9;7778:7;7774:23;7770:32;7767:52;;;7815:1;7812;7805:12;7767:52;7855:9;7842:23;7884:18;7925:2;7917:6;7914:14;7911:34;;;7941:1;7938;7931:12;7911:34;7980:70;8042:7;8033:6;8022:9;8018:22;7980:70;:::i;:::-;8069:8;;-1:-1:-1;7954:96:1;-1:-1:-1;8157:2:1;8142:18;;8129:32;;-1:-1:-1;8173:16:1;;;8170:36;;;8202:1;8199;8192:12;8170:36;;8241:72;8305:7;8294:8;8283:9;8279:24;8241:72;:::i;:::-;7600:773;;;;-1:-1:-1;8332:8:1;-1:-1:-1;;;;7600:773:1:o;8630:163::-;8697:20;;8757:10;8746:22;;8736:33;;8726:61;;8783:1;8780;8773:12;8726:61;8630:163;;;:::o;8798:401::-;8880:6;8888;8896;8904;8957:3;8945:9;8936:7;8932:23;8928:33;8925:53;;;8974:1;8971;8964:12;8925:53;8997:28;9015:9;8997:28;:::i;:::-;8987:38;;9044:37;9077:2;9066:9;9062:18;9044:37;:::i;:::-;9034:47;;9100:37;9133:2;9122:9;9118:18;9100:37;:::i;:::-;9090:47;;9156:37;9189:2;9178:9;9174:18;9156:37;:::i;:::-;9146:47;;8798:401;;;;;;;:::o;9389:118::-;9475:5;9468:13;9461:21;9454:5;9451:32;9441:60;;9497:1;9494;9487:12;9512:382;9577:6;9585;9638:2;9626:9;9617:7;9613:23;9609:32;9606:52;;;9654:1;9651;9644:12;9606:52;9693:9;9680:23;9712:31;9737:5;9712:31;:::i;:::-;9762:5;-1:-1:-1;9819:2:1;9804:18;;9791:32;9832:30;9791:32;9832:30;:::i;9899:465::-;9963:5;9997:18;9989:6;9986:30;9983:56;;;10019:18;;:::i;:::-;10057:116;10167:4;-1:-1:-1;;10093:2:1;10085:6;10081:15;10077:88;10073:99;10057:116;:::i;:::-;10048:125;;10196:6;10189:5;10182:21;10236:3;10227:6;10222:3;10218:16;10215:25;10212:45;;;10253:1;10250;10243:12;10212:45;10302:6;10297:3;10290:4;10283:5;10279:16;10266:43;10356:1;10349:4;10340:6;10333:5;10329:18;10325:29;10318:40;9899:465;;;;;:::o;10369:794::-;10464:6;10472;10480;10488;10541:3;10529:9;10520:7;10516:23;10512:33;10509:53;;;10558:1;10555;10548:12;10509:53;10597:9;10584:23;10616:31;10641:5;10616:31;:::i;:::-;10666:5;-1:-1:-1;10723:2:1;10708:18;;10695:32;10736:33;10695:32;10736:33;:::i;:::-;10788:7;-1:-1:-1;10842:2:1;10827:18;;10814:32;;-1:-1:-1;10897:2:1;10882:18;;10869:32;10924:18;10913:30;;10910:50;;;10956:1;10953;10946:12;10910:50;10979:22;;11032:4;11024:13;;11020:27;-1:-1:-1;11010:55:1;;11061:1;11058;11051:12;11010:55;11084:73;11149:7;11144:2;11131:16;11126:2;11122;11118:11;11084:73;:::i;:::-;11074:83;;;10369:794;;;;;;;:::o;11168:416::-;11261:6;11269;11322:2;11310:9;11301:7;11297:23;11293:32;11290:52;;;11338:1;11335;11328:12;11290:52;11374:9;11361:23;11351:33;;11435:2;11424:9;11420:18;11407:32;11462:18;11454:6;11451:30;11448:50;;;11494:1;11491;11484:12;11448:50;11517:61;11570:7;11561:6;11550:9;11546:22;11517:61;:::i;:::-;11507:71;;;11168:416;;;;;:::o;12249:450::-;12318:6;12371:2;12359:9;12350:7;12346:23;12342:32;12339:52;;;12387:1;12384;12377:12;12339:52;12427:9;12414:23;12460:18;12452:6;12449:30;12446:50;;;12492:1;12489;12482:12;12446:50;12515:22;;12568:4;12560:13;;12556:27;-1:-1:-1;12546:55:1;;12597:1;12594;12587:12;12546:55;12620:73;12685:7;12680:2;12667:16;12662:2;12658;12654:11;12620:73;:::i;12704:437::-;12783:1;12779:12;;;;12826;;;12847:61;;12901:4;12893:6;12889:17;12879:27;;12847:61;12954:2;12946:6;12943:14;12923:18;12920:38;12917:218;;12991:77;12988:1;12981:88;13092:4;13089:1;13082:15;13120:4;13117:1;13110:15;12917:218;;12704:437;;;:::o;13965:184::-;14017:77;14014:1;14007:88;14114:4;14111:1;14104:15;14138:4;14135:1;14128:15;14154:125;14219:9;;;14240:10;;;14237:36;;;14253:18;;:::i;14863:168::-;14936:9;;;14967;;14984:15;;;14978:22;;14964:37;14954:71;;15005:18;;:::i;15225:274::-;15265:1;15291;15281:189;;15326:77;15323:1;15316:88;15427:4;15424:1;15417:15;15455:4;15452:1;15445:15;15281:189;-1:-1:-1;15484:9:1;;15225:274::o;15630:545::-;15732:2;15727:3;15724:11;15721:448;;;15768:1;15793:5;15789:2;15782:17;15838:4;15834:2;15824:19;15908:2;15896:10;15892:19;15889:1;15885:27;15879:4;15875:38;15944:4;15932:10;15929:20;15926:47;;;-1:-1:-1;15967:4:1;15926:47;16022:2;16017:3;16013:12;16010:1;16006:20;16000:4;15996:31;15986:41;;16077:82;16095:2;16088:5;16085:13;16077:82;;;16140:17;;;16121:1;16110:13;16077:82;;;16081:3;;;15630:545;;;:::o;16411:1325::-;16535:18;16530:3;16527:27;16524:53;;;16557:18;;:::i;:::-;16586:94;16676:3;16636:38;16668:4;16662:11;16636:38;:::i;:::-;16630:4;16586:94;:::i;:::-;16706:1;16731:2;16726:3;16723:11;16748:1;16743:735;;;;17522:1;17539:3;17536:93;;;-1:-1:-1;17595:19:1;;;17582:33;17536:93;-1:-1:-1;;16308:1:1;16304:11;;;16300:84;16296:89;16286:100;16392:1;16388:11;;;16283:117;17642:78;;16716:1014;;16743:735;15577:1;15570:14;;;15614:4;15601:18;;-1:-1:-1;;16779:76:1;;;16939:9;16961:229;16975:7;16972:1;16969:14;16961:229;;;17064:19;;;17051:33;17036:49;;17171:4;17156:20;;;;17124:1;17112:14;;;;16991:12;16961:229;;;16965:3;17218;17209:7;17206:16;17203:219;;;-1:-1:-1;;17332:3:1;17326;17323:1;17319:11;17315:21;17311:94;17307:99;17294:9;17289:3;17285:19;17272:33;17268:139;17260:6;17253:155;17203:219;;;17465:1;17459:3;17456:1;17452:11;17448:19;17442:4;17435:33;16716:1014;;16411:1325;;;:::o;17741:184::-;17793:77;17790:1;17783:88;17890:4;17887:1;17880:15;17914:4;17911:1;17904:15;17930:184;18000:6;18053:2;18041:9;18032:7;18028:23;18024:32;18021:52;;;18069:1;18066;18059:12;18021:52;-1:-1:-1;18092:16:1;;17930:184;-1:-1:-1;17930:184:1:o;18119:663::-;18399:3;18437:6;18431:13;18453:66;18512:6;18507:3;18500:4;18492:6;18488:17;18453:66;:::i;:::-;18582:13;;18541:16;;;;18604:70;18582:13;18541:16;18651:4;18639:17;;18604:70;:::i;:::-;18739:7;18696:20;;18725:22;;;18774:1;18763:13;;18119:663;-1:-1:-1;;;;18119:663:1:o;18787:180::-;18854:18;18892:10;;;18904;;;18888:27;;18927:11;;;18924:37;;;18941:18;;:::i;:::-;18924:37;18787:180;;;;:::o;18972:1471::-;19098:3;19092:10;19125:18;19117:6;19114:30;19111:56;;;19147:18;;:::i;:::-;19176:97;19266:6;19226:38;19258:4;19252:11;19226:38;:::i;:::-;19220:4;19176:97;:::i;:::-;19328:4;;19392:2;19381:14;;19409:1;19404:782;;;;20230:1;20247:6;20244:89;;;-1:-1:-1;20299:19:1;;;20293:26;20244:89;-1:-1:-1;;16308:1:1;16304:11;;;16300:84;16296:89;16286:100;16392:1;16388:11;;;16283:117;20346:81;;19374:1063;;19404:782;15577:1;15570:14;;;15614:4;15601:18;;-1:-1:-1;;19440:79:1;;;19617:236;19631:7;19628:1;19625:14;19617:236;;;19720:19;;;19714:26;19699:42;;19812:27;;;;19780:1;19768:14;;;;19647:19;;19617:236;;;19621:3;19881:6;19872:7;19869:19;19866:261;;;19942:19;;;19936:26;-1:-1:-1;;20025:1:1;20021:14;;;20037:3;20017:24;20013:97;20009:102;19994:118;19979:134;;19866:261;-1:-1:-1;;;;;20173:1:1;20157:14;;;20153:22;20140:36;;-1:-1:-1;18972:1471:1:o;22976:128::-;23043:9;;;23064:11;;;23061:37;;;23078:18;;:::i;23109:512::-;23303:4;-1:-1:-1;;;;;23413:2:1;23405:6;23401:15;23390:9;23383:34;23465:2;23457:6;23453:15;23448:2;23437:9;23433:18;23426:43;;23505:6;23500:2;23489:9;23485:18;23478:34;23548:3;23543:2;23532:9;23528:18;23521:31;23569:46;23610:3;23599:9;23595:19;23587:6;23569:46;:::i;:::-;23561:54;23109:512;-1:-1:-1;;;;;;23109:512:1:o;23626:249::-;23695:6;23748:2;23736:9;23727:7;23723:23;23719:32;23716:52;;;23764:1;23761;23754:12;23716:52;23796:9;23790:16;23815:30;23839:5;23815:30;:::i;23880:195::-;23919:3;-1:-1:-1;;23943:5:1;23940:77;23937:103;;24020:18;;:::i;:::-;-1:-1:-1;24067:1:1;24056:13;;23880:195::o;24080:245::-;24147:6;24200:2;24188:9;24179:7;24175:23;24171:32;24168:52;;;24216:1;24213;24206:12;24168:52;24248:9;24242:16;24267:28;24289:5;24267:28;:::i;25148:287::-;25277:3;25315:6;25309:13;25331:66;25390:6;25385:3;25378:4;25370:6;25366:17;25331:66;:::i;:::-;25413:16;;;;;25148:287;-1:-1:-1;;25148:287:1:o

Swarm Source

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

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