ETH Price: $3,300.85 (-3.47%)
Gas: 13 Gwei

Token

Clouded Crew ()
 

Overview

Max Total Supply

2,544

Holders

496

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x0e173b931e84b496b97f433db9ebf97b596d3688
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:
CloudedCrew

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 3333 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: out/CloudedCrew_flat.sol


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

pragma solidity ^0.8.0;

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

// 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 v4.4.1 (utils/Strings.sol)



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

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

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

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

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




// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)




// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)





/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}


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





/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)





/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}


// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "Address: low-level call failed");
    }

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

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

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

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

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

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

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

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

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

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

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

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



// 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 the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}



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



/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


contract OwnableDelegateProxy {}

/**
Used to delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users
 */
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/////////////////////////////////
/// ERRORS
/////////////////////////////////

error PresaleNotActive();
error PresaleIsActive();
error SalePaused();
error InvalidPresaleAmount();
error NotOnWhitelist();
error InvalidQuantity();
error InsufficientETH();
error InvalidTokenID();
error InvalidGeneralSaleQuantity();
error FreeSupplyStillAvailable();

/// @title CloudedCrew
///@author Karsh Sinha <[email protected]>
contract CloudedCrew is ERC1155, Ownable {
    /////////////////////////////////
    /// PUBLIC VARS
    /////////////////////////////////

    string public name;
    bool public isPresaleActive = true;
    bool public isSalePaused = false;
    mapping(address => uint256) public presaleMintCount;
    mapping(address => uint256) public freeSupplyMintCount;
    mapping(address => uint256) public generalSaleMintCount;
    uint256 public currentTokenID = 1;
    bytes32 public whitelist_merkle_tree_root;
    uint256 public minting_fee = 0.0333 ether;

    /////////////////////////////////
    /// CONSTANTS
    /////////////////////////////////

    string public constant METADATA_PROVENANCE_HASH =
        "0xf7be2e1dcabf611b83404e57c13cc31947115973d6716ba6a6f688a7209c4931";
    uint256 public constant MAX_NFT_SUPPLY = 3333;
    uint256 public constant MAX_FREE_SUPPLY = 2333;
    uint256 public constant MAX_PRESALE_MINT_COUNT = 3;
    uint256 public constant MAX_FREE_SUPPLY_MINT_COUNT = 6;
    uint256 public constant MAX_GENERAL_SALE_MINT_COUNT = 6;

    /////////////////////////////////
    /// PRIVATE VARS
    /////////////////////////////////

    address private _payout_wallet; //TODO: Create splits contract at 0xsplits.xyz before mainnet deployment
    address private immutable _PROXY_REGISTRY_ADDRESS;

    /////////////////////////////////
    /// MODIFIERS
    /////////////////////////////////

    modifier checkPresaleActive() {
        if (!isPresaleActive) {
            revert PresaleNotActive();
        }
        _;
    }

    modifier checkPresaleInactive() {
        if (isPresaleActive) {
            revert PresaleIsActive();
        }
        _;
    }

    modifier checkSaleStatus() {
        if (isSalePaused) {
            revert SalePaused();
        }
        _;
    }

    modifier checkPresaleMintCount(uint256 quantity) {
        if (presaleMintCount[msg.sender] + quantity > MAX_PRESALE_MINT_COUNT) {
            revert InvalidPresaleAmount();
        }
        _;
    }

    modifier verifyWhitelist(bytes32[] calldata proof) {
        if (
            !MerkleProof.verify(
                proof,
                whitelist_merkle_tree_root,
                keccak256(abi.encodePacked(msg.sender))
            )
        ) {
            revert NotOnWhitelist();
        }
        _;
    }

    modifier checkMaxSupply(uint256 quantity) {
        if (currentTokenID + quantity - 1 > MAX_NFT_SUPPLY) {
            revert InvalidQuantity();
        }
        _;
    }

    modifier checkFreeSupply(uint256 quantity) {
        if (currentTokenID + quantity - 1 > MAX_FREE_SUPPLY) {
            revert InvalidQuantity();
        }
        _;
    }

    modifier checkFreeSupplyMintCount(uint256 quantity) {
        if (
            freeSupplyMintCount[msg.sender] + quantity >
            MAX_FREE_SUPPLY_MINT_COUNT
        ) {
            revert InvalidQuantity();
        }
        _;
    }

    modifier checkGeneralSaleMintCount(uint256 quantity) {
        if (
            generalSaleMintCount[msg.sender] + quantity >
            MAX_GENERAL_SALE_MINT_COUNT
        ) {
            revert InvalidGeneralSaleQuantity();
        }
        _;
    }

    modifier checkTokenID(uint256 tokenID) {
        if (tokenID > currentTokenID - 1 || tokenID <= 0) {
            revert InvalidTokenID();
        }
        _;
    }

    modifier checkValue(uint256 quantity) {
        if (msg.value < quantity * minting_fee) {
            revert InsufficientETH();
        }
        _;
    }

    modifier checkFreeSupplyDone() {
        if (currentTokenID <= MAX_FREE_SUPPLY) {
            revert FreeSupplyStillAvailable();
        }
        _;
    }

    /////////////////////////////////
    /// CONSTRUCTOR
    /////////////////////////////////

    /// @notice Setting base metadata URI to unrevealed metadata during contract deployment. Once all NFTs have been minted, contract owner will update base metadata URI to point to the actual metadata.  To ensure that metadata for each NFT was set prior to contract deployment, we have stored the provenance hash of all metadata JSON files in the contract as METADATA_PROVENANCE_HASH.  This provenance hash was computed by hashing a list of hashes of JSON metadata object for each NFT in order from 1 to MAX_NFT_SUPPLY.  This was done in Python using the web3.solidityKeccak method
    constructor(
        bytes32 _whitelist_merkle_tree_root,
        address payout_wallet,
        string memory baseMetadataURI,
        address proxyRegistryAddressOpensea
    ) ERC1155(baseMetadataURI) {
        name = "Clouded Crew";
        whitelist_merkle_tree_root = _whitelist_merkle_tree_root;
        _payout_wallet = payout_wallet;
        _PROXY_REGISTRY_ADDRESS = proxyRegistryAddressOpensea;

        uint256[] memory _ids = new uint256[](33);
        uint256[] memory _numTokens = new uint256[](33);

        for (uint256 i = 0; i < 33; i++) {
            _ids[i] = currentTokenID + i;
            _numTokens[i] = 1;
        }
        currentTokenID = currentTokenID + 33;
        _mintBatch(msg.sender, _ids, _numTokens, "");
    }

    /////////////////////////////////
    /// EXTERNAL METHODS
    /////////////////////////////////

    /// @dev Function to mint presale NFTs
    /// @param proof Merkle proof provided by the client
    /// @param quantity Number of NFTs to mint
    function mintPresale(bytes32[] calldata proof, uint256 quantity)
        external
        checkPresaleActive
        checkSaleStatus
        verifyWhitelist(proof)
        checkPresaleMintCount(quantity)
    {
        uint256[] memory _ids = new uint256[](quantity);
        uint256[] memory _numTokens = new uint256[](quantity);

        for (uint256 i = 0; i < quantity; i++) {
            _ids[i] = currentTokenID + i;
            _numTokens[i] = 1;
        }
        currentTokenID = currentTokenID + quantity;
        presaleMintCount[msg.sender] += quantity;
        _mintBatch(msg.sender, _ids, _numTokens, "");
    }

    /// @dev Mint _quantity number of free NFTs
    /// @param quantity Number of NFTs to mint
    function mintFree(uint256 quantity)
        external
        checkPresaleInactive
        checkSaleStatus
        checkFreeSupplyMintCount(quantity)
        checkFreeSupply(quantity)
    {
        uint256[] memory _ids = new uint256[](quantity);
        uint256[] memory _numTokens = new uint256[](quantity);

        for (uint256 i = 0; i < quantity; i++) {
            _ids[i] = currentTokenID + i;
            _numTokens[i] = 1;
        }
        currentTokenID = currentTokenID + quantity;
        freeSupplyMintCount[msg.sender] += quantity;
        _mintBatch(msg.sender, _ids, _numTokens, "");
    }

    /// @dev Mint _quantity number of NFTs
    /// @param quantity Number of NFTs to mint
    function mintRegular(uint256 quantity)
        external
        payable
        checkPresaleInactive
        checkSaleStatus
        checkFreeSupplyDone
        checkMaxSupply(quantity)
        checkGeneralSaleMintCount(quantity)
        checkValue(quantity)
    {
        uint256[] memory _ids = new uint256[](quantity);
        uint256[] memory _numTokens = new uint256[](quantity);

        for (uint256 i = 0; i < quantity; i++) {
            _ids[i] = currentTokenID + i;
            _numTokens[i] = 1;
        }
        currentTokenID = currentTokenID + quantity;
        generalSaleMintCount[msg.sender] += quantity;
        _mintBatch(msg.sender, _ids, _numTokens, "");
    }

    /// @dev Function to start/pause the sale
    /// @param status Boolean to set sale to paused or unpaused
    function updateSalePausedStatus(bool status) external onlyOwner {
        isSalePaused = status;
    }

    /// @dev Update presale status
    /// @param status The new status of the presale
    function updatePresaleStatus(bool status) external onlyOwner {
        isPresaleActive = status;
    }

    /// @dev Withdraw full balance the splits contract
    function withdraw() external onlyOwner {
        payable(_payout_wallet).transfer(address(this).balance);
    }

    /// @dev Will update the base metadata URI of NFTs
    /// @param newBaseMetadataURI New base URL
    function setBaseMetadataURI(string calldata newBaseMetadataURI)
        external
        onlyOwner
    {
        _setURI(newBaseMetadataURI);
    }

    /// @dev Updates the payout wallet
    /// @param newPayoutWallet New payout wallet address
    function setPayoutWallet(address newPayoutWallet) external onlyOwner {
        _payout_wallet = newPayoutWallet;
    }

    /// @notice Update merkle tree root
    /// @param newMerkleTreeRoot New merkle tree root
    function updateWhitelistMerkleTreeRoot(bytes32 newMerkleTreeRoot)
        external
        onlyOwner
    {
        whitelist_merkle_tree_root = newMerkleTreeRoot;
    }

    /// @notice Update minting fee
    /// @param newMintingFee New minting fee
    function updateMintingFee(uint256 newMintingFee) external onlyOwner {
        minting_fee = newMintingFee;
    }

    /////////////////////////////////
    /// PUBLIC METHODS
    /////////////////////////////////

    bytes4 private constant INTERFACE_SIGNATURE_ERC165 = 0x01ffc9a7;
    bytes4 private constant INTERFACE_SIGNATURE_ERC1155 = 0xd9b67a26;

    /// @dev See {IERC165-supportsInterface}.
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        if (
            interfaceId == INTERFACE_SIGNATURE_ERC165 ||
            interfaceId == INTERFACE_SIGNATURE_ERC1155
        ) {
            return true;
        }
        return false;
    }

    /// @dev Generate NFT metadata URI for a given NFT token ID
    /// @param tokenID Token ID for the NFT
    function uri(uint256 tokenID)
        public
        view
        override
        checkTokenID(tokenID)
        returns (string memory)
    {
        return
            string(
                abi.encodePacked(
                    super.uri(tokenID),
                    Strings.toString(tokenID),
                    ".json"
                )
            );
    }

    /// @dev Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(_PROXY_REGISTRY_ADDRESS);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_whitelist_merkle_tree_root","type":"bytes32"},{"internalType":"address","name":"payout_wallet","type":"address"},{"internalType":"string","name":"baseMetadataURI","type":"string"},{"internalType":"address","name":"proxyRegistryAddressOpensea","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"FreeSupplyStillAvailable","type":"error"},{"inputs":[],"name":"InsufficientETH","type":"error"},{"inputs":[],"name":"InvalidGeneralSaleQuantity","type":"error"},{"inputs":[],"name":"InvalidPresaleAmount","type":"error"},{"inputs":[],"name":"InvalidQuantity","type":"error"},{"inputs":[],"name":"InvalidTokenID","type":"error"},{"inputs":[],"name":"NotOnWhitelist","type":"error"},{"inputs":[],"name":"PresaleIsActive","type":"error"},{"inputs":[],"name":"PresaleNotActive","type":"error"},{"inputs":[],"name":"SalePaused","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GENERAL_SALE_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeSupplyMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"generalSaleMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintRegular","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minting_fee","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":"address","name":"","type":"address"}],"name":"presaleMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"newBaseMetadataURI","type":"string"}],"name":"setBaseMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPayoutWallet","type":"address"}],"name":"setPayoutWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintingFee","type":"uint256"}],"name":"updateMintingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"updatePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"updateSalePausedStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleTreeRoot","type":"bytes32"}],"name":"updateWhitelistMerkleTreeRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelist_merkle_tree_root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526005805461ffff1916600190811790915560095566764e2c6f054000600b553480156200003057600080fd5b5060405162003ce738038062003ce7833981016040819052620000539162000743565b816200005f81620001cb565b506200006b33620001e4565b60408051808201909152600c8082526b436c6f75646564204372657760a01b6020909201918252620000a09160049162000608565b50600a849055600c80546001600160a01b0319166001600160a01b0385811691909117909155811660805260408051602180825261044082019092526000916020820161042080368337505060408051602180825261044082019092529293506000929150602082016104208036833701905050905060005b60218110156200018b57806009546200013391906200082c565b83828151811062000148576200014862000847565b60200260200101818152505060018282815181106200016b576200016b62000847565b60209081029190910101528062000182816200085d565b91505062000119565b506009546200019c9060216200082c565b600955604080516020810190915260008152620001bf9033908490849062000236565b50505050505062000aad565b8051620001e090600290602084019062000608565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166200029c5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b8151835114620003005760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840162000293565b3360005b8451811015620003a85783818151811062000323576200032362000847565b602002602001015160008087848151811062000343576200034362000847565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546200038d91906200082c565b909155508190506200039f816200085d565b91505062000304565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051620003fb929190620008b8565b60405180910390a4620004148160008787878762000423565b5050505050565b505050505050565b62000442846001600160a01b0316620005f960201b620019cd1760201c565b156200041b5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906200047e908990899088908890889060040162000918565b6020604051808303816000875af1925050508015620004bc575060408051601f3d908101601f19168201909252620004b9918101906200097c565b60015b6200057d57620004cb620009af565b806308c379a014156200050c5750620004e3620009cc565b80620004f057506200050e565b8060405162461bcd60e51b815260040162000293919062000a5b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e746572000000000000000000000000606482015260840162000293565b6001600160e01b0319811663bc197c8160e01b14620005f05760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b606482015260840162000293565b50505050505050565b6001600160a01b03163b151590565b828054620006169062000a70565b90600052602060002090601f0160209004810192826200063a576000855562000685565b82601f106200065557805160ff191683800117855562000685565b8280016001018555821562000685579182015b828111156200068557825182559160200191906001019062000668565b506200069392915062000697565b5090565b5b8082111562000693576000815560010162000698565b80516001600160a01b0381168114620006c657600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715620007095762000709620006cb565b6040525050565b60005b838110156200072d57818101518382015260200162000713565b838111156200073d576000848401525b50505050565b600080600080608085870312156200075a57600080fd5b845193506200076c60208601620006ae565b60408601519093506001600160401b03808211156200078a57600080fd5b818701915087601f8301126200079f57600080fd5b815181811115620007b457620007b4620006cb565b6040519150620007cf601f8201601f191660200183620006e1565b808252886020828501011115620007e557600080fd5b620007f881602084016020860162000710565b5092506200080b905060608601620006ae565b905092959194509250565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000842576200084262000816565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141562000874576200087462000816565b5060010190565b600081518084526020808501945080840160005b83811015620008ad578151875295820195908201906001016200088f565b509495945050505050565b604081526000620008cd60408301856200087b565b8281036020840152620008e181856200087b565b95945050505050565b600081518084526200090481602086016020860162000710565b601f01601f19169290920160200192915050565b6001600160a01b0386811682528516602082015260a06040820181905260009062000946908301866200087b565b82810360608401526200095a81866200087b565b90508281036080840152620009708185620008ea565b98975050505050505050565b6000602082840312156200098f57600080fd5b81516001600160e01b031981168114620009a857600080fd5b9392505050565b600060033d1115620009c95760046000803e5060005160e01c5b90565b600060443d1015620009db5790565b6040516003193d81016004833e81513d6001600160401b03808311602484018310171562000a0b57505050505090565b828501915081518181111562000a245750505050505090565b843d870101602082850101111562000a3f5750505050505090565b62000a5060208286010187620006e1565b509095945050505050565b602081526000620009a86020830184620008ea565b600181811c9082168062000a8557607f821691505b6020821081141562000aa757634e487b7160e01b600052602260045260246000fd5b50919050565b60805161321e62000ac9600039600061177a015261321e6000f3fe60806040526004361061024d5760003560e01c80636c48f3ea11610138578063b5077f44116100b0578063e5d8e84c1161007f578063f0c9dc6011610064578063f0c9dc6014610643578063f242432a14610658578063f2fde38b1461067857600080fd5b8063e5d8e84c14610603578063e985e9c51461062357600080fd5b8063b5077f44146105a1578063bb62115e146105b7578063c0275a25146105cd578063c3355b8d146105ed57600080fd5b80638da5cb5b11610107578063a22cb465116100ec578063a22cb46514610541578063a414673314610561578063ad7f1ea11461058157600080fd5b80638da5cb5b146104ec5780639ed7553c1461051457600080fd5b80636c48f3ea146104a4578063715018a6146104b75780637e518ec8146104cc5780637f2bb5f8146103d057600080fd5b80632eb2c2d6116101cb57806349c77bf01161019a5780635ad35dc71161017f5780635ad35dc71461043d57806360d938dc1461046a5780636b8f9c431461048457600080fd5b806349c77bf0146103fa5780634e1273f41461041057600080fd5b80632eb2c2d61461039b578063302f0532146103bb5780633126abc8146103d05780633ccfd60b146103e557600080fd5b806306435291116102225780630888d692116102075780630888d6921461032e578063094e40721461034e5780630e89341c1461037b57600080fd5b806306435291146102ea57806306fdde031461030c57600080fd5b80628ca81614610252578062fdd58e1461028657806301ffc9a7146102b457806302ddb65b146102d4575b600080fd5b34801561025e57600080fd5b5060055461027190610100900460ff1681565b60405190151581526020015b60405180910390f35b34801561029257600080fd5b506102a66102a136600461284e565b610698565b60405190815260200161027d565b3480156102c057600080fd5b506102716102cf3660046128a8565b610744565b3480156102e057600080fd5b506102a661091d81565b3480156102f657600080fd5b5061030a6103053660046128e1565b6107ec565b005b34801561031857600080fd5b5061032161087d565b60405161027d9190612958565b34801561033a57600080fd5b5061030a6103493660046128e1565b61090b565b34801561035a57600080fd5b506102a661036936600461296b565b60066020526000908152604090205481565b34801561038757600080fd5b50610321610396366004612988565b610978565b3480156103a757600080fd5b5061030a6103b6366004612aed565b610a07565b3480156103c757600080fd5b506102a6600381565b3480156103dc57600080fd5b506102a6600681565b3480156103f157600080fd5b5061030a610aa9565b34801561040657600080fd5b506102a6600a5481565b34801561041c57600080fd5b5061043061042b366004612b9b565b610b3f565b60405161027d9190612ca3565b34801561044957600080fd5b506102a661045836600461296b565b60076020526000908152604090205481565b34801561047657600080fd5b506005546102719060ff1681565b34801561049057600080fd5b5061030a61049f36600461296b565b610c7d565b61030a6104b2366004612988565b610d11565b3480156104c357600080fd5b5061030a611014565b3480156104d857600080fd5b5061030a6104e7366004612cb6565b61107a565b3480156104f857600080fd5b506003546040516001600160a01b03909116815260200161027d565b34801561052057600080fd5b506102a661052f36600461296b565b60086020526000908152604090205481565b34801561054d57600080fd5b5061030a61055c366004612d28565b611117565b34801561056d57600080fd5b5061030a61057c366004612988565b611122565b34801561058d57600080fd5b5061030a61059c366004612d5d565b611398565b3480156105ad57600080fd5b506102a6610d0581565b3480156105c357600080fd5b506102a660095481565b3480156105d957600080fd5b5061030a6105e8366004612988565b611681565b3480156105f957600080fd5b506102a6600b5481565b34801561060f57600080fd5b5061030a61061e366004612988565b6116e0565b34801561062f57600080fd5b5061027161063e366004612dd8565b61173f565b34801561064f57600080fd5b50610321611837565b34801561066457600080fd5b5061030a610673366004612e11565b611853565b34801561068457600080fd5b5061030a61069336600461296b565b6118ee565b60006001600160a01b03831661071b5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a70000000000000000000000000000000000000000000000000000000014806107d757507fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000145b156107e457506001919050565b506000919050565b6003546001600160a01b031633146108465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b60058054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6004805461088a90612e7a565b80601f01602080910402602001604051908101604052809291908181526020018280546108b690612e7a565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b505050505081565b6003546001600160a01b031633146109655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6005805460ff1916911515919091179055565b606081600160095461098a9190612ec5565b811180610995575080155b156109cc576040517f6aa2a93700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109d5836119dc565b6109de84611a70565b6040516020016109ef929190612edc565b60405160208183030381529060405291505b50919050565b6001600160a01b038516331480610a235750610a23853361173f565b610a955760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610712565b610aa28585858585611ba2565b5050505050565b6003546001600160a01b03163314610b035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b3c573d6000803e3d6000fd5b50565b60608151835114610bb85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610712565b6000835167ffffffffffffffff811115610bd457610bd46129a1565b604051908082528060200260200182016040528015610bfd578160200160208202803683370190505b50905060005b8451811015610c7557610c48858281518110610c2157610c21612f33565b6020026020010151858381518110610c3b57610c3b612f33565b6020026020010151610698565b828281518110610c5a57610c5a612f33565b6020908102919091010152610c6e81612f49565b9050610c03565b509392505050565b6003546001600160a01b03163314610cd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60055460ff1615610d4e576040517f86ed1a5400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600554610100900460ff1615610d90576040517f8a98cbd000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61091d60095411610dcd576040517faa87732c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80610d05600182600954610de19190612f64565b610deb9190612ec5565b1115610e23576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600860205260409020548290600690610e43908390612f64565b1115610e7b576040517f124403c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600b5481610e8a9190612f7c565b341015610ec3576040517f6a12f10400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008467ffffffffffffffff811115610ede57610ede6129a1565b604051908082528060200260200182016040528015610f07578160200160208202803683370190505b50905060008567ffffffffffffffff811115610f2557610f256129a1565b604051908082528060200260200182016040528015610f4e578160200160208202803683370190505b50905060005b86811015610fb95780600954610f6a9190612f64565b838281518110610f7c57610f7c612f33565b6020026020010181815250506001828281518110610f9c57610f9c612f33565b602090810291909101015280610fb181612f49565b915050610f54565b5085600954610fc89190612f64565b6009553360009081526008602052604081208054889290610fea908490612f64565b9250508190555061100c33838360405180602001604052806000815250611e38565b505050505050565b6003546001600160a01b0316331461106e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b611078600061202f565b565b6003546001600160a01b031633146110d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b61111382828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061209992505050565b5050565b6111133383836120ac565b60055460ff161561115f576040517f86ed1a5400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600554610100900460ff16156111a1576040517f8a98cbd000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526007602052604090205481906006906111c1908390612f64565b11156111f9576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8161091d60018260095461120d9190612f64565b6112179190612ec5565b111561124f576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008367ffffffffffffffff81111561126a5761126a6129a1565b604051908082528060200260200182016040528015611293578160200160208202803683370190505b50905060008467ffffffffffffffff8111156112b1576112b16129a1565b6040519080825280602002602001820160405280156112da578160200160208202803683370190505b50905060005b8581101561134557806009546112f69190612f64565b83828151811061130857611308612f33565b602002602001018181525050600182828151811061132857611328612f33565b60209081029190910101528061133d81612f49565b9150506112e0565b50846009546113549190612f64565b6009553360009081526007602052604081208054879290611376908490612f64565b92505081905550610aa233838360405180602001604052806000815250611e38565b60055460ff166113d4576040517fe113695c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600554610100900460ff1615611416576040517f8a98cbd000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82826114a082828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201529092506034019050604051602081830303815290604052805190602001206121a1565b6114d6576040517f522fc3bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526006602052604090205483906003906114f6908390612f64565b111561152e576040517f13666ea300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008467ffffffffffffffff811115611549576115496129a1565b604051908082528060200260200182016040528015611572578160200160208202803683370190505b50905060008567ffffffffffffffff811115611590576115906129a1565b6040519080825280602002602001820160405280156115b9578160200160208202803683370190505b50905060005b8681101561162457806009546115d59190612f64565b8382815181106115e7576115e7612f33565b602002602001018181525050600182828151811061160757611607612f33565b60209081029190910101528061161c81612f49565b9150506115bf565b50856009546116339190612f64565b6009553360009081526006602052604081208054889290611655908490612f64565b9250508190555061167733838360405180602001604052806000815250611e38565b5050505050505050565b6003546001600160a01b031633146116db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600b55565b6003546001600160a01b0316331461173a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600a55565b6040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526000917f000000000000000000000000000000000000000000000000000000000000000091848116919083169063c455279190602401602060405180830381865afa1580156117c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ec9190612f9b565b6001600160a01b0316141561180557600191505061073e565b6001600160a01b0380851660009081526001602090815260408083209387168352929052205460ff165b949350505050565b6040518060800160405280604281526020016131a76042913981565b6001600160a01b03851633148061186f575061186f853361173f565b6118e15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610712565b610aa285858585856121b7565b6003546001600160a01b031633146119485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6001600160a01b0381166119c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610712565b610b3c8161202f565b6001600160a01b03163b151590565b6060600280546119eb90612e7a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1790612e7a565b8015611a645780601f10611a3957610100808354040283529160200191611a64565b820191906000526020600020905b815481529060010190602001808311611a4757829003601f168201915b50505050509050919050565b606081611ab057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ada5780611ac481612f49565b9150611ad39050600a83612fce565b9150611ab4565b60008167ffffffffffffffff811115611af557611af56129a1565b6040519080825280601f01601f191660200182016040528015611b1f576020820181803683370190505b5090505b841561182f57611b34600183612ec5565b9150611b41600a86612fe2565b611b4c906030612f64565b60f81b818381518110611b6157611b61612f33565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b9b600a86612fce565b9450611b23565b8151835114611c195760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610712565b6001600160a01b038416611c955760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610712565b3360005b8451811015611dd2576000858281518110611cb657611cb6612f33565b602002602001015190506000858381518110611cd457611cd4612f33565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611d7a5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610712565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611db7908490612f64565b9250508190555050505080611dcb90612f49565b9050611c99565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e22929190612ff6565b60405180910390a461100c818787878787612389565b6001600160a01b038416611eb45760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610712565b8151835114611f2b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610712565b3360005b8451811015611fc757838181518110611f4a57611f4a612f33565b6020026020010151600080878481518110611f6757611f67612f33565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611faf9190612f64565b90915550819050611fbf81612f49565b915050611f2f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612018929190612ff6565b60405180910390a4610aa281600087878787612389565b600380546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80516111139060029060208401906127a0565b816001600160a01b0316836001600160a01b031614156121345760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610712565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826121ae858461258e565b14949350505050565b6001600160a01b0384166122335760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610712565b3361224c818787612243886125fa565b610aa2886125fa565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156122e35760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610712565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612320908490612f64565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612380828888888888612645565b50505050505050565b6001600160a01b0384163b1561100c576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906123e69089908990889088908890600401613024565b6020604051808303816000875af1925050508015612421575060408051601f3d908101601f1916820190925261241e91810190613082565b60015b6124d75761242d61309f565b806308c379a0141561246757506124426130bb565b8061244d5750612469565b8060405162461bcd60e51b81526004016107129190612958565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610712565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146123805760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610712565b600081815b8451811015610c755760008582815181106125b0576125b0612f33565b602002602001015190508083116125d657600083815260208290526040902092506125e7565b600081815260208490526040902092505b50806125f281612f49565b915050612593565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061263457612634612f33565b602090810291909101015292915050565b6001600160a01b0384163b1561100c576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e61906126a29089908990889088908890600401613163565b6020604051808303816000875af19250505080156126dd575060408051601f3d908101601f191682019092526126da91810190613082565b60015b6126e95761242d61309f565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146123805760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610712565b8280546127ac90612e7a565b90600052602060002090601f0160209004810192826127ce5760008555612814565b82601f106127e757805160ff1916838001178555612814565b82800160010185558215612814579182015b828111156128145782518255916020019190600101906127f9565b50612820929150612824565b5090565b5b808211156128205760008155600101612825565b6001600160a01b0381168114610b3c57600080fd5b6000806040838503121561286157600080fd5b823561286c81612839565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b3c57600080fd5b6000602082840312156128ba57600080fd5b81356128c58161287a565b9392505050565b803580151581146128dc57600080fd5b919050565b6000602082840312156128f357600080fd5b6128c5826128cc565b60005b838110156129175781810151838201526020016128ff565b83811115612926576000848401525b50505050565b600081518084526129448160208601602086016128fc565b601f01601f19169290920160200192915050565b6020815260006128c5602083018461292c565b60006020828403121561297d57600080fd5b81356128c581612839565b60006020828403121561299a57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff821117156129dd576129dd6129a1565b6040525050565b600067ffffffffffffffff8211156129fe576129fe6129a1565b5060051b60200190565b600082601f830112612a1957600080fd5b81356020612a26826129e4565b604051612a3382826129b7565b83815260059390931b8501820192828101915086841115612a5357600080fd5b8286015b84811015612a6e5780358352918301918301612a57565b509695505050505050565b600082601f830112612a8a57600080fd5b813567ffffffffffffffff811115612aa457612aa46129a1565b604051612abb6020601f19601f85011601826129b7565b818152846020838601011115612ad057600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612b0557600080fd5b8535612b1081612839565b94506020860135612b2081612839565b9350604086013567ffffffffffffffff80821115612b3d57600080fd5b612b4989838a01612a08565b94506060880135915080821115612b5f57600080fd5b612b6b89838a01612a08565b93506080880135915080821115612b8157600080fd5b50612b8e88828901612a79565b9150509295509295909350565b60008060408385031215612bae57600080fd5b823567ffffffffffffffff80821115612bc657600080fd5b818501915085601f830112612bda57600080fd5b81356020612be7826129e4565b604051612bf482826129b7565b83815260059390931b8501820192828101915089841115612c1457600080fd5b948201945b83861015612c3b578535612c2c81612839565b82529482019490820190612c19565b96505086013592505080821115612c5157600080fd5b50612c5e85828601612a08565b9150509250929050565b600081518084526020808501945080840160005b83811015612c9857815187529582019590820190600101612c7c565b509495945050505050565b6020815260006128c56020830184612c68565b60008060208385031215612cc957600080fd5b823567ffffffffffffffff80821115612ce157600080fd5b818501915085601f830112612cf557600080fd5b813581811115612d0457600080fd5b866020828501011115612d1657600080fd5b60209290920196919550909350505050565b60008060408385031215612d3b57600080fd5b8235612d4681612839565b9150612d54602084016128cc565b90509250929050565b600080600060408486031215612d7257600080fd5b833567ffffffffffffffff80821115612d8a57600080fd5b818601915086601f830112612d9e57600080fd5b813581811115612dad57600080fd5b8760208260051b8501011115612dc257600080fd5b6020928301989097509590910135949350505050565b60008060408385031215612deb57600080fd5b8235612df681612839565b91506020830135612e0681612839565b809150509250929050565b600080600080600060a08688031215612e2957600080fd5b8535612e3481612839565b94506020860135612e4481612839565b93506040860135925060608601359150608086013567ffffffffffffffff811115612e6e57600080fd5b612b8e88828901612a79565b600181811c90821680612e8e57607f821691505b60208210811415610a0157634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612ed757612ed7612eaf565b500390565b60008351612eee8184602088016128fc565b835190830190612f028183602088016128fc565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612f5d57612f5d612eaf565b5060010190565b60008219821115612f7757612f77612eaf565b500190565b6000816000190483118215151615612f9657612f96612eaf565b500290565b600060208284031215612fad57600080fd5b81516128c581612839565b634e487b7160e01b600052601260045260246000fd5b600082612fdd57612fdd612fb8565b500490565b600082612ff157612ff1612fb8565b500690565b6040815260006130096040830185612c68565b828103602084015261301b8185612c68565b95945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261305060a0830186612c68565b82810360608401526130628186612c68565b90508281036080840152613076818561292c565b98975050505050505050565b60006020828403121561309457600080fd5b81516128c58161287a565b600060033d11156130b85760046000803e5060005160e01c5b90565b600060443d10156130c95790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561311757505050505090565b828501915081518181111561312f5750505050505090565b843d87010160208285010111156131495750505050505090565b613158602082860101876129b7565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261319b60a083018461292c565b97965050505050505056fe307866376265326531646361626636313162383334303465353763313363633331393437313135393733643637313662613661366636383861373230396334393331a2646970667358221220ff27fccbcc3aa4813b44205a53ac3d125a8aace99f50209ac959b0bf14fb8fdd64736f6c634300080b0033ed9dc751488993fb0e2257cbab76e54fd09d0c376c426e7d14b1b721d10ffe4b0000000000000000000000004cf713ae6d873fb3e9d211fa4dbaaa851e678f7f0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56724c6d5167726f776d624d66314d3959736569514736484e315a48577768616f756938315636777a6168532f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061024d5760003560e01c80636c48f3ea11610138578063b5077f44116100b0578063e5d8e84c1161007f578063f0c9dc6011610064578063f0c9dc6014610643578063f242432a14610658578063f2fde38b1461067857600080fd5b8063e5d8e84c14610603578063e985e9c51461062357600080fd5b8063b5077f44146105a1578063bb62115e146105b7578063c0275a25146105cd578063c3355b8d146105ed57600080fd5b80638da5cb5b11610107578063a22cb465116100ec578063a22cb46514610541578063a414673314610561578063ad7f1ea11461058157600080fd5b80638da5cb5b146104ec5780639ed7553c1461051457600080fd5b80636c48f3ea146104a4578063715018a6146104b75780637e518ec8146104cc5780637f2bb5f8146103d057600080fd5b80632eb2c2d6116101cb57806349c77bf01161019a5780635ad35dc71161017f5780635ad35dc71461043d57806360d938dc1461046a5780636b8f9c431461048457600080fd5b806349c77bf0146103fa5780634e1273f41461041057600080fd5b80632eb2c2d61461039b578063302f0532146103bb5780633126abc8146103d05780633ccfd60b146103e557600080fd5b806306435291116102225780630888d692116102075780630888d6921461032e578063094e40721461034e5780630e89341c1461037b57600080fd5b806306435291146102ea57806306fdde031461030c57600080fd5b80628ca81614610252578062fdd58e1461028657806301ffc9a7146102b457806302ddb65b146102d4575b600080fd5b34801561025e57600080fd5b5060055461027190610100900460ff1681565b60405190151581526020015b60405180910390f35b34801561029257600080fd5b506102a66102a136600461284e565b610698565b60405190815260200161027d565b3480156102c057600080fd5b506102716102cf3660046128a8565b610744565b3480156102e057600080fd5b506102a661091d81565b3480156102f657600080fd5b5061030a6103053660046128e1565b6107ec565b005b34801561031857600080fd5b5061032161087d565b60405161027d9190612958565b34801561033a57600080fd5b5061030a6103493660046128e1565b61090b565b34801561035a57600080fd5b506102a661036936600461296b565b60066020526000908152604090205481565b34801561038757600080fd5b50610321610396366004612988565b610978565b3480156103a757600080fd5b5061030a6103b6366004612aed565b610a07565b3480156103c757600080fd5b506102a6600381565b3480156103dc57600080fd5b506102a6600681565b3480156103f157600080fd5b5061030a610aa9565b34801561040657600080fd5b506102a6600a5481565b34801561041c57600080fd5b5061043061042b366004612b9b565b610b3f565b60405161027d9190612ca3565b34801561044957600080fd5b506102a661045836600461296b565b60076020526000908152604090205481565b34801561047657600080fd5b506005546102719060ff1681565b34801561049057600080fd5b5061030a61049f36600461296b565b610c7d565b61030a6104b2366004612988565b610d11565b3480156104c357600080fd5b5061030a611014565b3480156104d857600080fd5b5061030a6104e7366004612cb6565b61107a565b3480156104f857600080fd5b506003546040516001600160a01b03909116815260200161027d565b34801561052057600080fd5b506102a661052f36600461296b565b60086020526000908152604090205481565b34801561054d57600080fd5b5061030a61055c366004612d28565b611117565b34801561056d57600080fd5b5061030a61057c366004612988565b611122565b34801561058d57600080fd5b5061030a61059c366004612d5d565b611398565b3480156105ad57600080fd5b506102a6610d0581565b3480156105c357600080fd5b506102a660095481565b3480156105d957600080fd5b5061030a6105e8366004612988565b611681565b3480156105f957600080fd5b506102a6600b5481565b34801561060f57600080fd5b5061030a61061e366004612988565b6116e0565b34801561062f57600080fd5b5061027161063e366004612dd8565b61173f565b34801561064f57600080fd5b50610321611837565b34801561066457600080fd5b5061030a610673366004612e11565b611853565b34801561068457600080fd5b5061030a61069336600461296b565b6118ee565b60006001600160a01b03831661071b5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a70000000000000000000000000000000000000000000000000000000014806107d757507fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000145b156107e457506001919050565b506000919050565b6003546001600160a01b031633146108465760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b60058054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6004805461088a90612e7a565b80601f01602080910402602001604051908101604052809291908181526020018280546108b690612e7a565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b505050505081565b6003546001600160a01b031633146109655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6005805460ff1916911515919091179055565b606081600160095461098a9190612ec5565b811180610995575080155b156109cc576040517f6aa2a93700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109d5836119dc565b6109de84611a70565b6040516020016109ef929190612edc565b60405160208183030381529060405291505b50919050565b6001600160a01b038516331480610a235750610a23853361173f565b610a955760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610712565b610aa28585858585611ba2565b5050505050565b6003546001600160a01b03163314610b035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600c546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b3c573d6000803e3d6000fd5b50565b60608151835114610bb85760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610712565b6000835167ffffffffffffffff811115610bd457610bd46129a1565b604051908082528060200260200182016040528015610bfd578160200160208202803683370190505b50905060005b8451811015610c7557610c48858281518110610c2157610c21612f33565b6020026020010151858381518110610c3b57610c3b612f33565b6020026020010151610698565b828281518110610c5a57610c5a612f33565b6020908102919091010152610c6e81612f49565b9050610c03565b509392505050565b6003546001600160a01b03163314610cd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60055460ff1615610d4e576040517f86ed1a5400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600554610100900460ff1615610d90576040517f8a98cbd000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61091d60095411610dcd576040517faa87732c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80610d05600182600954610de19190612f64565b610deb9190612ec5565b1115610e23576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600860205260409020548290600690610e43908390612f64565b1115610e7b576040517f124403c800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600b5481610e8a9190612f7c565b341015610ec3576040517f6a12f10400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008467ffffffffffffffff811115610ede57610ede6129a1565b604051908082528060200260200182016040528015610f07578160200160208202803683370190505b50905060008567ffffffffffffffff811115610f2557610f256129a1565b604051908082528060200260200182016040528015610f4e578160200160208202803683370190505b50905060005b86811015610fb95780600954610f6a9190612f64565b838281518110610f7c57610f7c612f33565b6020026020010181815250506001828281518110610f9c57610f9c612f33565b602090810291909101015280610fb181612f49565b915050610f54565b5085600954610fc89190612f64565b6009553360009081526008602052604081208054889290610fea908490612f64565b9250508190555061100c33838360405180602001604052806000815250611e38565b505050505050565b6003546001600160a01b0316331461106e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b611078600061202f565b565b6003546001600160a01b031633146110d45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b61111382828080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061209992505050565b5050565b6111133383836120ac565b60055460ff161561115f576040517f86ed1a5400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600554610100900460ff16156111a1576040517f8a98cbd000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526007602052604090205481906006906111c1908390612f64565b11156111f9576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8161091d60018260095461120d9190612f64565b6112179190612ec5565b111561124f576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008367ffffffffffffffff81111561126a5761126a6129a1565b604051908082528060200260200182016040528015611293578160200160208202803683370190505b50905060008467ffffffffffffffff8111156112b1576112b16129a1565b6040519080825280602002602001820160405280156112da578160200160208202803683370190505b50905060005b8581101561134557806009546112f69190612f64565b83828151811061130857611308612f33565b602002602001018181525050600182828151811061132857611328612f33565b60209081029190910101528061133d81612f49565b9150506112e0565b50846009546113549190612f64565b6009553360009081526007602052604081208054879290611376908490612f64565b92505081905550610aa233838360405180602001604052806000815250611e38565b60055460ff166113d4576040517fe113695c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600554610100900460ff1615611416576040517f8a98cbd000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82826114a082828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a546040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201529092506034019050604051602081830303815290604052805190602001206121a1565b6114d6576040517f522fc3bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526006602052604090205483906003906114f6908390612f64565b111561152e576040517f13666ea300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008467ffffffffffffffff811115611549576115496129a1565b604051908082528060200260200182016040528015611572578160200160208202803683370190505b50905060008567ffffffffffffffff811115611590576115906129a1565b6040519080825280602002602001820160405280156115b9578160200160208202803683370190505b50905060005b8681101561162457806009546115d59190612f64565b8382815181106115e7576115e7612f33565b602002602001018181525050600182828151811061160757611607612f33565b60209081029190910101528061161c81612f49565b9150506115bf565b50856009546116339190612f64565b6009553360009081526006602052604081208054889290611655908490612f64565b9250508190555061167733838360405180602001604052806000815250611e38565b5050505050505050565b6003546001600160a01b031633146116db5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600b55565b6003546001600160a01b0316331461173a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b600a55565b6040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526000917f000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c191848116919083169063c455279190602401602060405180830381865afa1580156117c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ec9190612f9b565b6001600160a01b0316141561180557600191505061073e565b6001600160a01b0380851660009081526001602090815260408083209387168352929052205460ff165b949350505050565b6040518060800160405280604281526020016131a76042913981565b6001600160a01b03851633148061186f575061186f853361173f565b6118e15760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610712565b610aa285858585856121b7565b6003546001600160a01b031633146119485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610712565b6001600160a01b0381166119c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610712565b610b3c8161202f565b6001600160a01b03163b151590565b6060600280546119eb90612e7a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1790612e7a565b8015611a645780601f10611a3957610100808354040283529160200191611a64565b820191906000526020600020905b815481529060010190602001808311611a4757829003601f168201915b50505050509050919050565b606081611ab057505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611ada5780611ac481612f49565b9150611ad39050600a83612fce565b9150611ab4565b60008167ffffffffffffffff811115611af557611af56129a1565b6040519080825280601f01601f191660200182016040528015611b1f576020820181803683370190505b5090505b841561182f57611b34600183612ec5565b9150611b41600a86612fe2565b611b4c906030612f64565b60f81b818381518110611b6157611b61612f33565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611b9b600a86612fce565b9450611b23565b8151835114611c195760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610712565b6001600160a01b038416611c955760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610712565b3360005b8451811015611dd2576000858281518110611cb657611cb6612f33565b602002602001015190506000858381518110611cd457611cd4612f33565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611d7a5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610712565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611db7908490612f64565b9250508190555050505080611dcb90612f49565b9050611c99565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611e22929190612ff6565b60405180910390a461100c818787878787612389565b6001600160a01b038416611eb45760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610712565b8151835114611f2b5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610712565b3360005b8451811015611fc757838181518110611f4a57611f4a612f33565b6020026020010151600080878481518110611f6757611f67612f33565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611faf9190612f64565b90915550819050611fbf81612f49565b915050611f2f565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612018929190612ff6565b60405180910390a4610aa281600087878787612389565b600380546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80516111139060029060208401906127a0565b816001600160a01b0316836001600160a01b031614156121345760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610712565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000826121ae858461258e565b14949350505050565b6001600160a01b0384166122335760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610712565b3361224c818787612243886125fa565b610aa2886125fa565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156122e35760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e73666572000000000000000000000000000000000000000000006064820152608401610712565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612320908490612f64565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612380828888888888612645565b50505050505050565b6001600160a01b0384163b1561100c576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906123e69089908990889088908890600401613024565b6020604051808303816000875af1925050508015612421575060408051601f3d908101601f1916820190925261241e91810190613082565b60015b6124d75761242d61309f565b806308c379a0141561246757506124426130bb565b8061244d5750612469565b8060405162461bcd60e51b81526004016107129190612958565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610712565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c8100000000000000000000000000000000000000000000000000000000146123805760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610712565b600081815b8451811015610c755760008582815181106125b0576125b0612f33565b602002602001015190508083116125d657600083815260208290526040902092506125e7565b600081815260208490526040902092505b50806125f281612f49565b915050612593565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061263457612634612f33565b602090810291909101015292915050565b6001600160a01b0384163b1561100c576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e61906126a29089908990889088908890600401613163565b6020604051808303816000875af19250505080156126dd575060408051601f3d908101601f191682019092526126da91810190613082565b60015b6126e95761242d61309f565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e6100000000000000000000000000000000000000000000000000000000146123805760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e730000000000000000000000000000000000000000000000006064820152608401610712565b8280546127ac90612e7a565b90600052602060002090601f0160209004810192826127ce5760008555612814565b82601f106127e757805160ff1916838001178555612814565b82800160010185558215612814579182015b828111156128145782518255916020019190600101906127f9565b50612820929150612824565b5090565b5b808211156128205760008155600101612825565b6001600160a01b0381168114610b3c57600080fd5b6000806040838503121561286157600080fd5b823561286c81612839565b946020939093013593505050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610b3c57600080fd5b6000602082840312156128ba57600080fd5b81356128c58161287a565b9392505050565b803580151581146128dc57600080fd5b919050565b6000602082840312156128f357600080fd5b6128c5826128cc565b60005b838110156129175781810151838201526020016128ff565b83811115612926576000848401525b50505050565b600081518084526129448160208601602086016128fc565b601f01601f19169290920160200192915050565b6020815260006128c5602083018461292c565b60006020828403121561297d57600080fd5b81356128c581612839565b60006020828403121561299a57600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff821117156129dd576129dd6129a1565b6040525050565b600067ffffffffffffffff8211156129fe576129fe6129a1565b5060051b60200190565b600082601f830112612a1957600080fd5b81356020612a26826129e4565b604051612a3382826129b7565b83815260059390931b8501820192828101915086841115612a5357600080fd5b8286015b84811015612a6e5780358352918301918301612a57565b509695505050505050565b600082601f830112612a8a57600080fd5b813567ffffffffffffffff811115612aa457612aa46129a1565b604051612abb6020601f19601f85011601826129b7565b818152846020838601011115612ad057600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215612b0557600080fd5b8535612b1081612839565b94506020860135612b2081612839565b9350604086013567ffffffffffffffff80821115612b3d57600080fd5b612b4989838a01612a08565b94506060880135915080821115612b5f57600080fd5b612b6b89838a01612a08565b93506080880135915080821115612b8157600080fd5b50612b8e88828901612a79565b9150509295509295909350565b60008060408385031215612bae57600080fd5b823567ffffffffffffffff80821115612bc657600080fd5b818501915085601f830112612bda57600080fd5b81356020612be7826129e4565b604051612bf482826129b7565b83815260059390931b8501820192828101915089841115612c1457600080fd5b948201945b83861015612c3b578535612c2c81612839565b82529482019490820190612c19565b96505086013592505080821115612c5157600080fd5b50612c5e85828601612a08565b9150509250929050565b600081518084526020808501945080840160005b83811015612c9857815187529582019590820190600101612c7c565b509495945050505050565b6020815260006128c56020830184612c68565b60008060208385031215612cc957600080fd5b823567ffffffffffffffff80821115612ce157600080fd5b818501915085601f830112612cf557600080fd5b813581811115612d0457600080fd5b866020828501011115612d1657600080fd5b60209290920196919550909350505050565b60008060408385031215612d3b57600080fd5b8235612d4681612839565b9150612d54602084016128cc565b90509250929050565b600080600060408486031215612d7257600080fd5b833567ffffffffffffffff80821115612d8a57600080fd5b818601915086601f830112612d9e57600080fd5b813581811115612dad57600080fd5b8760208260051b8501011115612dc257600080fd5b6020928301989097509590910135949350505050565b60008060408385031215612deb57600080fd5b8235612df681612839565b91506020830135612e0681612839565b809150509250929050565b600080600080600060a08688031215612e2957600080fd5b8535612e3481612839565b94506020860135612e4481612839565b93506040860135925060608601359150608086013567ffffffffffffffff811115612e6e57600080fd5b612b8e88828901612a79565b600181811c90821680612e8e57607f821691505b60208210811415610a0157634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612ed757612ed7612eaf565b500390565b60008351612eee8184602088016128fc565b835190830190612f028183602088016128fc565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612f5d57612f5d612eaf565b5060010190565b60008219821115612f7757612f77612eaf565b500190565b6000816000190483118215151615612f9657612f96612eaf565b500290565b600060208284031215612fad57600080fd5b81516128c581612839565b634e487b7160e01b600052601260045260246000fd5b600082612fdd57612fdd612fb8565b500490565b600082612ff157612ff1612fb8565b500690565b6040815260006130096040830185612c68565b828103602084015261301b8185612c68565b95945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261305060a0830186612c68565b82810360608401526130628186612c68565b90508281036080840152613076818561292c565b98975050505050505050565b60006020828403121561309457600080fd5b81516128c58161287a565b600060033d11156130b85760046000803e5060005160e01c5b90565b600060443d10156130c95790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561311757505050505090565b828501915081518181111561312f5750505050505090565b843d87010160208285010111156131495750505050505090565b613158602082860101876129b7565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261319b60a083018461292c565b97965050505050505056fe307866376265326531646361626636313162383334303465353763313363633331393437313135393733643637313662613661366636383861373230396334393331a2646970667358221220ff27fccbcc3aa4813b44205a53ac3d125a8aace99f50209ac959b0bf14fb8fdd64736f6c634300080b0033

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

ed9dc751488993fb0e2257cbab76e54fd09d0c376c426e7d14b1b721d10ffe4b0000000000000000000000004cf713ae6d873fb3e9d211fa4dbaaa851e678f7f0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56724c6d5167726f776d624d66314d3959736569514736484e315a48577768616f756938315636777a6168532f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _whitelist_merkle_tree_root (bytes32): 0xed9dc751488993fb0e2257cbab76e54fd09d0c376c426e7d14b1b721d10ffe4b
Arg [1] : payout_wallet (address): 0x4Cf713AE6D873fb3e9d211FA4dbAaA851E678F7F
Arg [2] : baseMetadataURI (string): https://gateway.pinata.cloud/ipfs/QmVrLmQgrowmbMf1M9YseiQG6HN1ZHWwhaoui81V6wzahS/
Arg [3] : proxyRegistryAddressOpensea (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : ed9dc751488993fb0e2257cbab76e54fd09d0c376c426e7d14b1b721d10ffe4b
Arg [1] : 0000000000000000000000004cf713ae6d873fb3e9d211fa4dbaaa851e678f7f
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [5] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [6] : 732f516d56724c6d5167726f776d624d66314d3959736569514736484e315a48
Arg [7] : 577768616f756938315636777a6168532f000000000000000000000000000000


Deployed Bytecode Sourcemap

41199:11003:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41414:32;;;;;;;;;;-1:-1:-1;41414:32:0;;;;;;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;41414:32:0;;;;;;;;24700:231;;;;;;;;;;-1:-1:-1;24700:231:0;;;;;:::i;:::-;;:::i;:::-;;;831:25:1;;;819:2;804:18;24700:231:0;685:177:1;50783:350:0;;;;;;;;;;-1:-1:-1;50783:350:0;;;;;:::i;:::-;;:::i;42057:46::-;;;;;;;;;;;;42099:4;42057:46;;49028:104;;;;;;;;;;-1:-1:-1;49028:104:0;;;;;:::i;:::-;;:::i;:::-;;41348:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49229:104::-;;;;;;;;;;-1:-1:-1;49229:104:0;;;;;:::i;:::-;;:::i;41453:51::-;;;;;;;;;;-1:-1:-1;41453:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;51251:380;;;;;;;;;;-1:-1:-1;51251:380:0;;;;;:::i;:::-;;:::i;26639:442::-;;;;;;;;;;-1:-1:-1;26639:442:0;;;;;:::i;:::-;;:::i;42110:50::-;;;;;;;;;;;;42159:1;42110:50;;42167:54;;;;;;;;;;;;42220:1;42167:54;;49397:113;;;;;;;;;;;;;:::i;41674:41::-;;;;;;;;;;;;;;;;25097:524;;;;;;;;;;-1:-1:-1;25097:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;41511:54::-;;;;;;;;;;-1:-1:-1;41511:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;41373:34;;;;;;;;;;-1:-1:-1;41373:34:0;;;;;;;;49880:120;;;;;;;;;;-1:-1:-1;49880:120:0;;;;;:::i;:::-;;:::i;48205:703::-;;;;;;:::i;:::-;;:::i;5386:103::-;;;;;;;;;;;;;:::i;49622:152::-;;;;;;;;;;-1:-1:-1;49622:152:0;;;;;:::i;:::-;;:::i;4735:87::-;;;;;;;;;;-1:-1:-1;4808:6:0;;4735:87;;-1:-1:-1;;;;;4808:6:0;;;8923:74:1;;8911:2;8896:18;4735:87:0;8777:226:1;41572:55:0;;;;;;;;;;-1:-1:-1;41572:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;25694:155;;;;;;;;;;-1:-1:-1;25694:155:0;;;;;:::i;:::-;;:::i;47482:623::-;;;;;;;;;;-1:-1:-1;47482:623:0;;;;;:::i;:::-;;:::i;46736:641::-;;;;;;;;;;-1:-1:-1;46736:641:0;;;;;:::i;:::-;;:::i;42005:45::-;;;;;;;;;;;;42046:4;42005:45;;41634:33;;;;;;;;;;;;;;;;50367:114;;;;;;;;;;-1:-1:-1;50367:114:0;;;;;:::i;:::-;;:::i;41722:41::-;;;;;;;;;;;;;;;;50104:173;;;;;;;;;;-1:-1:-1;50104:173:0;;;;;:::i;:::-;;:::i;51751:448::-;;;;;;;;;;-1:-1:-1;51751:448:0;;;;;:::i;:::-;;:::i;41871:127::-;;;;;;;;;;;;;:::i;26161:401::-;;;;;;;;;;-1:-1:-1;26161:401:0;;;;;:::i;:::-;;:::i;5644:201::-;;;;;;;;;;-1:-1:-1;5644:201:0;;;;;:::i;:::-;;:::i;24700:231::-;24786:7;-1:-1:-1;;;;;24814:21:0;;24806:77;;;;-1:-1:-1;;;24806:77:0;;11541:2:1;24806:77:0;;;11523:21:1;11580:2;11560:18;;;11553:30;11619:34;11599:18;;;11592:62;11690:13;11670:18;;;11663:41;11721:19;;24806:77:0;;;;;;;;;-1:-1:-1;24901:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;24901:22:0;;;;;;;;;;24700:231;;;;;:::o;50783:350::-;50913:4;50953:41;;;50968:26;50953:41;;:100;;-1:-1:-1;51011:42:0;;;51026:27;51011:42;50953:100;50935:168;;;-1:-1:-1;51087:4:0;;50783:350;-1:-1:-1;50783:350:0:o;50935:168::-;-1:-1:-1;51120:5:0;;50783:350;-1:-1:-1;50783:350:0:o;49028:104::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;49103:12:::1;:21:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;49028:104::o;41348:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49229:104::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;49301:15:::1;:24:::0;;-1:-1:-1;;49301:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49229:104::o;51251:380::-;51378:13;51351:7;44590:1;44573:14;;:18;;;;:::i;:::-;44563:7;:28;:44;;;-1:-1:-1;44595:12:0;;44563:44;44559:100;;;44631:16;;;;;;;;;;;;;;44559:100;51493:18:::1;51503:7;51493:9;:18::i;:::-;51534:25;51551:7;51534:16;:25::i;:::-;51454:154;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51409:214;;44669:1;51251:380:::0;;;;:::o;26639:442::-;-1:-1:-1;;;;;26872:20:0;;1566:10;26872:20;;:60;;-1:-1:-1;26896:36:0;26913:4;1566:10;51751:448;:::i;26896:36::-;26850:160;;;;-1:-1:-1;;;26850:160:0;;13717:2:1;26850:160:0;;;13699:21:1;13756:2;13736:18;;;13729:30;13795:34;13775:18;;;13768:62;13866:20;13846:18;;;13839:48;13904:19;;26850:160:0;13515:414:1;26850:160:0;27021:52;27044:4;27050:2;27054:3;27059:7;27068:4;27021:22;:52::i;:::-;26639:442;;;;;:::o;49397:113::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;49455:14:::1;::::0;49447:55:::1;::::0;-1:-1:-1;;;;;49455:14:0;;::::1;::::0;49480:21:::1;49447:55:::0;::::1;;;::::0;49455:14:::1;49447:55:::0;49455:14;49447:55;49480:21;49455:14;49447:55;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49397:113::o:0;25097:524::-;25253:16;25314:3;:10;25295:8;:15;:29;25287:83;;;;-1:-1:-1;;;25287:83:0;;14136:2:1;25287:83:0;;;14118:21:1;14175:2;14155:18;;;14148:30;14214:34;14194:18;;;14187:62;14285:11;14265:18;;;14258:39;14314:19;;25287:83:0;13934:405:1;25287:83:0;25383:30;25430:8;:15;25416:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25416:30:0;;25383:63;;25464:9;25459:122;25483:8;:15;25479:1;:19;25459:122;;;25539:30;25549:8;25558:1;25549:11;;;;;;;;:::i;:::-;;;;;;;25562:3;25566:1;25562:6;;;;;;;;:::i;:::-;;;;;;;25539:9;:30::i;:::-;25520:13;25534:1;25520:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;25500:3;;;:::i;:::-;;;25459:122;;;-1:-1:-1;25600:13:0;25097:524;-1:-1:-1;;;25097:524:0:o;49880:120::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;49960:14:::1;:32:::0;;;::::1;-1:-1:-1::0;;;;;49960:32:0;;;::::1;::::0;;;::::1;::::0;;49880:120::o;48205:703::-;42850:15;;;;42846:72;;;42889:17;;;;;;;;;;;;;;42846:72;42987:12:::1;::::0;::::1;::::0;::::1;;;42983:64;;;43023:12;;;;;;;;;;;;;;42983:64;42099:4:::2;44899:14;;:33;44895:99;;44956:26;;;;;;;;;;;;;;44895:99;48387:8:::3;42046:4;43702:1;43691:8;43674:14;;:25;;;;:::i;:::-;:29;;;;:::i;:::-;:46;43670:103;;;43744:17;;;;;;;;;;;;;;43670:103;44343:10:::4;44322:32;::::0;;;:20:::4;:32;::::0;;;;;48432:8;;42282:1:::4;::::0;44322:43:::4;::::0;48432:8;;44322:43:::4;:::i;:::-;:86;44304:178;;;44442:28;;;;;;;;;;;;;;44304:178;48462:8:::5;44762:11;;44751:8;:22;;;;:::i;:::-;44739:9;:34;44735:91;;;44797:17;;;;;;;;;;;;;;44735:91;48488:21:::6;48526:8;48512:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;48512:23:0::6;;48488:47;;48546:27;48590:8;48576:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;48576:23:0::6;;48546:53;;48617:9;48612:126;48636:8;48632:1;:12;48612:126;;;48693:1;48676:14;;:18;;;;:::i;:::-;48666:4;48671:1;48666:7;;;;;;;;:::i;:::-;;;;;;:28;;;::::0;::::6;48725:1;48709:10;48720:1;48709:13;;;;;;;;:::i;:::-;;::::0;;::::6;::::0;;;;;:17;48646:3;::::6;::::0;::::6;:::i;:::-;;;;48612:126;;;;48782:8;48765:14;;:25;;;;:::i;:::-;48748:14;:42:::0;48822:10:::6;48801:32;::::0;;;:20:::6;:32;::::0;;;;:44;;48837:8;;48801:32;:44:::6;::::0;48837:8;;48801:44:::6;:::i;:::-;;;;;;;;48856;48867:10;48879:4;48885:10;48856:44;;;;;;;;;;;::::0;:10:::6;:44::i;:::-;48477:431;;44492:1:::5;43783::::4;45004::::3;48205:703:::0;:::o;5386:103::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;5451:30:::1;5478:1;5451:18;:30::i;:::-;5386:103::o:0;49622:152::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;49739:27:::1;49747:18;;49739:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;49739:7:0::1;::::0;-1:-1:-1;;;49739:27:0:i:1;:::-;49622:152:::0;;:::o;25694:155::-;25789:52;1566:10;25822:8;25832;25789:18;:52::i;47482:623::-;42850:15;;;;42846:72;;;42889:17;;;;;;;;;;;;;;42846:72;42987:12:::1;::::0;::::1;::::0;::::1;;;42983:64;;;43023:12;;;;;;;;;;;;;;42983:64;44086:10:::2;44066:31;::::0;;;:19:::2;:31;::::0;;;;;47625:8;;42220:1:::2;::::0;44066:42:::2;::::0;47625:8;;44066:42:::2;:::i;:::-;:84;44048:165;;;44184:17;;;;;;;;;;;;;;44048:165;47660:8:::3;42099:4;43886:1;43875:8;43858:14;;:25;;;;:::i;:::-;:29;;;;:::i;:::-;:47;43854:104;;;43929:17;;;;;;;;;;;;;;43854:104;47686:21:::4;47724:8;47710:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;47710:23:0::4;;47686:47;;47744:27;47788:8;47774:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;47774:23:0::4;;47744:53;;47815:9;47810:126;47834:8;47830:1;:12;47810:126;;;47891:1;47874:14;;:18;;;;:::i;:::-;47864:4;47869:1;47864:7;;;;;;;;:::i;:::-;;;;;;:28;;;::::0;::::4;47923:1;47907:10;47918:1;47907:13;;;;;;;;:::i;:::-;;::::0;;::::4;::::0;;;;;:17;47844:3;::::4;::::0;::::4;:::i;:::-;;;;47810:126;;;;47980:8;47963:14;;:25;;;;:::i;:::-;47946:14;:42:::0;48019:10:::4;47999:31;::::0;;;:19:::4;:31;::::0;;;;:43;;48034:8;;47999:31;:43:::4;::::0;48034:8;;47999:43:::4;:::i;:::-;;;;;;;;48053:44;48064:10;48076:4;48082:10;48053:44;;;;;;;;;;;::::0;:10:::4;:44::i;46736:641::-:0;42707:15;;;;42702:74;;42746:18;;;;;;;;;;;;;;42702:74;42987:12:::1;::::0;::::1;::::0;::::1;;;42983:64;;;43023:12;;;;;;;;;;;;;;42983:64;46897:5:::2;;43368:160;43405:5;;43368:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;43429:26:0::2;::::0;43484:28:::2;::::0;15261:66:1;43501:10:0::2;15248:2:1::0;15244:15;15240:88;43484:28:0::2;::::0;::::2;15228:101:1::0;43429:26:0;;-1:-1:-1;15345:12:1;;;-1:-1:-1;43484:28:0::2;;;;;;;;;;;;43474:39;;;;;;43368:18;:160::i;:::-;43349:241;;43562:16;;;;;;;;;;;;;;43349:241;43155:10:::3;43138:28;::::0;;;:16:::3;:28;::::0;;;;;46935:8;;42159:1:::3;::::0;43138:39:::3;::::0;46935:8;;43138:39:::3;:::i;:::-;:64;43134:126;;;43226:22;;;;;;;;;;;;;;43134:126;46961:21:::4;46999:8;46985:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;46985:23:0::4;;46961:47;;47019:27;47063:8;47049:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;47049:23:0::4;;47019:53;;47090:9;47085:126;47109:8;47105:1;:12;47085:126;;;47166:1;47149:14;;:18;;;;:::i;:::-;47139:4;47144:1;47139:7;;;;;;;;:::i;:::-;;;;;;:28;;;::::0;::::4;47198:1;47182:10;47193:1;47182:13;;;;;;;;:::i;:::-;;::::0;;::::4;::::0;;;;;:17;47119:3;::::4;::::0;::::4;:::i;:::-;;;;47085:126;;;;47255:8;47238:14;;:25;;;;:::i;:::-;47221:14;:42:::0;47291:10:::4;47274:28;::::0;;;:16:::4;:28;::::0;;;;:40;;47306:8;;47274:28;:40:::4;::::0;47306:8;;47274:40:::4;:::i;:::-;;;;;;;;47325:44;47336:10;47348:4;47354:10;47325:44;;;;;;;;;;;::::0;:10:::4;:44::i;:::-;46950:427;;43600:1:::3;43057::::2;;46736:641:::0;;;:::o;50367:114::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;50446:11:::1;:27:::0;50367:114::o;50104:173::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;50223:26:::1;:46:::0;50104:173::o;51751:448::-;52052:28;;;;;-1:-1:-1;;;;;8941:55:1;;;52052:28:0;;;8923:74:1;51876:4:0;;52005:23;;52044:49;;;;52052:21;;;;;;8896:18:1;;52052:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52044:49:0;;52040:93;;;52117:4;52110:11;;;;;52040:93;-1:-1:-1;;;;;26044:27:0;;;26020:4;26044:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;52152:39;52145:46;51751:448;-1:-1:-1;;;;51751:448:0:o;41871:127::-;;;;;;;;;;;;;;;;;;;:::o;26161:401::-;-1:-1:-1;;;;;26369:20:0;;1566:10;26369:20;;:60;;-1:-1:-1;26393:36:0;26410:4;1566:10;51751:448;:::i;26393:36::-;26347:151;;;;-1:-1:-1;;;26347:151:0;;15855:2:1;26347:151:0;;;15837:21:1;15894:2;15874:18;;;15867:30;15933:34;15913:18;;;15906:62;16004:11;15984:18;;;15977:39;16033:19;;26347:151:0;15653:405:1;26347:151:0;26509:45;26527:4;26533:2;26537;26541:6;26549:4;26509:17;:45::i;5644:201::-;4808:6;;-1:-1:-1;;;;;4808:6:0;1566:10;4955:23;4947:68;;;;-1:-1:-1;;;4947:68:0;;11953:2:1;4947:68:0;;;11935:21:1;;;11972:18;;;11965:30;12031:34;12011:18;;;12004:62;12083:18;;4947:68:0;11751:356:1;4947:68:0;-1:-1:-1;;;;;5733:22:0;::::1;5725:73;;;::::0;-1:-1:-1;;;5725:73:0;;16265:2:1;5725:73:0::1;::::0;::::1;16247:21:1::0;16304:2;16284:18;;;16277:30;16343:34;16323:18;;;16316:62;16414:8;16394:18;;;16387:36;16440:19;;5725:73:0::1;16063:402:1::0;5725:73:0::1;5809:28;5828:8;5809:18;:28::i;14598:326::-:0;-1:-1:-1;;;;;14893:19:0;;:23;;;14598:326::o;24444:105::-;24504:13;24537:4;24530:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24444:105;;;:::o;1986:723::-;2042:13;2263:10;2259:53;;-1:-1:-1;;2290:10:0;;;;;;;;;;;;;;;;;;1986:723::o;2259:53::-;2337:5;2322:12;2378:78;2385:9;;2378:78;;2411:8;;;;:::i;:::-;;-1:-1:-1;2434:10:0;;-1:-1:-1;2442:2:0;2434:10;;:::i;:::-;;;2378:78;;;2466:19;2498:6;2488:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2488:17:0;;2466:39;;2516:154;2523:10;;2516:154;;2550:11;2560:1;2550:11;;:::i;:::-;;-1:-1:-1;2619:10:0;2627:2;2619:5;:10;:::i;:::-;2606:24;;:2;:24;:::i;:::-;2593:39;;2576:6;2583;2576:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2647:11:0;2656:2;2647:11;;:::i;:::-;;;2516:154;;28723:1074;28950:7;:14;28936:3;:10;:28;28928:81;;;;-1:-1:-1;;;28928:81:0;;17103:2:1;28928:81:0;;;17085:21:1;17142:2;17122:18;;;17115:30;17181:34;17161:18;;;17154:62;17252:10;17232:18;;;17225:38;17280:19;;28928:81:0;16901:404:1;28928:81:0;-1:-1:-1;;;;;29028:16:0;;29020:66;;;;-1:-1:-1;;;29020:66:0;;17512:2:1;29020:66:0;;;17494:21:1;17551:2;17531:18;;;17524:30;17590:34;17570:18;;;17563:62;17661:7;17641:18;;;17634:35;17686:19;;29020:66:0;17310:401:1;29020:66:0;1566:10;29099:16;29216:421;29240:3;:10;29236:1;:14;29216:421;;;29272:10;29285:3;29289:1;29285:6;;;;;;;;:::i;:::-;;;;;;;29272:19;;29306:14;29323:7;29331:1;29323:10;;;;;;;;:::i;:::-;;;;;;;;;;;;29350:19;29372:13;;;;;;;;;;-1:-1:-1;;;;;29372:19:0;;;;;;;;;;;;29323:10;;-1:-1:-1;29414:21:0;;;;29406:76;;;;-1:-1:-1;;;29406:76:0;;17918:2:1;29406:76:0;;;17900:21:1;17957:2;17937:18;;;17930:30;17996:34;17976:18;;;17969:62;18067:12;18047:18;;;18040:40;18097:19;;29406:76:0;17716:406:1;29406:76:0;29526:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29526:19:0;;;;;;;;;;29548:20;;;29526:42;;29598:17;;;;;;;:27;;29548:20;;29526:9;29598:27;;29548:20;;29598:27;:::i;:::-;;;;;;;;29257:380;;;29252:3;;;;:::i;:::-;;;29216:421;;;;29684:2;-1:-1:-1;;;;;29654:47:0;29678:4;-1:-1:-1;;;;;29654:47:0;29668:8;-1:-1:-1;;;;;29654:47:0;;29688:3;29693:7;29654:47;;;;;;;:::i;:::-;;;;;;;;29714:75;29750:8;29760:4;29766:2;29770:3;29775:7;29784:4;29714:35;:75::i;32040:735::-;-1:-1:-1;;;;;32218:16:0;;32210:62;;;;-1:-1:-1;;;32210:62:0;;18799:2:1;32210:62:0;;;18781:21:1;18838:2;18818:18;;;18811:30;18877:34;18857:18;;;18850:62;18948:3;18928:18;;;18921:31;18969:19;;32210:62:0;18597:397:1;32210:62:0;32305:7;:14;32291:3;:10;:28;32283:81;;;;-1:-1:-1;;;32283:81:0;;17103:2:1;32283:81:0;;;17085:21:1;17142:2;17122:18;;;17115:30;17181:34;17161:18;;;17154:62;17252:10;17232:18;;;17225:38;17280:19;;32283:81:0;16901:404:1;32283:81:0;1566:10;32377:16;32500:103;32524:3;:10;32520:1;:14;32500:103;;;32581:7;32589:1;32581:10;;;;;;;;:::i;:::-;;;;;;;32556:9;:17;32566:3;32570:1;32566:6;;;;;;;;:::i;:::-;;;;;;;32556:17;;;;;;;;;;;:21;32574:2;-1:-1:-1;;;;;32556:21:0;-1:-1:-1;;;;;32556:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;32536:3:0;;-1:-1:-1;32536:3:0;;;:::i;:::-;;;;32500:103;;;;32656:2;-1:-1:-1;;;;;32620:53:0;32652:1;-1:-1:-1;;;;;32620:53:0;32634:8;-1:-1:-1;;;;;32620:53:0;;32660:3;32665:7;32620:53;;;;;;;:::i;:::-;;;;;;;;32686:81;32722:8;32740:1;32744:2;32748:3;32753:7;32762:4;32686:35;:81::i;6005:191::-;6098:6;;;-1:-1:-1;;;;;6115:17:0;;;;;;;;;;;6148:40;;6098:6;;;6115:17;6098:6;;6148:40;;6079:16;;6148:40;6068:128;6005:191;:::o;30641:88::-;30708:13;;;;:4;;:13;;;;;:::i;34909:331::-;35064:8;-1:-1:-1;;;;;35055:17:0;:5;-1:-1:-1;;;;;35055:17:0;;;35047:71;;;;-1:-1:-1;;;35047:71:0;;19201:2:1;35047:71:0;;;19183:21:1;19240:2;19220:18;;;19213:30;19279:34;19259:18;;;19252:62;19350:11;19330:18;;;19323:39;19379:19;;35047:71:0;18999:405:1;35047:71:0;-1:-1:-1;;;;;35129:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35129:46:0;;;;;;;;;;35191:41;;154::1;;;35191::0;;127:18:1;35191:41:0;;;;;;;34909:331;;;:::o;39034:190::-;39159:4;39212;39183:25;39196:5;39203:4;39183:12;:25::i;:::-;:33;;39034:190;-1:-1:-1;;;;39034:190:0:o;27545:820::-;-1:-1:-1;;;;;27733:16:0;;27725:66;;;;-1:-1:-1;;;27725:66:0;;17512:2:1;27725:66:0;;;17494:21:1;17551:2;17531:18;;;17524:30;17590:34;17570:18;;;17563:62;17661:7;17641:18;;;17634:35;17686:19;;27725:66:0;17310:401:1;27725:66:0;1566:10;27848:96;1566:10;27879:4;27885:2;27889:21;27907:2;27889:17;:21::i;:::-;27912:25;27930:6;27912:17;:25::i;27848:96::-;27957:19;27979:13;;;;;;;;;;;-1:-1:-1;;;;;27979:19:0;;;;;;;;;;28017:21;;;;28009:76;;;;-1:-1:-1;;;28009:76:0;;17918:2:1;28009:76:0;;;17900:21:1;17957:2;17937:18;;;17930:30;17996:34;17976:18;;;17969:62;18067:12;18047:18;;;18040:40;18097:19;;28009:76:0;17716:406:1;28009:76:0;28121:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28121:19:0;;;;;;;;;;28143:20;;;28121:42;;28185:17;;;;;;;:27;;28143:20;;28121:9;28185:27;;28143:20;;28185:27;:::i;:::-;;;;-1:-1:-1;;28230:46:0;;;19583:25:1;;;19639:2;19624:18;;19617:34;;;-1:-1:-1;;;;;28230:46:0;;;;;;;;;;;;;;19556:18:1;28230:46:0;;;;;;;28289:68;28320:8;28330:4;28336:2;28340;28344:6;28352:4;28289:30;:68::i;:::-;27714:651;;27545:820;;;;;:::o;37177:813::-;-1:-1:-1;;;;;37417:13:0;;14893:19;:23;37413:570;;37453:79;;;;;-1:-1:-1;;;;;37453:43:0;;;;;:79;;37497:8;;37507:4;;37513:3;;37518:7;;37527:4;;37453:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37453:79:0;;;;;;;;-1:-1:-1;;37453:79:0;;;;;;;;;;;;:::i;:::-;;;37449:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;37845:6;37838:14;;-1:-1:-1;;;37838:14:0;;;;;;;;:::i;37449:523::-;;;37894:62;;-1:-1:-1;;;37894:62:0;;21893:2:1;37894:62:0;;;21875:21:1;21932:2;21912:18;;;21905:30;21971:34;21951:18;;;21944:62;22042:22;22022:18;;;22015:50;22082:19;;37894:62:0;21691:416:1;37449:523:0;37614:60;;;37626:48;37614:60;37610:159;;37699:50;;-1:-1:-1;;;37699:50:0;;22314:2:1;37699:50:0;;;22296:21:1;22353:2;22333:18;;;22326:30;22392:34;22372:18;;;22365:62;22463:10;22443:18;;;22436:38;22491:19;;37699:50:0;22112:404:1;39586:675:0;39669:7;39712:4;39669:7;39727:497;39751:5;:12;39747:1;:16;39727:497;;;39785:20;39808:5;39814:1;39808:8;;;;;;;;:::i;:::-;;;;;;;39785:31;;39851:12;39835;:28;39831:382;;40337:13;40387:15;;;40423:4;40416:15;;;40470:4;40454:21;;39963:57;;39831:382;;;40337:13;40387:15;;;40423:4;40416:15;;;40470:4;40454:21;;40140:57;;39831:382;-1:-1:-1;39765:3:0;;;;:::i;:::-;;;;39727:497;;37998:198;38118:16;;;38132:1;38118:16;;;;;;;;;38064;;38093:22;;38118:16;;;;;;;;;;;;-1:-1:-1;38118:16:0;38093:41;;38156:7;38145:5;38151:1;38145:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;38183:5;37998:198;-1:-1:-1;;37998:198:0:o;36425:744::-;-1:-1:-1;;;;;36640:13:0;;14893:19;:23;36636:526;;36676:72;;;;;-1:-1:-1;;;;;36676:38:0;;;;;:72;;36715:8;;36725:4;;36731:2;;36735:6;;36743:4;;36676:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36676:72:0;;;;;;;;-1:-1:-1;;36676:72:0;;;;;;;;;;;;:::i;:::-;;;36672:479;;;;:::i;:::-;36798:55;;;36810:43;36798:55;36794:154;;36878:50;;-1:-1:-1;;;36878:50:0;;22314:2:1;36878:50:0;;;22296:21:1;22353:2;22333:18;;;22326:30;22392:34;22372:18;;;22365:62;22463:10;22443:18;;;22436:38;22491:19;;36878:50:0;22112:404:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;206:154:1;-1:-1:-1;;;;;285:5:1;281:54;274:5;271:65;261:93;;350:1;347;340:12;365:315;433:6;441;494:2;482:9;473:7;469:23;465:32;462:52;;;510:1;507;500:12;462:52;549:9;536:23;568:31;593:5;568:31;:::i;:::-;618:5;670:2;655:18;;;;642:32;;-1:-1:-1;;;365:315:1:o;867:177::-;952:66;945:5;941:78;934:5;931:89;921:117;;1034:1;1031;1024:12;1049:245;1107:6;1160:2;1148:9;1139:7;1135:23;1131:32;1128:52;;;1176:1;1173;1166:12;1128:52;1215:9;1202:23;1234:30;1258:5;1234:30;:::i;:::-;1283:5;1049:245;-1:-1:-1;;;1049:245:1:o;1299:160::-;1364:20;;1420:13;;1413:21;1403:32;;1393:60;;1449:1;1446;1439:12;1393:60;1299:160;;;:::o;1464:180::-;1520:6;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:26;1628:9;1612:26;:::i;1649:258::-;1721:1;1731:113;1745:6;1742:1;1739:13;1731:113;;;1821:11;;;1815:18;1802:11;;;1795:39;1767:2;1760:10;1731:113;;;1862:6;1859:1;1856:13;1853:48;;;1897:1;1888:6;1883:3;1879:16;1872:27;1853:48;;1649:258;;;:::o;1912:317::-;1954:3;1992:5;1986:12;2019:6;2014:3;2007:19;2035:63;2091:6;2084:4;2079:3;2075:14;2068:4;2061:5;2057:16;2035:63;:::i;:::-;2143:2;2131:15;-1:-1:-1;;2127:88:1;2118:98;;;;2218:4;2114:109;;1912:317;-1:-1:-1;;1912:317:1:o;2234:220::-;2383:2;2372:9;2365:21;2346:4;2403:45;2444:2;2433:9;2429:18;2421:6;2403:45;:::i;2459:247::-;2518:6;2571:2;2559:9;2550:7;2546:23;2542:32;2539:52;;;2587:1;2584;2577:12;2539:52;2626:9;2613:23;2645:31;2670:5;2645:31;:::i;2711:180::-;2770:6;2823:2;2811:9;2802:7;2798:23;2794:32;2791:52;;;2839:1;2836;2829:12;2791:52;-1:-1:-1;2862:23:1;;2711:180;-1:-1:-1;2711:180:1:o;2896:184::-;-1:-1:-1;;;2945:1:1;2938:88;3045:4;3042:1;3035:15;3069:4;3066:1;3059:15;3085:308;-1:-1:-1;;3186:2:1;3180:4;3176:13;3172:86;3164:6;3160:99;3325:6;3313:10;3310:22;3289:18;3277:10;3274:34;3271:62;3268:88;;;3336:18;;:::i;:::-;3372:2;3365:22;-1:-1:-1;;3085:308:1:o;3398:183::-;3458:4;3491:18;3483:6;3480:30;3477:56;;;3513:18;;:::i;:::-;-1:-1:-1;3558:1:1;3554:14;3570:4;3550:25;;3398:183::o;3586:724::-;3640:5;3693:3;3686:4;3678:6;3674:17;3670:27;3660:55;;3711:1;3708;3701:12;3660:55;3747:6;3734:20;3773:4;3796:43;3836:2;3796:43;:::i;:::-;3868:2;3862:9;3880:31;3908:2;3900:6;3880:31;:::i;:::-;3946:18;;;4038:1;4034:10;;;;4022:23;;4018:32;;;3980:15;;;;-1:-1:-1;4062:15:1;;;4059:35;;;4090:1;4087;4080:12;4059:35;4126:2;4118:6;4114:15;4138:142;4154:6;4149:3;4146:15;4138:142;;;4220:17;;4208:30;;4258:12;;;;4171;;4138:142;;;-1:-1:-1;4298:6:1;3586:724;-1:-1:-1;;;;;;3586:724:1:o;4315:614::-;4357:5;4410:3;4403:4;4395:6;4391:17;4387:27;4377:55;;4428:1;4425;4418:12;4377:55;4464:6;4451:20;4490:18;4486:2;4483:26;4480:52;;;4512:18;;:::i;:::-;4561:2;4555:9;4573:126;4693:4;-1:-1:-1;;4617:4:1;4613:2;4609:13;4605:86;4601:97;4593:6;4573:126;:::i;:::-;4723:2;4715:6;4708:18;4769:3;4762:4;4757:2;4749:6;4745:15;4741:26;4738:35;4735:55;;;4786:1;4783;4776:12;4735:55;4850:2;4843:4;4835:6;4831:17;4824:4;4816:6;4812:17;4799:54;4897:1;4873:15;;;4890:4;4869:26;4862:37;;;;4877:6;4315:614;-1:-1:-1;;;4315:614:1:o;4934:1071::-;5088:6;5096;5104;5112;5120;5173:3;5161:9;5152:7;5148:23;5144:33;5141:53;;;5190:1;5187;5180:12;5141:53;5229:9;5216:23;5248:31;5273:5;5248:31;:::i;:::-;5298:5;-1:-1:-1;5355:2:1;5340:18;;5327:32;5368:33;5327:32;5368:33;:::i;:::-;5420:7;-1:-1:-1;5478:2:1;5463:18;;5450:32;5501:18;5531:14;;;5528:34;;;5558:1;5555;5548:12;5528:34;5581:61;5634:7;5625:6;5614:9;5610:22;5581:61;:::i;:::-;5571:71;;5695:2;5684:9;5680:18;5667:32;5651:48;;5724:2;5714:8;5711:16;5708:36;;;5740:1;5737;5730:12;5708:36;5763:63;5818:7;5807:8;5796:9;5792:24;5763:63;:::i;:::-;5753:73;;5879:3;5868:9;5864:19;5851:33;5835:49;;5909:2;5899:8;5896:16;5893:36;;;5925:1;5922;5915:12;5893:36;;5948:51;5991:7;5980:8;5969:9;5965:24;5948:51;:::i;:::-;5938:61;;;4934:1071;;;;;;;;:::o;6192:1277::-;6310:6;6318;6371:2;6359:9;6350:7;6346:23;6342:32;6339:52;;;6387:1;6384;6377:12;6339:52;6427:9;6414:23;6456:18;6497:2;6489:6;6486:14;6483:34;;;6513:1;6510;6503:12;6483:34;6551:6;6540:9;6536:22;6526:32;;6596:7;6589:4;6585:2;6581:13;6577:27;6567:55;;6618:1;6615;6608:12;6567:55;6654:2;6641:16;6676:4;6699:43;6739:2;6699:43;:::i;:::-;6771:2;6765:9;6783:31;6811:2;6803:6;6783:31;:::i;:::-;6849:18;;;6937:1;6933:10;;;;6925:19;;6921:28;;;6883:15;;;;-1:-1:-1;6961:19:1;;;6958:39;;;6993:1;6990;6983:12;6958:39;7017:11;;;;7037:217;7053:6;7048:3;7045:15;7037:217;;;7133:3;7120:17;7150:31;7175:5;7150:31;:::i;:::-;7194:18;;7070:12;;;;7232;;;;7037:217;;;7273:6;-1:-1:-1;;7317:18:1;;7304:32;;-1:-1:-1;;7348:16:1;;;7345:36;;;7377:1;7374;7367:12;7345:36;;7400:63;7455:7;7444:8;7433:9;7429:24;7400:63;:::i;:::-;7390:73;;;6192:1277;;;;;:::o;7474:435::-;7527:3;7565:5;7559:12;7592:6;7587:3;7580:19;7618:4;7647:2;7642:3;7638:12;7631:19;;7684:2;7677:5;7673:14;7705:1;7715:169;7729:6;7726:1;7723:13;7715:169;;;7790:13;;7778:26;;7824:12;;;;7859:15;;;;7751:1;7744:9;7715:169;;;-1:-1:-1;7900:3:1;;7474:435;-1:-1:-1;;;;;7474:435:1:o;7914:261::-;8093:2;8082:9;8075:21;8056:4;8113:56;8165:2;8154:9;8150:18;8142:6;8113:56;:::i;8180:592::-;8251:6;8259;8312:2;8300:9;8291:7;8287:23;8283:32;8280:52;;;8328:1;8325;8318:12;8280:52;8368:9;8355:23;8397:18;8438:2;8430:6;8427:14;8424:34;;;8454:1;8451;8444:12;8424:34;8492:6;8481:9;8477:22;8467:32;;8537:7;8530:4;8526:2;8522:13;8518:27;8508:55;;8559:1;8556;8549:12;8508:55;8599:2;8586:16;8625:2;8617:6;8614:14;8611:34;;;8641:1;8638;8631:12;8611:34;8686:7;8681:2;8672:6;8668:2;8664:15;8660:24;8657:37;8654:57;;;8707:1;8704;8697:12;8654:57;8738:2;8730:11;;;;;8760:6;;-1:-1:-1;8180:592:1;;-1:-1:-1;;;;8180:592:1:o;9008:315::-;9073:6;9081;9134:2;9122:9;9113:7;9109:23;9105:32;9102:52;;;9150:1;9147;9140:12;9102:52;9189:9;9176:23;9208:31;9233:5;9208:31;:::i;:::-;9258:5;-1:-1:-1;9282:35:1;9313:2;9298:18;;9282:35;:::i;:::-;9272:45;;9008:315;;;;;:::o;9328:689::-;9423:6;9431;9439;9492:2;9480:9;9471:7;9467:23;9463:32;9460:52;;;9508:1;9505;9498:12;9460:52;9548:9;9535:23;9577:18;9618:2;9610:6;9607:14;9604:34;;;9634:1;9631;9624:12;9604:34;9672:6;9661:9;9657:22;9647:32;;9717:7;9710:4;9706:2;9702:13;9698:27;9688:55;;9739:1;9736;9729:12;9688:55;9779:2;9766:16;9805:2;9797:6;9794:14;9791:34;;;9821:1;9818;9811:12;9791:34;9876:7;9869:4;9859:6;9856:1;9852:14;9848:2;9844:23;9840:34;9837:47;9834:67;;;9897:1;9894;9887:12;9834:67;9928:4;9920:13;;;;9952:6;;-1:-1:-1;9990:20:1;;;;9977:34;;9328:689;-1:-1:-1;;;;9328:689:1:o;10207:388::-;10275:6;10283;10336:2;10324:9;10315:7;10311:23;10307:32;10304:52;;;10352:1;10349;10342:12;10304:52;10391:9;10378:23;10410:31;10435:5;10410:31;:::i;:::-;10460:5;-1:-1:-1;10517:2:1;10502:18;;10489:32;10530:33;10489:32;10530:33;:::i;:::-;10582:7;10572:17;;;10207:388;;;;;:::o;10600:734::-;10704:6;10712;10720;10728;10736;10789:3;10777:9;10768:7;10764:23;10760:33;10757:53;;;10806:1;10803;10796:12;10757:53;10845:9;10832:23;10864:31;10889:5;10864:31;:::i;:::-;10914:5;-1:-1:-1;10971:2:1;10956:18;;10943:32;10984:33;10943:32;10984:33;:::i;:::-;11036:7;-1:-1:-1;11090:2:1;11075:18;;11062:32;;-1:-1:-1;11141:2:1;11126:18;;11113:32;;-1:-1:-1;11196:3:1;11181:19;;11168:33;11224:18;11213:30;;11210:50;;;11256:1;11253;11246:12;11210:50;11279:49;11320:7;11311:6;11300:9;11296:22;11279:49;:::i;12112:437::-;12191:1;12187:12;;;;12234;;;12255:61;;12309:4;12301:6;12297:17;12287:27;;12255:61;12362:2;12354:6;12351:14;12331:18;12328:38;12325:218;;;-1:-1:-1;;;12396:1:1;12389:88;12500:4;12497:1;12490:15;12528:4;12525:1;12518:15;12554:184;-1:-1:-1;;;12603:1:1;12596:88;12703:4;12700:1;12693:15;12727:4;12724:1;12717:15;12743:125;12783:4;12811:1;12808;12805:8;12802:34;;;12816:18;;:::i;:::-;-1:-1:-1;12853:9:1;;12743:125::o;12873:637::-;13153:3;13191:6;13185:13;13207:53;13253:6;13248:3;13241:4;13233:6;13229:17;13207:53;:::i;:::-;13323:13;;13282:16;;;;13345:57;13323:13;13282:16;13379:4;13367:17;;13345:57;:::i;:::-;13467:7;13424:20;;13453:22;;;13502:1;13491:13;;12873:637;-1:-1:-1;;;;12873:637:1:o;14344:184::-;-1:-1:-1;;;14393:1:1;14386:88;14493:4;14490:1;14483:15;14517:4;14514:1;14507:15;14533:195;14572:3;-1:-1:-1;;14596:5:1;14593:77;14590:103;;;14673:18;;:::i;:::-;-1:-1:-1;14720:1:1;14709:13;;14533:195::o;14733:128::-;14773:3;14804:1;14800:6;14797:1;14794:13;14791:39;;;14810:18;;:::i;:::-;-1:-1:-1;14846:9:1;;14733:128::o;14866:228::-;14906:7;15032:1;-1:-1:-1;;14960:74:1;14957:1;14954:81;14949:1;14942:9;14935:17;14931:105;14928:131;;;15039:18;;:::i;:::-;-1:-1:-1;15079:9:1;;14866:228::o;15368:280::-;15467:6;15520:2;15508:9;15499:7;15495:23;15491:32;15488:52;;;15536:1;15533;15526:12;15488:52;15568:9;15562:16;15587:31;15612:5;15587:31;:::i;16470:184::-;-1:-1:-1;;;16519:1:1;16512:88;16619:4;16616:1;16609:15;16643:4;16640:1;16633:15;16659:120;16699:1;16725;16715:35;;16730:18;;:::i;:::-;-1:-1:-1;16764:9:1;;16659:120::o;16784:112::-;16816:1;16842;16832:35;;16847:18;;:::i;:::-;-1:-1:-1;16881:9:1;;16784:112::o;18127:465::-;18384:2;18373:9;18366:21;18347:4;18410:56;18462:2;18451:9;18447:18;18439:6;18410:56;:::i;:::-;18514:9;18506:6;18502:22;18497:2;18486:9;18482:18;18475:50;18542:44;18579:6;18571;18542:44;:::i;:::-;18534:52;18127:465;-1:-1:-1;;;;;18127:465:1:o;19662:850::-;19984:4;-1:-1:-1;;;;;20094:2:1;20086:6;20082:15;20071:9;20064:34;20146:2;20138:6;20134:15;20129:2;20118:9;20114:18;20107:43;;20186:3;20181:2;20170:9;20166:18;20159:31;20213:57;20265:3;20254:9;20250:19;20242:6;20213:57;:::i;:::-;20318:9;20310:6;20306:22;20301:2;20290:9;20286:18;20279:50;20352:44;20389:6;20381;20352:44;:::i;:::-;20338:58;;20445:9;20437:6;20433:22;20427:3;20416:9;20412:19;20405:51;20473:33;20499:6;20491;20473:33;:::i;:::-;20465:41;19662:850;-1:-1:-1;;;;;;;;19662:850:1:o;20517:249::-;20586:6;20639:2;20627:9;20618:7;20614:23;20610:32;20607:52;;;20655:1;20652;20645:12;20607:52;20687:9;20681:16;20706:30;20730:5;20706:30;:::i;20771:179::-;20806:3;20848:1;20830:16;20827:23;20824:120;;;20894:1;20891;20888;20873:23;-1:-1:-1;20931:1:1;20925:8;20920:3;20916:18;20824:120;20771:179;:::o;20955:731::-;20994:3;21036:4;21018:16;21015:26;21012:39;;;20955:731;:::o;21012:39::-;21078:2;21072:9;21100:66;21221:2;21203:16;21199:25;21196:1;21190:4;21175:50;21254:4;21248:11;21278:16;21313:18;21384:2;21377:4;21369:6;21365:17;21362:25;21357:2;21349:6;21346:14;21343:45;21340:58;;;21391:5;;;;;20955:731;:::o;21340:58::-;21428:6;21422:4;21418:17;21407:28;;21464:3;21458:10;21491:2;21483:6;21480:14;21477:27;;;21497:5;;;;;;20955:731;:::o;21477:27::-;21581:2;21562:16;21556:4;21552:27;21548:36;21541:4;21532:6;21527:3;21523:16;21519:27;21516:69;21513:82;;;21588:5;;;;;;20955:731;:::o;21513:82::-;21604:57;21655:4;21646:6;21638;21634:19;21630:30;21624:4;21604:57;:::i;:::-;-1:-1:-1;21677:3:1;;20955:731;-1:-1:-1;;;;;20955:731:1:o;22521:584::-;22743:4;-1:-1:-1;;;;;22853:2:1;22845:6;22841:15;22830:9;22823:34;22905:2;22897:6;22893:15;22888:2;22877:9;22873:18;22866:43;;22945:6;22940:2;22929:9;22925:18;22918:34;22988:6;22983:2;22972:9;22968:18;22961:34;23032:3;23026;23015:9;23011:19;23004:32;23053:46;23094:3;23083:9;23079:19;23071:6;23053:46;:::i;:::-;23045:54;22521:584;-1:-1:-1;;;;;;;22521:584:1:o

Swarm Source

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