ETH Price: $3,489.01 (+2.30%)
Gas: 10 Gwei

Token

Whales Of Wallstreet (WOW)
 

Overview

Max Total Supply

1,305 WOW

Holders

126

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WOW
0xA42b362Bd6F84f4690a180f5D6C7aCd79E68864a
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:
WhalesOfWallstreet

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;


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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.9;


contract WhalesOfWallstreet is ERC721A, Ownable {
    using Strings for uint256;

    // ======== SUPPLY ========
    uint256 public constant MAX_SUPPLY = 8888; 

    // ======== MAX MINTS ========
    uint256 public maxCommunityMint = 100;
    uint256 public maxPublicSaleMint = 100;

    // ======== PRICE ========
    uint256 public publicSalePrice = 0.02 ether; 
    uint256 public communitySalePrice = 0.01 ether; 
    uint256 public preSalePrice = 0.01 ether;
    uint256 public teamMintPrice = 0 ether;

    // ======== SALE STATUS ========
    bool public isPreSaleActive;
    bool public isCommunitySaleActive;
    bool public isPublicSaleActive;

    // ======== METADATA ========
    bool public isRevealed = false;
    string private _baseTokenURI;
    string private notRevealedUri;
    string public baseExtension = ".json";

    // ======== MERKLE ROOT ========
    bytes32 public preSaleMerkleRoot;
    bytes32 public communitySaleMerkleRoot;

    // ======== MINTED ========
    mapping(address => uint256) public preSaleMinted;
    mapping(address => bool) public communitySaleMinted;
    mapping(address => uint256) public publicSaleMinted;

    // ======== TEAM WALLET ========
    address public constant TEAM_WALLET = 0x57f55476E91497ba8cEb61439297c47B119cB714;

    // ======== FOUNDERS & TEAM ========    
    address public constant TEAM = 0x57f55476E91497ba8cEb61439297c47B119cB714;
    address public constant FOUNDER_JODY = 0xb2Be0116dF3eB4b4af4aFbE79c03FD0D014C2711; 
    address public constant FOUNDER_MOE = 0xD1C5EE390f1093961887484015e4Cee209767a95; 
    address public constant FOUNDER_JOESPH = 0x89E22845581245377d19446A6DEE78E194ed4986; 
    address public constant FOUNDER_FAZE = 0x6b75c89cEb22002F713a7D94b678F761352Ef46e; 


    // ======== CONSTRUCTOR ========      
    constructor(string memory _initNotRevealedUri, string memory _initURI) ERC721A("Whales Of Wallstreet", "WOW") {

        setNotRevealedURI(_initNotRevealedUri);
        _baseTokenURI = _initURI;
    }

    /**
     * @notice must be an EOA
     */
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    // ======== MINTING ========
    /**
     * @notice presale mint
     */
    function preSaleMint(uint256 _quantity, uint256 _maxAmount,  bytes32[] calldata _proof) external payable callerIsUser {
        require(isPreSaleActive, "PRESALE NOT ACTIVE");
        require(msg.value == preSalePrice * _quantity, "NEED TO SEND CORRECT ETH AMOUNT");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "MAX SUPPLY REACHED" );
        require(preSaleMinted[msg.sender] + _quantity <= _maxAmount, "EXCEEDS MAX CLAIM"); 
        bytes32 sender = keccak256(abi.encodePacked(msg.sender, _maxAmount));
        bool isValidProof = MerkleProof.verify(_proof, preSaleMerkleRoot, sender);
        require(isValidProof, "INVALID PROOF");

        preSaleMinted[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    /**
     * @notice community sale mint
     */
    function communitySaleMint(bytes32[] calldata _proof) external payable callerIsUser {
        require(isCommunitySaleActive, "COMMUNITY SALE NOT ACTIVE");
        require(msg.value == communitySalePrice, "NEED TO SEND CORRECT ETH AMOUNT");
        require(totalSupply() + maxCommunityMint <= MAX_SUPPLY, "MAX SUPPLY REACHED" );
        require(!communitySaleMinted[msg.sender], "EXCEEDS MAX CLAIM"); 
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
        bool isValidProof = MerkleProof.verify(_proof, communitySaleMerkleRoot, sender);
        require(isValidProof, "INVALID PROOF");

        communitySaleMinted[msg.sender] = true;
        _safeMint(msg.sender, maxCommunityMint);
    }

    /**
     * @notice public sale mint
     */
    function publicSaleMint(uint256 _quantity) external payable callerIsUser {
        require(isPublicSaleActive, "PUBLIC SALE IS NOT ACTIVE");
        require(totalSupply() + _quantity <= MAX_SUPPLY, "MAX SUPPLY REACHED" );
        require(publicSaleMinted[msg.sender] + _quantity <= maxPublicSaleMint, "EXCEEDS MAX MINTS PER ADDRESS"); 
        require(msg.value == publicSalePrice * _quantity, "NEED TO SEND CORRECT ETH AMOUNT");

        publicSaleMinted[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function teamMint(uint256 _quantity, bool _founders) external payable onlyOwner {
        require(totalSupply() + _quantity <= MAX_SUPPLY, "MAX SUPPLY REACHED" );
        require(msg.value == teamMintPrice, "NEED TO SEND CORRECT ETH AMOUNT");
        if (_founders) {
            // ======== FOUNDER MINT ========      
            _safeMint(FOUNDER_JODY, 15);
            _safeMint(FOUNDER_MOE, 15);
            _safeMint(FOUNDER_JOESPH, 15);
            _safeMint(FOUNDER_FAZE, 15);

            // ======== TEAM MINT RD ========      
            _safeMint(TEAM, 40);
            _safeMint(TEAM, 43);
            _safeMint(TEAM, 57);
        } else {
            // ======== TEAM MINT ========      
            _safeMint(TEAM, _quantity);
        }
    }

    // ======== SALE STATUS SETTERS ========
    /**
     * @notice activating or deactivating presale status
     */
    function setPreSaleStatus(bool _status) external onlyOwner {
        isPreSaleActive = _status;
    }

    /**
     * @notice activating or deactivating community sale status
     */
    function setCommunitySaleStatus(bool _status) external onlyOwner {
        isCommunitySaleActive = _status;
    }

    /**
     * @notice activating or deactivating public sale
     */
    function setPublicSaleStatus(bool _status) external onlyOwner {
        isPublicSaleActive = _status;
    }

    // ======== PRICE SETTERS ========
    /**
     * @notice set presale price
     */
    function setPreSalePrice(uint256 _price) external onlyOwner {
        preSalePrice = _price;
    }

    /**
     * @notice set whitelist price
     */
    function setCommunitySalePrice(uint256 _price) external onlyOwner {
        communitySalePrice = _price;
    }

    /**
     * @notice set public sale price
     */
    function setPublicSalePrice(uint256 _price) external onlyOwner {
        publicSalePrice = _price;
    }

    // ======== MERKLE ROOT SETTERS ========
    /**
     * @notice set presale merkleroot
     */
    function setPresaleMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        preSaleMerkleRoot = _merkleRoot;
    }

    /**
     * @notice set community sale merkleroot
     */
    function setCommunitySaleMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        communitySaleMerkleRoot = _merkleRoot;
    }

    // ======== METADATA URI ========
    
    /**
     * @notice tokenURI
     */
         function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(isRevealed == false) {
        return notRevealedUri;
    }

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

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

    /**
     * @notice set base URI
     */
    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    /**
     * @notice set IsRevealed to true or false
     */
    function setIsRevealed(bool _reveal) external onlyOwner {
        isRevealed = _reveal;
    }   

    /** 
    *   @notice set startTokenId to 1
    */
    function _startTokenId() internal view virtual override(ERC721A) returns (uint256) {
        return 1;
    }

    // ======== WITHDRAW TEAM ========

    /**
     * @notice withdraw funds to gnosis safe
     */
    function withdraw() external onlyOwner {
        (bool success, ) = TEAM_WALLET.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"string","name":"_initURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FOUNDER_FAZE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOUNDER_JODY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOUNDER_JOESPH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FOUNDER_MOE","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_WALLET","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communitySaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"communitySaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"communitySaleMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communitySalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCommunitySaleActive","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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCommunityMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"uint256","name":"_maxAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setCommunitySaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setCommunitySalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setCommunitySaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reveal","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bool","name":"_founders","type":"bool"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60646009819055600a5566470de4df820000600b55662386f26fc10000600c819055600d556000600e55600f805463ff0000001916905560c06040526005608081905264173539b7b760d91b60a09081526200005f91601291906200020c565b503480156200006d57600080fd5b506040516200352f3803806200352f83398101604081905262000090916200037f565b604080518082018252601481527f5768616c6573204f662057616c6c737472656574000000000000000000000000602080830191825283518085019094526003845262574f5760e81b908401528151919291620000f0916002916200020c565b508051620001069060039060208401906200020c565b5050600160005550620001193362000142565b620001248262000194565b8051620001399060109060208401906200020c565b50505062000426565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620002089060119060208401906200020c565b5050565b8280546200021a90620003e9565b90600052602060002090601f0160209004810192826200023e576000855562000289565b82601f106200025957805160ff191683800117855562000289565b8280016001018555821562000289579182015b82811115620002895782518255916020019190600101906200026c565b50620002979291506200029b565b5090565b5b808211156200029757600081556001016200029c565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002da57600080fd5b81516001600160401b0380821115620002f757620002f7620002b2565b604051601f8301601f19908116603f01168101908282118183101715620003225762000322620002b2565b816040528381526020925086838588010111156200033f57600080fd5b600091505b8382101562000363578582018301518183018401529082019062000344565b83821115620003755760008385830101525b9695505050505050565b600080604083850312156200039357600080fd5b82516001600160401b0380821115620003ab57600080fd5b620003b986838701620002c8565b93506020850151915080821115620003d057600080fd5b50620003df85828601620002c8565b9150509250929050565b600181811c90821680620003fe57607f821691505b602082108114156200042057634e487b7160e01b600052602260045260246000fd5b50919050565b6130f980620004366000396000f3fe60806040526004361061036b5760003560e01c80636352211e116101c6578063b3ab66b0116100f7578063e0c2573011610095578063eb4883ab1161006f578063eb4883ab146109c2578063f2c4ce1e146109e1578063f2fde38b14610a01578063f61a5ea114610a2157600080fd5b8063e0c2573014610950578063e757c17d14610963578063e985e9c51461097957600080fd5b8063c6682862116100d1578063c6682862146108f3578063c87b56dd14610908578063cca3d86314610928578063cecdc6aa146105dc57600080fd5b8063b3ab66b0146108a0578063b423fe67146108b3578063b88d4fde146108d357600080fd5b80638da5cb5b116101645780639d044ed31161013e5780639d044ed3146108305780639eb009741461084a578063a22cb46514610860578063a85d8fb11461088057600080fd5b80638da5cb5b146107e757806395d89b41146108055780639b6860c81461081a57600080fd5b8063715018a6116101a0578063715018a61461077f578063791a2519146107945780637d7eee42146107b45780638b687318146107d457600080fd5b80636352211e14610729578063704e3d9d1461074957806370a082311461075f57600080fd5b8063279d11e6116102a057806342842e0e1161023e578063529be43b11610218578063529be43b1461069b57806354214f69146106c857806355f804b3146106e95780635e326b921461070957600080fd5b806342842e0e14610645578063438388451461066557806349a5980a1461067b57600080fd5b80632b905bf61161027a5780632b905bf6146105dc57806332cb6b0c146106045780633a380fc61461061a5780633ccfd60b1461063057600080fd5b8063279d11e61461057e57806328d7b276146105a65780632a1ac827146105c657600080fd5b80631e84c4131161030d57806321db7053116102e757806321db7053146104eb57806323b872dd1461051b578063244b7e931461053b57806324824fb11461056857600080fd5b80631e84c4131461047b5780631ede36071461049b578063218a7edc146104c357600080fd5b8063095ea7b311610349578063095ea7b3146103ff57806309686f841461042157806316e854131461043457806318160ddd1461045457600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046129eb565b610a41565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610ade565b60405161039c9190612a60565b3480156103d357600080fd5b506103e76103e2366004612a73565b610b70565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a366004612aa8565b610bcd565b005b61041f61042f366004612b1e565b610c8d565b34801561044057600080fd5b5061041f61044f366004612a73565b610f51565b34801561046057600080fd5b5060015460005403600019015b60405190815260200161039c565b34801561048757600080fd5b50600f546103909062010000900460ff1681565b3480156104a757600080fd5b506103e773b2be0116df3eb4b4af4afbe79c03fd0d014c271181565b3480156104cf57600080fd5b506103e77389e22845581245377d19446a6dee78e194ed498681565b3480156104f757600080fd5b50610390610506366004612b71565b60166020526000908152604090205460ff1681565b34801561052757600080fd5b5061041f610536366004612b8c565b610f9e565b34801561054757600080fd5b5061046d610556366004612b71565b60176020526000908152604090205481565b34801561057457600080fd5b5061046d60095481565b34801561058a57600080fd5b506103e773d1c5ee390f1093961887484015e4cee209767a9581565b3480156105b257600080fd5b5061041f6105c1366004612a73565b610fa9565b3480156105d257600080fd5b5061046d600c5481565b3480156105e857600080fd5b506103e77357f55476e91497ba8ceb61439297c47b119cb71481565b34801561061057600080fd5b5061046d6122b881565b34801561062657600080fd5b5061046d600e5481565b34801561063c57600080fd5b5061041f610ff6565b34801561065157600080fd5b5061041f610660366004612b8c565b6110ed565b34801561067157600080fd5b5061046d60135481565b34801561068757600080fd5b5061041f610696366004612bd8565b611108565b3480156106a757600080fd5b5061046d6106b6366004612b71565b60156020526000908152604090205481565b3480156106d457600080fd5b50600f54610390906301000000900460ff1681565b3480156106f557600080fd5b5061041f610704366004612bf3565b61116e565b34801561071557600080fd5b5061041f610724366004612bd8565b6111c2565b34801561073557600080fd5b506103e7610744366004612a73565b61121d565b34801561075557600080fd5b5061046d600a5481565b34801561076b57600080fd5b5061046d61077a366004612b71565b61122f565b34801561078b57600080fd5b5061041f611297565b3480156107a057600080fd5b5061041f6107af366004612a73565b6112eb565b3480156107c057600080fd5b5061041f6107cf366004612a73565b611338565b61041f6107e2366004612c65565b611385565b3480156107f357600080fd5b506008546001600160a01b03166103e7565b34801561081157600080fd5b506103ba61157d565b34801561082657600080fd5b5061046d600b5481565b34801561083c57600080fd5b50600f546103909060ff1681565b34801561085657600080fd5b5061046d60145481565b34801561086c57600080fd5b5061041f61087b366004612c91565b61158c565b34801561088c57600080fd5b5061041f61089b366004612bd8565b61163b565b61041f6108ae366004612a73565b61169d565b3480156108bf57600080fd5b5061041f6108ce366004612bd8565b611899565b3480156108df57600080fd5b5061041f6108ee366004612d47565b6118fd565b3480156108ff57600080fd5b506103ba61194e565b34801561091457600080fd5b506103ba610923366004612a73565b6119dc565b34801561093457600080fd5b506103e7736b75c89ceb22002f713a7d94b678f761352ef46e81565b61041f61095e366004612dc3565b611b5b565b34801561096f57600080fd5b5061046d600d5481565b34801561098557600080fd5b50610390610994366004612e05565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109ce57600080fd5b50600f5461039090610100900460ff1681565b3480156109ed57600080fd5b5061041f6109fc366004612e2f565b611dfa565b348015610a0d57600080fd5b5061041f610a1c366004612b71565b611e55565b348015610a2d57600080fd5b5061041f610a3c366004612a73565b611f22565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610aa457506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ad857507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610aed90612e78565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1990612e78565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b7b82611f6f565b610bb1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610bd88261121d565b9050806001600160a01b0316836001600160a01b03161415610c26576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610c465750610c448133610994565b155b15610c7d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c88838383611fa8565b505050565b323314610ce15760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b600f5460ff16610d335760405162461bcd60e51b815260206004820152601260248201527f50524553414c45204e4f542041435449564500000000000000000000000000006044820152606401610cd8565b83600d54610d419190612ec9565b3414610d8f5760405162461bcd60e51b815260206004820152601f60248201527f4e45454420544f2053454e4420434f52524543542045544820414d4f554e54006044820152606401610cd8565b6001546000546122b89186910360001901610daa9190612ee8565b1115610ded5760405162461bcd60e51b81526020600482015260126024820152711350560814d5541413164814915050d2115160721b6044820152606401610cd8565b336000908152601560205260409020548390610e0a908690612ee8565b1115610e585760405162461bcd60e51b815260206004820152601160248201527f45584345454453204d415820434c41494d0000000000000000000000000000006044820152606401610cd8565b6040516bffffffffffffffffffffffff193360601b166020820152603481018490526000906054016040516020818303038152906040528051906020012090506000610edb848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150859050612011565b905080610f1a5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a210282927a7a360991b6044820152606401610cd8565b3360009081526015602052604081208054889290610f39908490612ee8565b90915550610f4990503387612027565b505050505050565b6008546001600160a01b03163314610f995760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600c55565b610c88838383612041565b6008546001600160a01b03163314610ff15760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b601355565b6008546001600160a01b0316331461103e5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b6040516000907357f55476e91497ba8ceb61439297c47b119cb7149047908381818185875af1925050503d8060008114611094576040519150601f19603f3d011682016040523d82523d6000602084013e611099565b606091505b50509050806110ea5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610cd8565b50565b610c88838383604051806020016040528060008152506118fd565b6008546001600160a01b031633146111505760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600f805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146111b65760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b610c88601083836128c8565b6008546001600160a01b0316331461120a5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600f805460ff1916911515919091179055565b60006112288261227d565b5192915050565b60006001600160a01b038216611271576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112df5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b6112e960006123bf565b565b6008546001600160a01b031633146113335760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600b55565b6008546001600160a01b031633146113805760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600d55565b6008546001600160a01b031633146113cd5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b6001546000546122b891849103600019016113e89190612ee8565b111561142b5760405162461bcd60e51b81526020600482015260126024820152711350560814d5541413164814915050d2115160721b6044820152606401610cd8565b600e54341461147c5760405162461bcd60e51b815260206004820152601f60248201527f4e45454420544f2053454e4420434f52524543542045544820414d4f554e54006044820152606401610cd8565b801561155f576114a173b2be0116df3eb4b4af4afbe79c03fd0d014c2711600f612027565b6114c073d1c5ee390f1093961887484015e4cee209767a95600f612027565b6114df7389e22845581245377d19446a6dee78e194ed4986600f612027565b6114fe736b75c89ceb22002f713a7d94b678f761352ef46e600f612027565b61151d7357f55476e91497ba8ceb61439297c47b119cb7146028612027565b61153c7357f55476e91497ba8ceb61439297c47b119cb714602b612027565b61155b7357f55476e91497ba8ceb61439297c47b119cb7146039612027565b5050565b61155b7357f55476e91497ba8ceb61439297c47b119cb71483612027565b606060038054610aed90612e78565b6001600160a01b0382163314156115cf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116835760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600f80549115156101000261ff0019909216919091179055565b3233146116ec5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610cd8565b600f5462010000900460ff166117445760405162461bcd60e51b815260206004820152601960248201527f5055424c49432053414c45204953204e4f5420414354495645000000000000006044820152606401610cd8565b6001546000546122b8918391036000190161175f9190612ee8565b11156117a25760405162461bcd60e51b81526020600482015260126024820152711350560814d5541413164814915050d2115160721b6044820152606401610cd8565b600a54336000908152601760205260409020546117c0908390612ee8565b111561180e5760405162461bcd60e51b815260206004820152601d60248201527f45584345454453204d4158204d494e54532050455220414444524553530000006044820152606401610cd8565b80600b5461181c9190612ec9565b341461186a5760405162461bcd60e51b815260206004820152601f60248201527f4e45454420544f2053454e4420434f52524543542045544820414d4f554e54006044820152606401610cd8565b3360009081526017602052604081208054839290611889908490612ee8565b909155506110ea90503382612027565b6008546001600160a01b031633146118e15760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600f8054911515620100000262ff000019909216919091179055565b611908848484612041565b6001600160a01b0383163b1515801561192a57506119288484848461241e565b155b15611948576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6012805461195b90612e78565b80601f016020809104026020016040519081016040528092919081815260200182805461198790612e78565b80156119d45780601f106119a9576101008083540402835291602001916119d4565b820191906000526020600020905b8154815290600101906020018083116119b757829003601f168201915b505050505081565b60606119e782611f6f565b611a595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610cd8565b600f546301000000900460ff16611afc5760118054611a7790612e78565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa390612e78565b8015611af05780601f10611ac557610100808354040283529160200191611af0565b820191906000526020600020905b815481529060010190602001808311611ad357829003601f168201915b50505050509050919050565b6000611b06612507565b90506000815111611b265760405180602001604052806000815250611b54565b80611b3084612516565b6012604051602001611b4493929190612f00565b6040516020818303038152906040525b9392505050565b323314611baa5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610cd8565b600f54610100900460ff16611c015760405162461bcd60e51b815260206004820152601960248201527f434f4d4d554e4954592053414c45204e4f5420414354495645000000000000006044820152606401610cd8565b600c543414611c525760405162461bcd60e51b815260206004820152601f60248201527f4e45454420544f2053454e4420434f52524543542045544820414d4f554e54006044820152606401610cd8565b6122b8600954611c6b6001546000546000199190030190565b611c759190612ee8565b1115611cb85760405162461bcd60e51b81526020600482015260126024820152711350560814d5541413164814915050d2115160721b6044820152606401610cd8565b3360009081526016602052604090205460ff1615611d185760405162461bcd60e51b815260206004820152601160248201527f45584345454453204d415820434c41494d0000000000000000000000000000006044820152606401610cd8565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506000611d94848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150859050612011565b905080611dd35760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a210282927a7a360991b6044820152606401610cd8565b336000818152601660205260409020805460ff191660011790556009546119489190612027565b6008546001600160a01b03163314611e425760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b805161155b90601190602084019061294c565b6008546001600160a01b03163314611e9d5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b6001600160a01b038116611f195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cd8565b6110ea816123bf565b6008546001600160a01b03163314611f6a5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b601455565b600081600111158015611f83575060005482105b8015610ad8575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008261201e8584612648565b14949350505050565b61155b8282604051806020016040528060008152506126bc565b600061204c8261227d565b9050836001600160a01b031681600001516001600160a01b03161461209d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806120bb57506120bb8533610994565b806120d65750336120cb84610b70565b6001600160a01b0316145b90508061210f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661214f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215b60008487611fa8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612231576000548214612231578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156122ad575060005481105b1561238d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061238b5780516001600160a01b031615612321579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612386579392505050565b612321565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612453903390899088908890600401612fc4565b6020604051808303816000875af192505050801561248e575060408051601f3d908101601f1916820190925261248b91810190613000565b60015b6124e9573d8080156124bc576040519150601f19603f3d011682016040523d82523d6000602084013e6124c1565b606091505b5080516124e1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060108054610aed90612e78565b60608161255657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612580578061256a8161301d565b91506125799050600a8361304e565b915061255a565b60008167ffffffffffffffff81111561259b5761259b612cbb565b6040519080825280601f01601f1916602001820160405280156125c5576020820181803683370190505b5090505b84156124ff576125da600183613062565b91506125e7600a86613079565b6125f2906030612ee8565b60f81b8183815181106126075761260761308d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612641600a8661304e565b94506125c9565b600081815b84518110156126b457600085828151811061266a5761266a61308d565b6020026020010151905080831161269057600083815260208290526040902092506126a1565b600081815260208490526040902092505b50806126ac8161301d565b91505061264d565b509392505050565b610c8883838360016000546001600160a01b038516612707576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8361273e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156127f057506001600160a01b0387163b15155b15612879575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612841600088848060010195508861241e565b61285e576040516368d2bf6b60e11b815260040160405180910390fd5b808214156127f657826000541461287457600080fd5b6128bf565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561287a575b50600055612276565b8280546128d490612e78565b90600052602060002090601f0160209004810192826128f6576000855561293c565b82601f1061290f5782800160ff1982351617855561293c565b8280016001018555821561293c579182015b8281111561293c578235825591602001919060010190612921565b506129489291506129c0565b5090565b82805461295890612e78565b90600052602060002090601f01602090048101928261297a576000855561293c565b82601f1061299357805160ff191683800117855561293c565b8280016001018555821561293c579182015b8281111561293c5782518255916020019190600101906129a5565b5b8082111561294857600081556001016129c1565b6001600160e01b0319811681146110ea57600080fd5b6000602082840312156129fd57600080fd5b8135611b54816129d5565b60005b83811015612a23578181015183820152602001612a0b565b838111156119485750506000910152565b60008151808452612a4c816020860160208601612a08565b601f01601f19169290920160200192915050565b602081526000611b546020830184612a34565b600060208284031215612a8557600080fd5b5035919050565b80356001600160a01b0381168114612aa357600080fd5b919050565b60008060408385031215612abb57600080fd5b612ac483612a8c565b946020939093013593505050565b60008083601f840112612ae457600080fd5b50813567ffffffffffffffff811115612afc57600080fd5b6020830191508360208260051b8501011115612b1757600080fd5b9250929050565b60008060008060608587031215612b3457600080fd5b8435935060208501359250604085013567ffffffffffffffff811115612b5957600080fd5b612b6587828801612ad2565b95989497509550505050565b600060208284031215612b8357600080fd5b611b5482612a8c565b600080600060608486031215612ba157600080fd5b612baa84612a8c565b9250612bb860208501612a8c565b9150604084013590509250925092565b80358015158114612aa357600080fd5b600060208284031215612bea57600080fd5b611b5482612bc8565b60008060208385031215612c0657600080fd5b823567ffffffffffffffff80821115612c1e57600080fd5b818501915085601f830112612c3257600080fd5b813581811115612c4157600080fd5b866020828501011115612c5357600080fd5b60209290920196919550909350505050565b60008060408385031215612c7857600080fd5b82359150612c8860208401612bc8565b90509250929050565b60008060408385031215612ca457600080fd5b612cad83612a8c565b9150612c8860208401612bc8565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612cec57612cec612cbb565b604051601f8501601f19908116603f01168101908282118183101715612d1457612d14612cbb565b81604052809350858152868686011115612d2d57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612d5d57600080fd5b612d6685612a8c565b9350612d7460208601612a8c565b925060408501359150606085013567ffffffffffffffff811115612d9757600080fd5b8501601f81018713612da857600080fd5b612db787823560208401612cd1565b91505092959194509250565b60008060208385031215612dd657600080fd5b823567ffffffffffffffff811115612ded57600080fd5b612df985828601612ad2565b90969095509350505050565b60008060408385031215612e1857600080fd5b612e2183612a8c565b9150612c8860208401612a8c565b600060208284031215612e4157600080fd5b813567ffffffffffffffff811115612e5857600080fd5b8201601f81018413612e6957600080fd5b6124ff84823560208401612cd1565b600181811c90821680612e8c57607f821691505b60208210811415612ead57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ee357612ee3612eb3565b500290565b60008219821115612efb57612efb612eb3565b500190565b600084516020612f138285838a01612a08565b855191840191612f268184848a01612a08565b8554920191600090600181811c9080831680612f4357607f831692505b858310811415612f6157634e487b7160e01b85526022600452602485fd5b808015612f755760018114612f8657612fb3565b60ff19851688528388019550612fb3565b60008b81526020902060005b85811015612fab5781548a820152908401908801612f92565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ff66080830184612a34565b9695505050505050565b60006020828403121561301257600080fd5b8151611b54816129d5565b600060001982141561303157613031612eb3565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261305d5761305d613038565b500490565b60008282101561307457613074612eb3565b500390565b60008261308857613088613038565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220dc10979e8f8bba7403490e4e73482cf57cd67e6b24b233c8eb4e09d3aef0718d64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003e697066733a2f2f516d5348344a4c456b58623968315736757366574e586e4747615166394c516a7953544b4631647967656f7443752f574f572e6a736f6e0000000000000000000000000000000000000000000000000000000000000000003e697066733a2f2f516d5348344a4c456b58623968315736757366574e586e4747615166394c516a7953544b4631647967656f7443752f574f572e6a736f6e0000

Deployed Bytecode

0x60806040526004361061036b5760003560e01c80636352211e116101c6578063b3ab66b0116100f7578063e0c2573011610095578063eb4883ab1161006f578063eb4883ab146109c2578063f2c4ce1e146109e1578063f2fde38b14610a01578063f61a5ea114610a2157600080fd5b8063e0c2573014610950578063e757c17d14610963578063e985e9c51461097957600080fd5b8063c6682862116100d1578063c6682862146108f3578063c87b56dd14610908578063cca3d86314610928578063cecdc6aa146105dc57600080fd5b8063b3ab66b0146108a0578063b423fe67146108b3578063b88d4fde146108d357600080fd5b80638da5cb5b116101645780639d044ed31161013e5780639d044ed3146108305780639eb009741461084a578063a22cb46514610860578063a85d8fb11461088057600080fd5b80638da5cb5b146107e757806395d89b41146108055780639b6860c81461081a57600080fd5b8063715018a6116101a0578063715018a61461077f578063791a2519146107945780637d7eee42146107b45780638b687318146107d457600080fd5b80636352211e14610729578063704e3d9d1461074957806370a082311461075f57600080fd5b8063279d11e6116102a057806342842e0e1161023e578063529be43b11610218578063529be43b1461069b57806354214f69146106c857806355f804b3146106e95780635e326b921461070957600080fd5b806342842e0e14610645578063438388451461066557806349a5980a1461067b57600080fd5b80632b905bf61161027a5780632b905bf6146105dc57806332cb6b0c146106045780633a380fc61461061a5780633ccfd60b1461063057600080fd5b8063279d11e61461057e57806328d7b276146105a65780632a1ac827146105c657600080fd5b80631e84c4131161030d57806321db7053116102e757806321db7053146104eb57806323b872dd1461051b578063244b7e931461053b57806324824fb11461056857600080fd5b80631e84c4131461047b5780631ede36071461049b578063218a7edc146104c357600080fd5b8063095ea7b311610349578063095ea7b3146103ff57806309686f841461042157806316e854131461043457806318160ddd1461045457600080fd5b806301ffc9a71461037057806306fdde03146103a5578063081812fc146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046129eb565b610a41565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103ba610ade565b60405161039c9190612a60565b3480156103d357600080fd5b506103e76103e2366004612a73565b610b70565b6040516001600160a01b03909116815260200161039c565b34801561040b57600080fd5b5061041f61041a366004612aa8565b610bcd565b005b61041f61042f366004612b1e565b610c8d565b34801561044057600080fd5b5061041f61044f366004612a73565b610f51565b34801561046057600080fd5b5060015460005403600019015b60405190815260200161039c565b34801561048757600080fd5b50600f546103909062010000900460ff1681565b3480156104a757600080fd5b506103e773b2be0116df3eb4b4af4afbe79c03fd0d014c271181565b3480156104cf57600080fd5b506103e77389e22845581245377d19446a6dee78e194ed498681565b3480156104f757600080fd5b50610390610506366004612b71565b60166020526000908152604090205460ff1681565b34801561052757600080fd5b5061041f610536366004612b8c565b610f9e565b34801561054757600080fd5b5061046d610556366004612b71565b60176020526000908152604090205481565b34801561057457600080fd5b5061046d60095481565b34801561058a57600080fd5b506103e773d1c5ee390f1093961887484015e4cee209767a9581565b3480156105b257600080fd5b5061041f6105c1366004612a73565b610fa9565b3480156105d257600080fd5b5061046d600c5481565b3480156105e857600080fd5b506103e77357f55476e91497ba8ceb61439297c47b119cb71481565b34801561061057600080fd5b5061046d6122b881565b34801561062657600080fd5b5061046d600e5481565b34801561063c57600080fd5b5061041f610ff6565b34801561065157600080fd5b5061041f610660366004612b8c565b6110ed565b34801561067157600080fd5b5061046d60135481565b34801561068757600080fd5b5061041f610696366004612bd8565b611108565b3480156106a757600080fd5b5061046d6106b6366004612b71565b60156020526000908152604090205481565b3480156106d457600080fd5b50600f54610390906301000000900460ff1681565b3480156106f557600080fd5b5061041f610704366004612bf3565b61116e565b34801561071557600080fd5b5061041f610724366004612bd8565b6111c2565b34801561073557600080fd5b506103e7610744366004612a73565b61121d565b34801561075557600080fd5b5061046d600a5481565b34801561076b57600080fd5b5061046d61077a366004612b71565b61122f565b34801561078b57600080fd5b5061041f611297565b3480156107a057600080fd5b5061041f6107af366004612a73565b6112eb565b3480156107c057600080fd5b5061041f6107cf366004612a73565b611338565b61041f6107e2366004612c65565b611385565b3480156107f357600080fd5b506008546001600160a01b03166103e7565b34801561081157600080fd5b506103ba61157d565b34801561082657600080fd5b5061046d600b5481565b34801561083c57600080fd5b50600f546103909060ff1681565b34801561085657600080fd5b5061046d60145481565b34801561086c57600080fd5b5061041f61087b366004612c91565b61158c565b34801561088c57600080fd5b5061041f61089b366004612bd8565b61163b565b61041f6108ae366004612a73565b61169d565b3480156108bf57600080fd5b5061041f6108ce366004612bd8565b611899565b3480156108df57600080fd5b5061041f6108ee366004612d47565b6118fd565b3480156108ff57600080fd5b506103ba61194e565b34801561091457600080fd5b506103ba610923366004612a73565b6119dc565b34801561093457600080fd5b506103e7736b75c89ceb22002f713a7d94b678f761352ef46e81565b61041f61095e366004612dc3565b611b5b565b34801561096f57600080fd5b5061046d600d5481565b34801561098557600080fd5b50610390610994366004612e05565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109ce57600080fd5b50600f5461039090610100900460ff1681565b3480156109ed57600080fd5b5061041f6109fc366004612e2f565b611dfa565b348015610a0d57600080fd5b5061041f610a1c366004612b71565b611e55565b348015610a2d57600080fd5b5061041f610a3c366004612a73565b611f22565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480610aa457506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610ad857507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b606060028054610aed90612e78565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1990612e78565b8015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b7b82611f6f565b610bb1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610bd88261121d565b9050806001600160a01b0316836001600160a01b03161415610c26576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610c465750610c448133610994565b155b15610c7d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c88838383611fa8565b505050565b323314610ce15760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b600f5460ff16610d335760405162461bcd60e51b815260206004820152601260248201527f50524553414c45204e4f542041435449564500000000000000000000000000006044820152606401610cd8565b83600d54610d419190612ec9565b3414610d8f5760405162461bcd60e51b815260206004820152601f60248201527f4e45454420544f2053454e4420434f52524543542045544820414d4f554e54006044820152606401610cd8565b6001546000546122b89186910360001901610daa9190612ee8565b1115610ded5760405162461bcd60e51b81526020600482015260126024820152711350560814d5541413164814915050d2115160721b6044820152606401610cd8565b336000908152601560205260409020548390610e0a908690612ee8565b1115610e585760405162461bcd60e51b815260206004820152601160248201527f45584345454453204d415820434c41494d0000000000000000000000000000006044820152606401610cd8565b6040516bffffffffffffffffffffffff193360601b166020820152603481018490526000906054016040516020818303038152906040528051906020012090506000610edb848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150859050612011565b905080610f1a5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a210282927a7a360991b6044820152606401610cd8565b3360009081526015602052604081208054889290610f39908490612ee8565b90915550610f4990503387612027565b505050505050565b6008546001600160a01b03163314610f995760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600c55565b610c88838383612041565b6008546001600160a01b03163314610ff15760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b601355565b6008546001600160a01b0316331461103e5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b6040516000907357f55476e91497ba8ceb61439297c47b119cb7149047908381818185875af1925050503d8060008114611094576040519150601f19603f3d011682016040523d82523d6000602084013e611099565b606091505b50509050806110ea5760405162461bcd60e51b815260206004820152601060248201527f5472616e73666572206661696c65642e000000000000000000000000000000006044820152606401610cd8565b50565b610c88838383604051806020016040528060008152506118fd565b6008546001600160a01b031633146111505760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600f805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146111b65760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b610c88601083836128c8565b6008546001600160a01b0316331461120a5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600f805460ff1916911515919091179055565b60006112288261227d565b5192915050565b60006001600160a01b038216611271576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112df5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b6112e960006123bf565b565b6008546001600160a01b031633146113335760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600b55565b6008546001600160a01b031633146113805760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600d55565b6008546001600160a01b031633146113cd5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b6001546000546122b891849103600019016113e89190612ee8565b111561142b5760405162461bcd60e51b81526020600482015260126024820152711350560814d5541413164814915050d2115160721b6044820152606401610cd8565b600e54341461147c5760405162461bcd60e51b815260206004820152601f60248201527f4e45454420544f2053454e4420434f52524543542045544820414d4f554e54006044820152606401610cd8565b801561155f576114a173b2be0116df3eb4b4af4afbe79c03fd0d014c2711600f612027565b6114c073d1c5ee390f1093961887484015e4cee209767a95600f612027565b6114df7389e22845581245377d19446a6dee78e194ed4986600f612027565b6114fe736b75c89ceb22002f713a7d94b678f761352ef46e600f612027565b61151d7357f55476e91497ba8ceb61439297c47b119cb7146028612027565b61153c7357f55476e91497ba8ceb61439297c47b119cb714602b612027565b61155b7357f55476e91497ba8ceb61439297c47b119cb7146039612027565b5050565b61155b7357f55476e91497ba8ceb61439297c47b119cb71483612027565b606060038054610aed90612e78565b6001600160a01b0382163314156115cf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146116835760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600f80549115156101000261ff0019909216919091179055565b3233146116ec5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610cd8565b600f5462010000900460ff166117445760405162461bcd60e51b815260206004820152601960248201527f5055424c49432053414c45204953204e4f5420414354495645000000000000006044820152606401610cd8565b6001546000546122b8918391036000190161175f9190612ee8565b11156117a25760405162461bcd60e51b81526020600482015260126024820152711350560814d5541413164814915050d2115160721b6044820152606401610cd8565b600a54336000908152601760205260409020546117c0908390612ee8565b111561180e5760405162461bcd60e51b815260206004820152601d60248201527f45584345454453204d4158204d494e54532050455220414444524553530000006044820152606401610cd8565b80600b5461181c9190612ec9565b341461186a5760405162461bcd60e51b815260206004820152601f60248201527f4e45454420544f2053454e4420434f52524543542045544820414d4f554e54006044820152606401610cd8565b3360009081526017602052604081208054839290611889908490612ee8565b909155506110ea90503382612027565b6008546001600160a01b031633146118e15760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b600f8054911515620100000262ff000019909216919091179055565b611908848484612041565b6001600160a01b0383163b1515801561192a57506119288484848461241e565b155b15611948576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6012805461195b90612e78565b80601f016020809104026020016040519081016040528092919081815260200182805461198790612e78565b80156119d45780601f106119a9576101008083540402835291602001916119d4565b820191906000526020600020905b8154815290600101906020018083116119b757829003601f168201915b505050505081565b60606119e782611f6f565b611a595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610cd8565b600f546301000000900460ff16611afc5760118054611a7790612e78565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa390612e78565b8015611af05780601f10611ac557610100808354040283529160200191611af0565b820191906000526020600020905b815481529060010190602001808311611ad357829003601f168201915b50505050509050919050565b6000611b06612507565b90506000815111611b265760405180602001604052806000815250611b54565b80611b3084612516565b6012604051602001611b4493929190612f00565b6040516020818303038152906040525b9392505050565b323314611baa5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610cd8565b600f54610100900460ff16611c015760405162461bcd60e51b815260206004820152601960248201527f434f4d4d554e4954592053414c45204e4f5420414354495645000000000000006044820152606401610cd8565b600c543414611c525760405162461bcd60e51b815260206004820152601f60248201527f4e45454420544f2053454e4420434f52524543542045544820414d4f554e54006044820152606401610cd8565b6122b8600954611c6b6001546000546000199190030190565b611c759190612ee8565b1115611cb85760405162461bcd60e51b81526020600482015260126024820152711350560814d5541413164814915050d2115160721b6044820152606401610cd8565b3360009081526016602052604090205460ff1615611d185760405162461bcd60e51b815260206004820152601160248201527f45584345454453204d415820434c41494d0000000000000000000000000000006044820152606401610cd8565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506000611d94848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506014549150859050612011565b905080611dd35760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a210282927a7a360991b6044820152606401610cd8565b336000818152601660205260409020805460ff191660011790556009546119489190612027565b6008546001600160a01b03163314611e425760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b805161155b90601190602084019061294c565b6008546001600160a01b03163314611e9d5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b6001600160a01b038116611f195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cd8565b6110ea816123bf565b6008546001600160a01b03163314611f6a5760405162461bcd60e51b815260206004820181905260248201526000805160206130a48339815191526044820152606401610cd8565b601455565b600081600111158015611f83575060005482105b8015610ad8575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60008261201e8584612648565b14949350505050565b61155b8282604051806020016040528060008152506126bc565b600061204c8261227d565b9050836001600160a01b031681600001516001600160a01b03161461209d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806120bb57506120bb8533610994565b806120d65750336120cb84610b70565b6001600160a01b0316145b90508061210f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661214f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61215b60008487611fa8565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116612231576000548214612231578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281806001111580156122ad575060005481105b1561238d57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061238b5780516001600160a01b031615612321579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612386579392505050565b612321565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290612453903390899088908890600401612fc4565b6020604051808303816000875af192505050801561248e575060408051601f3d908101601f1916820190925261248b91810190613000565b60015b6124e9573d8080156124bc576040519150601f19603f3d011682016040523d82523d6000602084013e6124c1565b606091505b5080516124e1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060108054610aed90612e78565b60608161255657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612580578061256a8161301d565b91506125799050600a8361304e565b915061255a565b60008167ffffffffffffffff81111561259b5761259b612cbb565b6040519080825280601f01601f1916602001820160405280156125c5576020820181803683370190505b5090505b84156124ff576125da600183613062565b91506125e7600a86613079565b6125f2906030612ee8565b60f81b8183815181106126075761260761308d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612641600a8661304e565b94506125c9565b600081815b84518110156126b457600085828151811061266a5761266a61308d565b6020026020010151905080831161269057600083815260208290526040902092506126a1565b600081815260208490526040902092505b50806126ac8161301d565b91505061264d565b509392505050565b610c8883838360016000546001600160a01b038516612707576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8361273e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156127f057506001600160a01b0387163b15155b15612879575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612841600088848060010195508861241e565b61285e576040516368d2bf6b60e11b815260040160405180910390fd5b808214156127f657826000541461287457600080fd5b6128bf565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561287a575b50600055612276565b8280546128d490612e78565b90600052602060002090601f0160209004810192826128f6576000855561293c565b82601f1061290f5782800160ff1982351617855561293c565b8280016001018555821561293c579182015b8281111561293c578235825591602001919060010190612921565b506129489291506129c0565b5090565b82805461295890612e78565b90600052602060002090601f01602090048101928261297a576000855561293c565b82601f1061299357805160ff191683800117855561293c565b8280016001018555821561293c579182015b8281111561293c5782518255916020019190600101906129a5565b5b8082111561294857600081556001016129c1565b6001600160e01b0319811681146110ea57600080fd5b6000602082840312156129fd57600080fd5b8135611b54816129d5565b60005b83811015612a23578181015183820152602001612a0b565b838111156119485750506000910152565b60008151808452612a4c816020860160208601612a08565b601f01601f19169290920160200192915050565b602081526000611b546020830184612a34565b600060208284031215612a8557600080fd5b5035919050565b80356001600160a01b0381168114612aa357600080fd5b919050565b60008060408385031215612abb57600080fd5b612ac483612a8c565b946020939093013593505050565b60008083601f840112612ae457600080fd5b50813567ffffffffffffffff811115612afc57600080fd5b6020830191508360208260051b8501011115612b1757600080fd5b9250929050565b60008060008060608587031215612b3457600080fd5b8435935060208501359250604085013567ffffffffffffffff811115612b5957600080fd5b612b6587828801612ad2565b95989497509550505050565b600060208284031215612b8357600080fd5b611b5482612a8c565b600080600060608486031215612ba157600080fd5b612baa84612a8c565b9250612bb860208501612a8c565b9150604084013590509250925092565b80358015158114612aa357600080fd5b600060208284031215612bea57600080fd5b611b5482612bc8565b60008060208385031215612c0657600080fd5b823567ffffffffffffffff80821115612c1e57600080fd5b818501915085601f830112612c3257600080fd5b813581811115612c4157600080fd5b866020828501011115612c5357600080fd5b60209290920196919550909350505050565b60008060408385031215612c7857600080fd5b82359150612c8860208401612bc8565b90509250929050565b60008060408385031215612ca457600080fd5b612cad83612a8c565b9150612c8860208401612bc8565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612cec57612cec612cbb565b604051601f8501601f19908116603f01168101908282118183101715612d1457612d14612cbb565b81604052809350858152868686011115612d2d57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215612d5d57600080fd5b612d6685612a8c565b9350612d7460208601612a8c565b925060408501359150606085013567ffffffffffffffff811115612d9757600080fd5b8501601f81018713612da857600080fd5b612db787823560208401612cd1565b91505092959194509250565b60008060208385031215612dd657600080fd5b823567ffffffffffffffff811115612ded57600080fd5b612df985828601612ad2565b90969095509350505050565b60008060408385031215612e1857600080fd5b612e2183612a8c565b9150612c8860208401612a8c565b600060208284031215612e4157600080fd5b813567ffffffffffffffff811115612e5857600080fd5b8201601f81018413612e6957600080fd5b6124ff84823560208401612cd1565b600181811c90821680612e8c57607f821691505b60208210811415612ead57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ee357612ee3612eb3565b500290565b60008219821115612efb57612efb612eb3565b500190565b600084516020612f138285838a01612a08565b855191840191612f268184848a01612a08565b8554920191600090600181811c9080831680612f4357607f831692505b858310811415612f6157634e487b7160e01b85526022600452602485fd5b808015612f755760018114612f8657612fb3565b60ff19851688528388019550612fb3565b60008b81526020902060005b85811015612fab5781548a820152908401908801612f92565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612ff66080830184612a34565b9695505050505050565b60006020828403121561301257600080fd5b8151611b54816129d5565b600060001982141561303157613031612eb3565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261305d5761305d613038565b500490565b60008282101561307457613074612eb3565b500390565b60008261308857613088613038565b500690565b634e487b7160e01b600052603260045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220dc10979e8f8bba7403490e4e73482cf57cd67e6b24b233c8eb4e09d3aef0718d64736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003e697066733a2f2f516d5348344a4c456b58623968315736757366574e586e4747615166394c516a7953544b4631647967656f7443752f574f572e6a736f6e0000000000000000000000000000000000000000000000000000000000000000003e697066733a2f2f516d5348344a4c456b58623968315736757366574e586e4747615166394c516a7953544b4631647967656f7443752f574f572e6a736f6e0000

-----Decoded View---------------
Arg [0] : _initNotRevealedUri (string): ipfs://QmSH4JLEkXb9h1W6usfWNXnGGaQf9LQjySTKF1dygeotCu/WOW.json
Arg [1] : _initURI (string): ipfs://QmSH4JLEkXb9h1W6usfWNXnGGaQf9LQjySTKF1dygeotCu/WOW.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000003e
Arg [3] : 697066733a2f2f516d5348344a4c456b58623968315736757366574e586e4747
Arg [4] : 615166394c516a7953544b4631647967656f7443752f574f572e6a736f6e0000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000003e
Arg [6] : 697066733a2f2f516d5348344a4c456b58623968315736757366574e586e4747
Arg [7] : 615166394c516a7953544b4631647967656f7443752f574f572e6a736f6e0000


Deployed Bytecode Sourcemap

45744:8494:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27955:305;;;;;;;;;;-1:-1:-1;27955:305:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;27955:305:0;;;;;;;;31068:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32571:204::-;;;;;;;;;;-1:-1:-1;32571:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1738:55:1;;;1720:74;;1708:2;1693:18;32571:204:0;1574:226:1;32134:371:0;;;;;;;;;;-1:-1:-1;32134:371:0;;;;;:::i;:::-;;:::i;:::-;;48074:756;;;;;;:::i;:::-;;:::i;51881:112::-;;;;;;;;;;-1:-1:-1;51881:112:0;;;;;:::i;:::-;;:::i;27204:303::-;;;;;;;;;;-1:-1:-1;53938:1:0;27458:12;27248:7;27442:13;:28;-1:-1:-1;;27442:46:0;27204:303;;;3361:25:1;;;3349:2;3334:18;27204:303:0;3215:177:1;46387:30:0;;;;;;;;;;-1:-1:-1;46387:30:0;;;;;;;;;;;47198:81;;;;;;;;;;;;47237:42;47198:81;;47375:83;;;;;;;;;;;;47416:42;47375:83;;46827:51;;;;;;;;;;-1:-1:-1;46827:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33436:170;;;;;;;;;;-1:-1:-1;33436:170:0;;;;;:::i;:::-;;:::i;46885:51::-;;;;;;;;;;-1:-1:-1;46885:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;45953:37;;;;;;;;;;;;;;;;47287:80;;;;;;;;;;;;47325:42;47287:80;;52274:120;;;;;;;;;;-1:-1:-1;52274:120:0;;;;;:::i;:::-;;:::i;46127:46::-;;;;;;;;;;;;;;;;46983:80;;;;;;;;;;;;47021:42;46983:80;;45866:41;;;;;;;;;;;;45903:4;45866:41;;46228:38;;;;;;;;;;;;;;;;54061:174;;;;;;;;;;;;;:::i;33677:185::-;;;;;;;;;;-1:-1:-1;33677:185:0;;;;;:::i;:::-;;:::i;46653:32::-;;;;;;;;;;;;;;;;53674:95;;;;;;;;;;-1:-1:-1;53674:95:0;;;;;:::i;:::-;;:::i;46772:48::-;;;;;;;;;;-1:-1:-1;46772:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;46461:30;;;;;;;;;;-1:-1:-1;46461:30:0;;;;;;;;;;;53369:106;;;;;;;;;;-1:-1:-1;53369:106:0;;;;;:::i;:::-;;:::i;51120:103::-;;;;;;;;;;-1:-1:-1;51120:103:0;;;;;:::i;:::-;;:::i;30876:125::-;;;;;;;;;;-1:-1:-1;30876:125:0;;;;;:::i;:::-;;:::i;45997:38::-;;;;;;;;;;;;;;;;28324:206;;;;;;;;;;-1:-1:-1;28324:206:0;;;;;:::i;:::-;;:::i;22950:103::-;;;;;;;;;;;;;:::i;52057:106::-;;;;;;;;;;-1:-1:-1;52057:106:0;;;;;:::i;:::-;;:::i;51719:100::-;;;;;;;;;;-1:-1:-1;51719:100:0;;;;;:::i;:::-;;:::i;50214:776::-;;;;;;:::i;:::-;;:::i;22299:87::-;;;;;;;;;;-1:-1:-1;22372:6:0;;-1:-1:-1;;;;;22372:6:0;22299:87;;31237:104;;;;;;;;;;;;;:::i;46076:43::-;;;;;;;;;;;;;;;;46313:27;;;;;;;;;;-1:-1:-1;46313:27:0;;;;;;;;46692:38;;;;;;;;;;;;;;;;32847:287;;;;;;;;;;-1:-1:-1;32847:287:0;;;;;:::i;:::-;;:::i;51314:115::-;;;;;;;;;;-1:-1:-1;51314:115:0;;;;;:::i;:::-;;:::i;49669:537::-;;;;;;:::i;:::-;;:::i;51510:109::-;;;;;;;;;;-1:-1:-1;51510:109:0;;;;;:::i;:::-;;:::i;33933:369::-;;;;;;;;;;-1:-1:-1;33933:369:0;;;;;:::i;:::-;;:::i;46569:37::-;;;;;;;;;;;;;:::i;52699:476::-;;;;;;;;;;-1:-1:-1;52699:476:0;;;;;:::i;:::-;;:::i;47466:81::-;;;;;;;;;;;;47505:42;47466:81;;48892:718;;;;;;:::i;:::-;;:::i;46181:40::-;;;;;;;;;;;;;;;;33205:164;;;;;;;;;;-1:-1:-1;33205:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33326:25:0;;;33302:4;33326:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33205:164;46347:33;;;;;;;;;;-1:-1:-1;46347:33:0;;;;;;;;;;;53183:126;;;;;;;;;;-1:-1:-1;53183:126:0;;;;;:::i;:::-;;:::i;23208:201::-;;;;;;;;;;-1:-1:-1;23208:201:0;;;;;:::i;:::-;;:::i;52466:132::-;;;;;;;;;;-1:-1:-1;52466:132:0;;;;;:::i;:::-;;:::i;27955:305::-;28057:4;-1:-1:-1;;;;;;28094:40:0;;28109:25;28094:40;;:105;;-1:-1:-1;;;;;;;28151:48:0;;28166:33;28151:48;28094:105;:158;;;-1:-1:-1;14254:25:0;-1:-1:-1;;;;;;14239:40:0;;;28216:36;28074:178;27955:305;-1:-1:-1;;27955:305:0:o;31068:100::-;31122:13;31155:5;31148:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31068:100;:::o;32571:204::-;32639:7;32664:16;32672:7;32664;:16::i;:::-;32659:64;;32689:34;;;;;;;;;;;;;;32659:64;-1:-1:-1;32743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32743:24:0;;32571:204::o;32134:371::-;32207:13;32223:24;32239:7;32223:15;:24::i;:::-;32207:40;;32268:5;-1:-1:-1;;;;;32262:11:0;:2;-1:-1:-1;;;;;32262:11:0;;32258:48;;;32282:24;;;;;;;;;;;;;;32258:48;21217:10;-1:-1:-1;;;;;32323:21:0;;;;;;:63;;-1:-1:-1;32349:37:0;32366:5;21217:10;33205:164;:::i;32349:37::-;32348:38;32323:63;32319:138;;;32410:35;;;;;;;;;;;;;;32319:138;32469:28;32478:2;32482:7;32491:5;32469:8;:28::i;:::-;32196:309;32134:371;;:::o;48074:756::-;47907:9;47920:10;47907:23;47899:66;;;;-1:-1:-1;;;47899:66:0;;9049:2:1;47899:66:0;;;9031:21:1;9088:2;9068:18;;;9061:30;9127:32;9107:18;;;9100:60;9177:18;;47899:66:0;;;;;;;;;48211:15:::1;::::0;::::1;;48203:46;;;::::0;-1:-1:-1;;;48203:46:0;;9408:2:1;48203:46:0::1;::::0;::::1;9390:21:1::0;9447:2;9427:18;;;9420:30;9486:20;9466:18;;;9459:48;9524:18;;48203:46:0::1;9206:342:1::0;48203:46:0::1;48296:9;48281:12;;:24;;;;:::i;:::-;48268:9;:37;48260:81;;;::::0;-1:-1:-1;;;48260:81:0;;10117:2:1;48260:81:0::1;::::0;::::1;10099:21:1::0;10156:2;10136:18;;;10129:30;10195:33;10175:18;;;10168:61;10246:18;;48260:81:0::1;9915:355:1::0;48260:81:0::1;53938:1:::0;27458:12;27248:7;27442:13;45903:4:::1;::::0;48376:9;;27442:28;-1:-1:-1;;27442:46:0;48360:25:::1;;;;:::i;:::-;:39;;48352:71;;;::::0;-1:-1:-1;;;48352:71:0;;10610:2:1;48352:71:0::1;::::0;::::1;10592:21:1::0;10649:2;10629:18;;;10622:30;-1:-1:-1;;;10668:18:1;;;10661:48;10726:18;;48352:71:0::1;10408:342:1::0;48352:71:0::1;48456:10;48442:25;::::0;;;:13:::1;:25;::::0;;;;;48483:10;;48442:37:::1;::::0;48470:9;;48442:37:::1;:::i;:::-;:51;;48434:81;;;::::0;-1:-1:-1;;;48434:81:0;;10957:2:1;48434:81:0::1;::::0;::::1;10939:21:1::0;10996:2;10976:18;;;10969:30;11035:19;11015:18;;;11008:47;11072:18;;48434:81:0::1;10755:341:1::0;48434:81:0::1;48554:40;::::0;-1:-1:-1;;48571:10:0::1;11278:2:1::0;11274:15;11270:53;48554:40:0::1;::::0;::::1;11258:66:1::0;11340:12;;;11333:28;;;48527:14:0::1;::::0;11377:12:1;;48554:40:0::1;;;;;;;;;;;;48544:51;;;;;;48527:68;;48606:17;48626:53;48645:6;;48626:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;48653:17:0::1;::::0;;-1:-1:-1;48672:6:0;;-1:-1:-1;48626:18:0::1;:53::i;:::-;48606:73;;48698:12;48690:38;;;::::0;-1:-1:-1;;;48690:38:0;;11602:2:1;48690:38:0::1;::::0;::::1;11584:21:1::0;11641:2;11621:18;;;11614:30;-1:-1:-1;;;11660:18:1;;;11653:43;11713:18;;48690:38:0::1;11400:337:1::0;48690:38:0::1;48755:10;48741:25;::::0;;;:13:::1;:25;::::0;;;;:38;;48770:9;;48741:25;:38:::1;::::0;48770:9;;48741:38:::1;:::i;:::-;::::0;;;-1:-1:-1;48790:32:0::1;::::0;-1:-1:-1;48800:10:0::1;48812:9:::0;48790::::1;:32::i;:::-;48192:638;;48074:756:::0;;;;:::o;51881:112::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;51958:18:::1;:27:::0;51881:112::o;33436:170::-;33570:28;33580:4;33586:2;33590:7;33570:9;:28::i;52274:120::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;52355:17:::1;:31:::0;52274:120::o;54061:174::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;54130:50:::1;::::0;54112:12:::1;::::0;47021:42:::1;::::0;54154:21:::1;::::0;54112:12;54130:50;54112:12;54130:50;54154:21;47021:42;54130:50:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54111:69;;;54199:7;54191:36;;;::::0;-1:-1:-1;;;54191:36:0;;12515:2:1;54191:36:0::1;::::0;::::1;12497:21:1::0;12554:2;12534:18;;;12527:30;12593:18;12573;;;12566:46;12629:18;;54191:36:0::1;12313:340:1::0;54191:36:0::1;54100:135;54061:174::o:0;33677:185::-;33815:39;33832:4;33838:2;33842:7;33815:39;;;;;;;;;;;;:16;:39::i;53674:95::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;53741:10:::1;:20:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;53741:20:0;;::::1;::::0;;;::::1;::::0;;53674:95::o;53369:106::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;53444:23:::1;:13;53460:7:::0;;53444:23:::1;:::i;51120:103::-:0;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;51190:15:::1;:25:::0;;-1:-1:-1;;51190:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51120:103::o;30876:125::-;30940:7;30967:21;30980:7;30967:12;:21::i;:::-;:26;;30876:125;-1:-1:-1;;30876:125:0:o;28324:206::-;28388:7;-1:-1:-1;;;;;28412:19:0;;28408:60;;28440:28;;;;;;;;;;;;;;28408:60;-1:-1:-1;;;;;;28494:19:0;;;;;:12;:19;;;;;:27;;;;28324:206::o;22950:103::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;23015:30:::1;23042:1;23015:18;:30::i;:::-;22950:103::o:0;52057:106::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;52131:15:::1;:24:::0;52057:106::o;51719:100::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;51790:12:::1;:21:::0;51719:100::o;50214:776::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;53938:1;27458:12;27248:7;27442:13;45903:4:::1;::::0;50329:9;;27442:28;-1:-1:-1;;27442:46:0;50313:25:::1;;;;:::i;:::-;:39;;50305:71;;;::::0;-1:-1:-1;;;50305:71:0;;10610:2:1;50305:71:0::1;::::0;::::1;10592:21:1::0;10649:2;10629:18;;;10622:30;-1:-1:-1;;;10668:18:1;;;10661:48;10726:18;;50305:71:0::1;10408:342:1::0;50305:71:0::1;50408:13;;50395:9;:26;50387:70;;;::::0;-1:-1:-1;;;50387:70:0;;10117:2:1;50387:70:0::1;::::0;::::1;10099:21:1::0;10156:2;10136:18;;;10129:30;10195:33;10175:18;;;10168:61;10246:18;;50387:70:0::1;9915:355:1::0;50387:70:0::1;50472:9;50468:515;;;50551:27;47237:42;50575:2;50551:9;:27::i;:::-;50593:26;47325:42;50616:2;50593:9;:26::i;:::-;50634:29;47416:42;50660:2;50634:9;:29::i;:::-;50678:27;47505:42;50702:2;50678:9;:27::i;:::-;50775:19;47149:42;50791:2;50775:9;:19::i;:::-;50809;47149:42;50825:2;50809:9;:19::i;:::-;50843;47149:42;50859:2;50843:9;:19::i;:::-;50214:776:::0;;:::o;50468:515::-:1;50945:26;47149:42;50961:9;50945;:26::i;31237:104::-:0;31293:13;31326:7;31319:14;;;;;:::i;32847:287::-;-1:-1:-1;;;;;32946:24:0;;21217:10;32946:24;32942:54;;;32979:17;;;;;;;;;;;;;;32942:54;21217:10;33009:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33009:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33009:53:0;;;;;;;;;;33078:48;;586:41:1;;;33009:42:0;;21217:10;33078:48;;559:18:1;33078:48:0;;;;;;;32847:287;;:::o;51314:115::-;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;51390:21:::1;:31:::0;;;::::1;;;;-1:-1:-1::0;;51390:31:0;;::::1;::::0;;;::::1;::::0;;51314:115::o;49669:537::-;47907:9;47920:10;47907:23;47899:66;;;;-1:-1:-1;;;47899:66:0;;9049:2:1;47899:66:0;;;9031:21:1;9088:2;9068:18;;;9061:30;9127:32;9107:18;;;9100:60;9177:18;;47899:66:0;8847:354:1;47899:66:0;49761:18:::1;::::0;;;::::1;;;49753:56;;;::::0;-1:-1:-1;;;49753:56:0;;12860:2:1;49753:56:0::1;::::0;::::1;12842:21:1::0;12899:2;12879:18;;;12872:30;12938:27;12918:18;;;12911:55;12983:18;;49753:56:0::1;12658:349:1::0;49753:56:0::1;53938:1:::0;27458:12;27248:7;27442:13;45903:4:::1;::::0;49844:9;;27442:28;-1:-1:-1;;27442:46:0;49828:25:::1;;;;:::i;:::-;:39;;49820:71;;;::::0;-1:-1:-1;;;49820:71:0;;10610:2:1;49820:71:0::1;::::0;::::1;10592:21:1::0;10649:2;10629:18;;;10622:30;-1:-1:-1;;;10668:18:1;;;10661:48;10726:18;;49820:71:0::1;10408:342:1::0;49820:71:0::1;49954:17;::::0;49927:10:::1;49910:28;::::0;;;:16:::1;:28;::::0;;;;;:40:::1;::::0;49941:9;;49910:40:::1;:::i;:::-;:61;;49902:103;;;::::0;-1:-1:-1;;;49902:103:0;;13214:2:1;49902:103:0::1;::::0;::::1;13196:21:1::0;13253:2;13233:18;;;13226:30;13292:31;13272:18;;;13265:59;13341:18;;49902:103:0::1;13012:353:1::0;49902:103:0::1;50056:9;50038:15;;:27;;;;:::i;:::-;50025:9;:40;50017:84;;;::::0;-1:-1:-1;;;50017:84:0;;10117:2:1;50017:84:0::1;::::0;::::1;10099:21:1::0;10156:2;10136:18;;;10129:30;10195:33;10175:18;;;10168:61;10246:18;;50017:84:0::1;9915:355:1::0;50017:84:0::1;50131:10;50114:28;::::0;;;:16:::1;:28;::::0;;;;:41;;50146:9;;50114:28;:41:::1;::::0;50146:9;;50114:41:::1;:::i;:::-;::::0;;;-1:-1:-1;50166:32:0::1;::::0;-1:-1:-1;50176:10:0::1;50188:9:::0;50166::::1;:32::i;51510:109::-:0;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;51583:18:::1;:28:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51583:28:0;;::::1;::::0;;;::::1;::::0;;51510:109::o;33933:369::-;34100:28;34110:4;34116:2;34120:7;34100:9;:28::i;:::-;-1:-1:-1;;;;;34143:13:0;;5678:19;:23;;34143:76;;;;;34163:56;34194:4;34200:2;34204:7;34213:5;34163:30;:56::i;:::-;34162:57;34143:76;34139:156;;;34243:40;;-1:-1:-1;;;34243:40:0;;;;;;;;;;;34139:156;33933:369;;;;:::o;46569:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52699:476::-;52772:13;52813:16;52821:7;52813;:16::i;:::-;52797:97;;;;-1:-1:-1;;;52797:97:0;;13572:2:1;52797:97:0;;;13554:21:1;13611:2;13591:18;;;13584:30;13650:34;13630:18;;;13623:62;13721:17;13701:18;;;13694:45;13756:19;;52797:97:0;13370:411:1;52797:97:0;52910:10;;;;;;;52907:64;;52949:14;52942:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52699:476;;;:::o;52907:64::-;52979:28;53010:10;:8;:10::i;:::-;52979:41;;53065:1;53040:14;53034:28;:32;:133;;;;;;;;;;;;;;;;;53102:14;53118:18;:7;:16;:18::i;:::-;53138:13;53085:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53034:133;53027:140;52699:476;-1:-1:-1;;;52699:476:0:o;48892:718::-;47907:9;47920:10;47907:23;47899:66;;;;-1:-1:-1;;;47899:66:0;;9049:2:1;47899:66:0;;;9031:21:1;9088:2;9068:18;;;9061:30;9127:32;9107:18;;;9100:60;9177:18;;47899:66:0;8847:354:1;47899:66:0;48995:21:::1;::::0;::::1;::::0;::::1;;;48987:59;;;::::0;-1:-1:-1;;;48987:59:0;;15703:2:1;48987:59:0::1;::::0;::::1;15685:21:1::0;15742:2;15722:18;;;15715:30;15781:27;15761:18;;;15754:55;15826:18;;48987:59:0::1;15501:349:1::0;48987:59:0::1;49078:18;;49065:9;:31;49057:75;;;::::0;-1:-1:-1;;;49057:75:0;;10117:2:1;49057:75:0::1;::::0;::::1;10099:21:1::0;10156:2;10136:18;;;10129:30;10195:33;10175:18;;;10168:61;10246:18;;49057:75:0::1;9915:355:1::0;49057:75:0::1;45903:4;49167:16;;49151:13;53938:1:::0;27458:12;27248:7;27442:13;-1:-1:-1;;27442:28:0;;;:46;;27204:303;49151:13:::1;:32;;;;:::i;:::-;:46;;49143:78;;;::::0;-1:-1:-1;;;49143:78:0;;10610:2:1;49143:78:0::1;::::0;::::1;10592:21:1::0;10649:2;10629:18;;;10622:30;-1:-1:-1;;;10668:18:1;;;10661:48;10726:18;;49143:78:0::1;10408:342:1::0;49143:78:0::1;49261:10;49241:31;::::0;;;:19:::1;:31;::::0;;;;;::::1;;49240:32;49232:62;;;::::0;-1:-1:-1;;;49232:62:0;;10957:2:1;49232:62:0::1;::::0;::::1;10939:21:1::0;10996:2;10976:18;;;10969:30;11035:19;11015:18;;;11008:47;11072:18;;49232:62:0::1;10755:341:1::0;49232:62:0::1;49333:28;::::0;-1:-1:-1;;49350:10:0::1;16004:2:1::0;16000:15;15996:53;49333:28:0::1;::::0;::::1;15984:66:1::0;49306:14:0::1;::::0;16066:12:1;;49333:28:0::1;;;;;;;;;;;;49323:39;;;;;;49306:56;;49373:17;49393:59;49412:6;;49393:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;49420:23:0::1;::::0;;-1:-1:-1;49445:6:0;;-1:-1:-1;49393:18:0::1;:59::i;:::-;49373:79;;49471:12;49463:38;;;::::0;-1:-1:-1;;;49463:38:0;;11602:2:1;49463:38:0::1;::::0;::::1;11584:21:1::0;11641:2;11621:18;;;11614:30;-1:-1:-1;;;11660:18:1;;;11653:43;11713:18;;49463:38:0::1;11400:337:1::0;49463:38:0::1;49534:10;49514:31;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;49514:38:0::1;49548:4;49514:38;::::0;;49585:16:::1;::::0;49563:39:::1;::::0;49534:10;49563:9:::1;:39::i;53183:126::-:0;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;53269:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;23208:201::-:0;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;-1:-1:-1;;;;;23297:22:0;::::1;23289:73;;;::::0;-1:-1:-1;;;23289:73:0;;16291:2:1;23289:73:0::1;::::0;::::1;16273:21:1::0;16330:2;16310:18;;;16303:30;16369:34;16349:18;;;16342:62;16440:8;16420:18;;;16413:36;16466:19;;23289:73:0::1;16089:402:1::0;23289:73:0::1;23373:28;23392:8;23373:18;:28::i;52466:132::-:0;22372:6;;-1:-1:-1;;;;;22372:6:0;21217:10;22519:23;22511:68;;;;-1:-1:-1;;;22511:68:0;;11944:2:1;22511:68:0;;;11926:21:1;;;11963:18;;;11956:30;-1:-1:-1;;;;;;;;;;;12002:18:1;;;11995:62;12074:18;;22511:68:0;11742:356:1;22511:68:0;52553:23:::1;:37:::0;52466:132::o;34557:187::-;34614:4;34657:7;53938:1;34638:26;;:53;;;;;34678:13;;34668:7;:23;34638:53;:98;;;;-1:-1:-1;;34709:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34709:27:0;;;;34708:28;;34557:187::o;42727:196::-;42842:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;42842:29:0;-1:-1:-1;;;;;42842:29:0;;;;;;;;;42887:28;;42842:24;;42887:28;;;;;;;42727:196;;;:::o;797:190::-;922:4;975;946:25;959:5;966:4;946:12;:25::i;:::-;:33;;797:190;-1:-1:-1;;;;797:190:0:o;34752:104::-;34821:27;34831:2;34835:8;34821:27;;;;;;;;;;;;:9;:27::i;37670:2130::-;37785:35;37823:21;37836:7;37823:12;:21::i;:::-;37785:59;;37883:4;-1:-1:-1;;;;;37861:26:0;:13;:18;;;-1:-1:-1;;;;;37861:26:0;;37857:67;;37896:28;;;;;;;;;;;;;;37857:67;37937:22;21217:10;-1:-1:-1;;;;;37963:20:0;;;;:73;;-1:-1:-1;38000:36:0;38017:4;21217:10;33205:164;:::i;38000:36::-;37963:126;;;-1:-1:-1;21217:10:0;38053:20;38065:7;38053:11;:20::i;:::-;-1:-1:-1;;;;;38053:36:0;;37963:126;37937:153;;38108:17;38103:66;;38134:35;;;;;;;;;;;;;;38103:66;-1:-1:-1;;;;;38184:16:0;;38180:52;;38209:23;;;;;;;;;;;;;;38180:52;38353:35;38370:1;38374:7;38383:4;38353:8;:35::i;:::-;-1:-1:-1;;;;;38684:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38684:31:0;;;;;;;-1:-1:-1;;38684:31:0;;;;;;;38730:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38730:29:0;;;;;;;;;;;38810:20;;;:11;:20;;;;;;38845:18;;-1:-1:-1;;;;;;38878:49:0;;;;-1:-1:-1;;;38911:15:0;38878:49;;;;;;;;;;39201:11;;39261:24;;;;;39304:13;;38810:20;;39261:24;;39304:13;39300:384;;39514:13;;39499:11;:28;39495:174;;39552:20;;39621:28;;;;39595:54;;-1:-1:-1;;;39595:54:0;-1:-1:-1;;;;;;39595:54:0;;;-1:-1:-1;;;;;39552:20:0;;39595:54;;;;39495:174;38659:1036;;;39731:7;39727:2;-1:-1:-1;;;;;39712:27:0;39721:4;-1:-1:-1;;;;;39712:27:0;;;;;;;;;;;39750:42;37774:2026;;37670:2130;;;:::o;29705:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29816:7:0;;53938:1;29865:23;;:47;;;;;29899:13;;29892:4;:20;29865:47;29861:886;;;29933:31;29967:17;;;:11;:17;;;;;;;;;29933:51;;;;;;;;;-1:-1:-1;;;;;29933:51:0;;;;-1:-1:-1;;;29933:51:0;;;;;;;;;;;-1:-1:-1;;;29933:51:0;;;;;;;;;;;;;;30003:729;;30053:14;;-1:-1:-1;;;;;30053:28:0;;30049:101;;30117:9;29705:1109;-1:-1:-1;;;29705:1109:0:o;30049:101::-;-1:-1:-1;;;30492:6:0;30537:17;;;;:11;:17;;;;;;;;;30525:29;;;;;;;;;-1:-1:-1;;;;;30525:29:0;;;;;-1:-1:-1;;;30525:29:0;;;;;;;;;;;-1:-1:-1;;;30525:29:0;;;;;;;;;;;;;30585:28;30581:109;;30653:9;29705:1109;-1:-1:-1;;;29705:1109:0:o;30581:109::-;30452:261;;;29914:833;29861:886;30775:31;;;;;;;;;;;;;;23569:191;23662:6;;;-1:-1:-1;;;;;23679:17:0;;;-1:-1:-1;;23679:17:0;;;;;;;23712:40;;23662:6;;;23679:17;23662:6;;23712:40;;23643:16;;23712:40;23632:128;23569:191;:::o;43415:667::-;43599:72;;-1:-1:-1;;;43599:72:0;;43578:4;;-1:-1:-1;;;;;43599:36:0;;;;;:72;;21217:10;;43650:4;;43656:7;;43665:5;;43599:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43599:72:0;;;;;;;;-1:-1:-1;;43599:72:0;;;;;;;;;;;;:::i;:::-;;;43595:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43833:13:0;;43829:235;;43879:40;;-1:-1:-1;;;43879:40:0;;;;;;;;;;;43829:235;44022:6;44016:13;44007:6;44003:2;43999:15;43992:38;43595:480;-1:-1:-1;;;;;;43718:55:0;-1:-1:-1;;;43718:55:0;;-1:-1:-1;43595:480:0;43415:667;;;;;;:::o;53483:114::-;53543:13;53576;53569:20;;;;;:::i;2518:723::-;2574:13;2795:10;2791:53;;-1:-1:-1;;2822:10:0;;;;;;;;;;;;;;;;;;2518:723::o;2791:53::-;2869:5;2854:12;2910:78;2917:9;;2910:78;;2943:8;;;;:::i;:::-;;-1:-1:-1;2966:10:0;;-1:-1:-1;2974:2:0;2966:10;;:::i;:::-;;;2910:78;;;2998:19;3030:6;3020:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3020:17:0;;2998:39;;3048:154;3055:10;;3048:154;;3082:11;3092:1;3082:11;;:::i;:::-;;-1:-1:-1;3151:10:0;3159:2;3151:5;:10;:::i;:::-;3138:24;;:2;:24;:::i;:::-;3125:39;;3108:6;3115;3108:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;3179:11:0;3188:2;3179:11;;:::i;:::-;;;3048:154;;1349:675;1432:7;1475:4;1432:7;1490:497;1514:5;:12;1510:1;:16;1490:497;;;1548:20;1571:5;1577:1;1571:8;;;;;;;;:::i;:::-;;;;;;;1548:31;;1614:12;1598;:28;1594:382;;2100:13;2150:15;;;2186:4;2179:15;;;2233:4;2217:21;;1726:57;;1594:382;;;2100:13;2150:15;;;2186:4;2179:15;;;2233:4;2217:21;;1903:57;;1594:382;-1:-1:-1;1528:3:0;;;;:::i;:::-;;;;1490:497;;;-1:-1:-1;2004:12:0;1349:675;-1:-1:-1;;;1349:675:0:o;35219:163::-;35342:32;35348:2;35352:8;35362:5;35369:4;35780:20;35803:13;-1:-1:-1;;;;;35831:16:0;;35827:48;;35856:19;;;;;;;;;;;;;;35827:48;35890:13;35886:44;;35912:18;;;;;;;;;;;;;;35886:44;-1:-1:-1;;;;;36281:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36340:49:0;;36281:44;;;;;;;;36340:49;;;;-1:-1:-1;;36281:44:0;;;;;;36340:49;;;;;;;;;;;;;;;;36406:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36456:66:0;;;;-1:-1:-1;;;36506:15:0;36456:66;;;;;;;;;;36406:25;36603:23;;;36647:4;:23;;;;-1:-1:-1;;;;;;36655:13:0;;5678:19;:23;;36655:15;36643:641;;;36691:314;36722:38;;36747:12;;-1:-1:-1;;;;;36722:38:0;;;36739:1;;36722:38;;36739:1;;36722:38;36788:69;36827:1;36831:2;36835:14;;;;;;36851:5;36788:30;:69::i;:::-;36783:174;;36893:40;;-1:-1:-1;;;36893:40:0;;;;;;;;;;;36783:174;37000:3;36984:12;:19;;36691:314;;37086:12;37069:13;;:29;37065:43;;37100:8;;;37065:43;36643:641;;;37149:120;37180:40;;37205:14;;;;;-1:-1:-1;;;;;37180:40:0;;;37197:1;;37180:40;;37197:1;;37180:40;37264:3;37248:12;:19;;37149:120;;36643:641;-1:-1:-1;37298:13:0;:28;37348:60;33933:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1141:2;1120:15;-1:-1:-1;;1116:29:1;1107:39;;;;1148:4;1103:50;;901:258;-1:-1:-1;;901:258:1:o;1164:220::-;1313:2;1302:9;1295:21;1276:4;1333:45;1374:2;1363:9;1359:18;1351:6;1333:45;:::i;1389:180::-;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:52;;;1517:1;1514;1507:12;1469:52;-1:-1:-1;1540:23:1;;1389:180;-1:-1:-1;1389:180:1:o;1805:196::-;1873:20;;-1:-1:-1;;;;;1922:54:1;;1912:65;;1902:93;;1991:1;1988;1981:12;1902:93;1805:196;;;:::o;2006:254::-;2074:6;2082;2135:2;2123:9;2114:7;2110:23;2106:32;2103:52;;;2151:1;2148;2141:12;2103:52;2174:29;2193:9;2174:29;:::i;:::-;2164:39;2250:2;2235:18;;;;2222:32;;-1:-1:-1;;;2006:254:1:o;2265:367::-;2328:8;2338:6;2392:3;2385:4;2377:6;2373:17;2369:27;2359:55;;2410:1;2407;2400:12;2359:55;-1:-1:-1;2433:20:1;;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2545:4;2537:6;2533:17;2521:29;;2605:3;2598:4;2588:6;2585:1;2581:14;2573:6;2569:27;2565:38;2562:47;2559:67;;;2622:1;2619;2612:12;2559:67;2265:367;;;;;:::o;2637:573::-;2741:6;2749;2757;2765;2818:2;2806:9;2797:7;2793:23;2789:32;2786:52;;;2834:1;2831;2824:12;2786:52;2870:9;2857:23;2847:33;;2927:2;2916:9;2912:18;2899:32;2889:42;;2982:2;2971:9;2967:18;2954:32;3009:18;3001:6;2998:30;2995:50;;;3041:1;3038;3031:12;2995:50;3080:70;3142:7;3133:6;3122:9;3118:22;3080:70;:::i;:::-;2637:573;;;;-1:-1:-1;3169:8:1;-1:-1:-1;;;;2637:573:1:o;3397:186::-;3456:6;3509:2;3497:9;3488:7;3484:23;3480:32;3477:52;;;3525:1;3522;3515:12;3477:52;3548:29;3567:9;3548:29;:::i;3588:328::-;3665:6;3673;3681;3734:2;3722:9;3713:7;3709:23;3705:32;3702:52;;;3750:1;3747;3740:12;3702:52;3773:29;3792:9;3773:29;:::i;:::-;3763:39;;3821:38;3855:2;3844:9;3840:18;3821:38;:::i;:::-;3811:48;;3906:2;3895:9;3891:18;3878:32;3868:42;;3588:328;;;;;:::o;4288:160::-;4353:20;;4409:13;;4402:21;4392:32;;4382:60;;4438:1;4435;4428:12;4453:180;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:52;;;4578:1;4575;4568:12;4530:52;4601:26;4617:9;4601:26;:::i;4638:592::-;4709:6;4717;4770:2;4758:9;4749:7;4745:23;4741:32;4738:52;;;4786:1;4783;4776:12;4738:52;4826:9;4813:23;4855:18;4896:2;4888:6;4885:14;4882:34;;;4912:1;4909;4902:12;4882:34;4950:6;4939:9;4935:22;4925:32;;4995:7;4988:4;4984:2;4980:13;4976:27;4966:55;;5017:1;5014;5007:12;4966:55;5057:2;5044:16;5083:2;5075:6;5072:14;5069:34;;;5099:1;5096;5089:12;5069:34;5144:7;5139:2;5130:6;5126:2;5122:15;5118:24;5115:37;5112:57;;;5165:1;5162;5155:12;5112:57;5196:2;5188:11;;;;;5218:6;;-1:-1:-1;4638:592:1;;-1:-1:-1;;;;4638:592:1:o;5235:248::-;5300:6;5308;5361:2;5349:9;5340:7;5336:23;5332:32;5329:52;;;5377:1;5374;5367:12;5329:52;5413:9;5400:23;5390:33;;5442:35;5473:2;5462:9;5458:18;5442:35;:::i;:::-;5432:45;;5235:248;;;;;:::o;5488:254::-;5553:6;5561;5614:2;5602:9;5593:7;5589:23;5585:32;5582:52;;;5630:1;5627;5620:12;5582:52;5653:29;5672:9;5653:29;:::i;:::-;5643:39;;5701:35;5732:2;5721:9;5717:18;5701:35;:::i;5747:184::-;-1:-1:-1;;;5796:1:1;5789:88;5896:4;5893:1;5886:15;5920:4;5917:1;5910:15;5936:631;6000:5;6030:18;6071:2;6063:6;6060:14;6057:40;;;6077:18;;:::i;:::-;6152:2;6146:9;6120:2;6206:15;;-1:-1:-1;;6202:24:1;;;6228:2;6198:33;6194:42;6182:55;;;6252:18;;;6272:22;;;6249:46;6246:72;;;6298:18;;:::i;:::-;6338:10;6334:2;6327:22;6367:6;6358:15;;6397:6;6389;6382:22;6437:3;6428:6;6423:3;6419:16;6416:25;6413:45;;;6454:1;6451;6444:12;6413:45;6504:6;6499:3;6492:4;6484:6;6480:17;6467:44;6559:1;6552:4;6543:6;6535;6531:19;6527:30;6520:41;;;;5936:631;;;;;:::o;6572:666::-;6667:6;6675;6683;6691;6744:3;6732:9;6723:7;6719:23;6715:33;6712:53;;;6761:1;6758;6751:12;6712:53;6784:29;6803:9;6784:29;:::i;:::-;6774:39;;6832:38;6866:2;6855:9;6851:18;6832:38;:::i;:::-;6822:48;;6917:2;6906:9;6902:18;6889:32;6879:42;;6972:2;6961:9;6957:18;6944:32;6999:18;6991:6;6988:30;6985:50;;;7031:1;7028;7021:12;6985:50;7054:22;;7107:4;7099:13;;7095:27;-1:-1:-1;7085:55:1;;7136:1;7133;7126:12;7085:55;7159:73;7224:7;7219:2;7206:16;7201:2;7197;7193:11;7159:73;:::i;:::-;7149:83;;;6572:666;;;;;;;:::o;7243:437::-;7329:6;7337;7390:2;7378:9;7369:7;7365:23;7361:32;7358:52;;;7406:1;7403;7396:12;7358:52;7446:9;7433:23;7479:18;7471:6;7468:30;7465:50;;;7511:1;7508;7501:12;7465:50;7550:70;7612:7;7603:6;7592:9;7588:22;7550:70;:::i;:::-;7639:8;;7524:96;;-1:-1:-1;7243:437:1;-1:-1:-1;;;;7243:437:1:o;7685:260::-;7753:6;7761;7814:2;7802:9;7793:7;7789:23;7785:32;7782:52;;;7830:1;7827;7820:12;7782:52;7853:29;7872:9;7853:29;:::i;:::-;7843:39;;7901:38;7935:2;7924:9;7920:18;7901:38;:::i;7950:450::-;8019:6;8072:2;8060:9;8051:7;8047:23;8043:32;8040:52;;;8088:1;8085;8078:12;8040:52;8128:9;8115:23;8161:18;8153:6;8150:30;8147:50;;;8193:1;8190;8183:12;8147:50;8216:22;;8269:4;8261:13;;8257:27;-1:-1:-1;8247:55:1;;8298:1;8295;8288:12;8247:55;8321:73;8386:7;8381:2;8368:16;8363:2;8359;8355:11;8321:73;:::i;8405:437::-;8484:1;8480:12;;;;8527;;;8548:61;;8602:4;8594:6;8590:17;8580:27;;8548:61;8655:2;8647:6;8644:14;8624:18;8621:38;8618:218;;;-1:-1:-1;;;8689:1:1;8682:88;8793:4;8790:1;8783:15;8821:4;8818:1;8811:15;8618:218;;8405:437;;;:::o;9553:184::-;-1:-1:-1;;;9602:1:1;9595:88;9702:4;9699:1;9692:15;9726:4;9723:1;9716:15;9742:168;9782:7;9848:1;9844;9840:6;9836:14;9833:1;9830:21;9825:1;9818:9;9811:17;9807:45;9804:71;;;9855:18;;:::i;:::-;-1:-1:-1;9895:9:1;;9742:168::o;10275:128::-;10315:3;10346:1;10342:6;10339:1;10336:13;10333:39;;;10352:18;;:::i;:::-;-1:-1:-1;10388:9:1;;10275:128::o;13912:1584::-;14136:3;14174:6;14168:13;14200:4;14213:51;14257:6;14252:3;14247:2;14239:6;14235:15;14213:51;:::i;:::-;14327:13;;14286:16;;;;14349:55;14327:13;14286:16;14371:15;;;14349:55;:::i;:::-;14493:13;;14426:20;;;14466:1;;14553;14575:18;;;;14628;;;;14655:93;;14733:4;14723:8;14719:19;14707:31;;14655:93;14796:2;14786:8;14783:16;14763:18;14760:40;14757:224;;;-1:-1:-1;;;14830:3:1;14823:90;14936:4;14933:1;14926:15;14966:4;14961:3;14954:17;14757:224;14997:18;15024:110;;;;15148:1;15143:328;;;;14990:481;;15024:110;-1:-1:-1;;15059:24:1;;15045:39;;15104:20;;;;-1:-1:-1;15024:110:1;;15143:328;13859:1;13852:14;;;13896:4;13883:18;;15238:1;15252:169;15266:8;15263:1;15260:15;15252:169;;;15348:14;;15333:13;;;15326:37;15391:16;;;;15283:10;;15252:169;;;15256:3;;15452:8;15445:5;15441:20;15434:27;;14990:481;-1:-1:-1;15487:3:1;;13912:1584;-1:-1:-1;;;;;;;;;;;13912:1584:1:o;16496:512::-;16690:4;-1:-1:-1;;;;;16800:2:1;16792:6;16788:15;16777:9;16770:34;16852:2;16844:6;16840:15;16835:2;16824:9;16820:18;16813:43;;16892:6;16887:2;16876:9;16872:18;16865:34;16935:3;16930:2;16919:9;16915:18;16908:31;16956:46;16997:3;16986:9;16982:19;16974:6;16956:46;:::i;:::-;16948:54;16496:512;-1:-1:-1;;;;;;16496:512:1:o;17013:249::-;17082:6;17135:2;17123:9;17114:7;17110:23;17106:32;17103:52;;;17151:1;17148;17141:12;17103:52;17183:9;17177:16;17202:30;17226:5;17202:30;:::i;17267:135::-;17306:3;-1:-1:-1;;17327:17:1;;17324:43;;;17347:18;;:::i;:::-;-1:-1:-1;17394:1:1;17383:13;;17267:135::o;17407:184::-;-1:-1:-1;;;17456:1:1;17449:88;17556:4;17553:1;17546:15;17580:4;17577:1;17570:15;17596:120;17636:1;17662;17652:35;;17667:18;;:::i;:::-;-1:-1:-1;17701:9:1;;17596:120::o;17721:125::-;17761:4;17789:1;17786;17783:8;17780:34;;;17794:18;;:::i;:::-;-1:-1:-1;17831:9:1;;17721:125::o;17851:112::-;17883:1;17909;17899:35;;17914:18;;:::i;:::-;-1:-1:-1;17948:9:1;;17851:112::o;17968:184::-;-1:-1:-1;;;18017:1:1;18010:88;18117:4;18114:1;18107:15;18141:4;18138:1;18131:15

Swarm Source

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