ETH Price: $2,607.29 (-2.34%)
Gas: 1 Gwei

Token

MosaicBirds (MOSAIC)
 

Overview

Max Total Supply

661 MOSAIC

Holders

342

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*🐓️magic.eth
Balance
1 MOSAIC
0xcf78dbf6943d23dcd3aabe0bdff6ddac7be89a41
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:
MosaicBirds

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*

Developed by https://twitter.com/ViperwareLabs

*/

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;



contract MosaicBirds is ERC721A, Ownable {
    bytes32 public root;
	using Strings for uint;

	uint public constant MINT_PRICE = 0.0069 ether;
	uint public constant MAX_NFT_PER_TRAN = 10;
    uint public constant MAX_PER_WALLET = 50;
    uint public MAX_FREE_MINT = 1;
	uint public maxSupply = 6969;

	bool public isPublicMint = false;
    bool public isWhitelistMint = false;
    bool public isMetadataFinal;
    string private _baseURL;
	string public prerevealURL = '';
	mapping(address => uint) private _walletMintedCount;

    // Name
	constructor()
	ERC721A('MosaicBirds', 'MOSAIC') {
    }

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

	function _startTokenId() internal pure override returns (uint) {
		return 1;
	}

	function contractURI() public pure returns (string memory) {
		return "";
	}

    function finalizeMetadata() external onlyOwner {
        isMetadataFinal = true;
    }

	function reveal(string memory url) external onlyOwner {
        require(!isMetadataFinal, "Metadata is finalized");
		_baseURL = url;
	}

    function mintedCount(address owner) external view returns (uint) {
        return _walletMintedCount[owner];
    }

    function setRoot(bytes32 _root) external onlyOwner {
		root = _root;
	}

	function setPublicState(bool value) external onlyOwner {
		isPublicMint = value;
	}

    function setWhitelistState(bool value) external onlyOwner {
		isWhitelistMint = value;
	}

    /*
    // Splitter
    
    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;

        address _wallet1 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable1 = balance * 50 / 100;
        payable(_wallet1).transfer(_payable1);

        address _wallet2 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable2 = balance * 25 / 100;
        payable(_wallet2).transfer(_payable2);

        address _wallet3 = 0x130752003Cc8a51C34247794580C07b8862B5d3C;
        uint _payable3 = balance * 25 / 100;
        payable(_wallet3).transfer(_payable3);
    }*/

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

	function airdrop(address to, uint count) external onlyOwner {
		require(
			_totalMinted() + count <= maxSupply,
			'Exceeds max supply'
		);
		_safeMint(to, count);
	}

	function reduceSupply(uint newMaxSupply) external onlyOwner {
		maxSupply = newMaxSupply;
	}

    function setNumFreeMints(uint newFreeMints) external onlyOwner {
		MAX_FREE_MINT = newFreeMints;
	}

	function tokenURI(uint tokenId)
		public
		view
		override
		returns (string memory)
	{
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

	function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    function WHITELIST_MINT(bytes32[] memory proof) public {
        uint count = 1;
		require(isWhitelistMint, "Whitelist mint has not started");
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Wallet not on the allowlist");
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] == 0,'Exceeds max free mints');
		//require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
    
    function PUBLIC_MINT(uint count) external payable {
		require(isPublicMint, "Public mint has not started");
		require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');

        uint payForCount = count;
        uint mintedSoFar = _walletMintedCount[msg.sender];
        
        //1 Free Mints Default
        uint maxFree = MAX_FREE_MINT;

        if(mintedSoFar < maxFree) {
            uint remainingFreeMints = maxFree - mintedSoFar;
            if(count > remainingFreeMints) {
                payForCount = count - remainingFreeMints;
            }
            else {
                payForCount = 0;
            }
        }

		require(
			msg.value >= payForCount * MINT_PRICE,
			'Ether value sent is not sufficient'
		);

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PER_TRAN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"PUBLIC_MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"WHITELIST_MINT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"finalizeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMetadataFinal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","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":"prerevealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreeMints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setWhitelistState","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":"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"}]

6001600a55611b39600b55600c805461ffff1916905560a06040819052600060808190526200003191600e9162000112565b503480156200003f57600080fd5b50604080518082018252600b81526a4d6f73616963426972647360a81b6020808301918252835180850190945260068452654d4f5341494360d01b908401528151919291620000919160029162000112565b508051620000a790600390602084019062000112565b5050600160005550620000ba33620000c0565b620001f5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b60208210811415620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b61233280620002056000396000f3fe6080604052600436106102465760003560e01c80638062344411610139578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d48514610676578063e985e9c514610697578063ebf0c717146106e0578063f2fde38b146106f6578063f4a560a514610716578063fddcb5ea1461072b57600080fd5b8063c87b56dd146105f6578063d5abeb0114610616578063d82104821461062c578063dab5f34014610641578063e193e7e21461066157600080fd5b8063b88d4fde116100fd578063b88d4fde1461055c578063b8a20ed01461057c578063c002d23d1461059c578063c48156af146105b7578063c754da33146105d757600080fd5b806380623444146104c95780638ba4cc3c146104e95780638da5cb5b1461050957806395d89b4114610527578063a22cb4651461053c57600080fd5b80633057931f116101c757806355e158eb1161018b57806355e158eb146104415780636352211e14610461578063681b498d1461048157806370a0823114610494578063715018a6146104b457600080fd5b80633057931f146103bc5780633ccfd60b146103d657806341cda203146103eb57806342842e0e146104015780634c2612471461042157600080fd5b80630de76de41161020e5780630de76de41461031c5780630f2cdd6c1461033c57806318160ddd1461035f5780631df0bb8a1461037c57806323b872dd1461039c57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630a00ae83146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611fc8565b610761565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107b3565b60405161027791906120f2565b3480156102ae57600080fd5b506102c26102bd366004611faf565b610845565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611ef2565b610889565b005b34801561030857600080fd5b506102fa610317366004611faf565b610910565b34801561032857600080fd5b50600c5461026b9062010000900460ff1681565b34801561034857600080fd5b50610351603281565b604051908152602001610277565b34801561036b57600080fd5b506001546000540360001901610351565b34801561038857600080fd5b506102fa610397366004611f94565b610948565b3480156103a857600080fd5b506102fa6103b7366004611e11565b61098c565b3480156103c857600080fd5b50600c5461026b9060ff1681565b3480156103e257600080fd5b506102fa610997565b3480156103f757600080fd5b50610351600a5481565b34801561040d57600080fd5b506102fa61041c366004611e11565b6109f4565b34801561042d57600080fd5b506102fa61043c366004612002565b610a0f565b34801561044d57600080fd5b506102fa61045c366004611f1c565b610a9d565b34801561046d57600080fd5b506102c261047c366004611faf565b610c40565b6102fa61048f366004611faf565b610c52565b3480156104a057600080fd5b506103516104af366004611dc3565b610e89565b3480156104c057600080fd5b506102fa610ed7565b3480156104d557600080fd5b506102fa6104e4366004611faf565b610f0d565b3480156104f557600080fd5b506102fa610504366004611ef2565b610f3c565b34801561051557600080fd5b506008546001600160a01b03166102c2565b34801561053357600080fd5b50610295610fa9565b34801561054857600080fd5b506102fa610557366004611ec8565b610fb8565b34801561056857600080fd5b506102fa610577366004611e4d565b61104e565b34801561058857600080fd5b5061026b610597366004611f50565b611092565b3480156105a857600080fd5b506103516618838370f3400081565b3480156105c357600080fd5b506102fa6105d2366004611f94565b6110a8565b3480156105e357600080fd5b50600c5461026b90610100900460ff1681565b34801561060257600080fd5b50610295610611366004611faf565b6110e5565b34801561062257600080fd5b50610351600b5481565b34801561063857600080fd5b5061029561122b565b34801561064d57600080fd5b506102fa61065c366004611faf565b6112b9565b34801561066d57600080fd5b50610351600a81565b34801561068257600080fd5b50604080516020810190915260008152610295565b3480156106a357600080fd5b5061026b6106b2366004611dde565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b5061035160095481565b34801561070257600080fd5b506102fa610711366004611dc3565b6112e8565b34801561072257600080fd5b506102fa611383565b34801561073757600080fd5b50610351610746366004611dc3565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061079257506001600160e01b03198216635b5e139f60e01b145b806107ad57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c290612224565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee90612224565b801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b5050505050905090565b6000610850826113c0565b61086d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089482610c40565b9050806001600160a01b0316836001600160a01b031614156108c95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610900576108e381336106b2565b610900576040516367d9dca160e11b815260040160405180910390fd5b61090b8383836113f9565b505050565b6008546001600160a01b031633146109435760405162461bcd60e51b815260040161093a90612131565b60405180910390fd5b600a55565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161093a90612131565b600c80549115156101000261ff0019909216919091179055565b61090b838383611455565b6008546001600160a01b031633146109c15760405162461bcd60e51b815260040161093a90612131565b6040514790339082156108fc029083906000818181858888f193505050501580156109f0573d6000803e3d6000fd5b5050565b61090b8383836040518060200160405280600081525061104e565b6008546001600160a01b03163314610a395760405162461bcd60e51b815260040161093a90612131565b600c5462010000900460ff1615610a8a5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b604482015260640161093a565b80516109f090600d906020840190611c22565b600c54600190610100900460ff16610af75760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f7420737461727465640000604482015260640161093a565b6040516bffffffffffffffffffffffff193360601b166020820152610b3690839060340160405160208183030381529060405280519060200120611092565b610b825760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c6973740000000000604482015260640161093a565b600b5481610b936000546000190190565b610b9d9190612196565b1115610bbb5760405162461bcd60e51b815260040161093a90612105565b336000908152600f602052604090205415610c115760405162461bcd60e51b815260206004820152601660248201527545786365656473206d61782066726565206d696e747360501b604482015260640161093a565b336000908152600f602052604081208054839290610c30908490612196565b909155506109f090503382611642565b6000610c4b8261165c565b5192915050565b600c5460ff16610ca45760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f7420737461727465640000000000604482015260640161093a565b600a811115610cff5760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b606482015260840161093a565b600b5481610d106000546000190190565b610d1a9190612196565b1115610d385760405162461bcd60e51b815260040161093a90612105565b336000908152600f6020526040902054603290610d56908390612196565b1115610d9d5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604482015260640161093a565b336000908152600f6020526040902054600a5482919080821015610de9576000610dc783836121e1565b905080851115610de257610ddb81866121e1565b9350610de7565b600093505b505b610dfa6618838370f34000846121c2565b341015610e545760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b606482015260840161093a565b336000908152600f602052604081208054869290610e73908490612196565b90915550610e8390503385611642565b50505050565b60006001600160a01b038216610eb2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f015760405162461bcd60e51b815260040161093a90612131565b610f0b600061177e565b565b6008546001600160a01b03163314610f375760405162461bcd60e51b815260040161093a90612131565b600b55565b6008546001600160a01b03163314610f665760405162461bcd60e51b815260040161093a90612131565b600b5481610f776000546000190190565b610f819190612196565b1115610f9f5760405162461bcd60e51b815260040161093a90612105565b6109f08282611642565b6060600380546107c290612224565b6001600160a01b038216331415610fe25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611059848484611455565b6001600160a01b0383163b15610e8357611075848484846117d0565b610e83576040516368d2bf6b60e11b815260040160405180910390fd5b60006110a183600954846118c8565b9392505050565b6008546001600160a01b031633146110d25760405162461bcd60e51b815260040161093a90612131565b600c805460ff1916911515919091179055565b60606110f0826113c0565b6111545760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093a565b600061115e6118de565b51116111f457600e805461117190612224565b80601f016020809104026020016040519081016040528092919081815260200182805461119d90612224565b80156111ea5780601f106111bf576101008083540402835291602001916111ea565b820191906000526020600020905b8154815290600101906020018083116111cd57829003601f168201915b50505050506107ad565b6111fc6118de565b611205836118ed565b604051602001611216929190612076565b60405160208183030381529060405292915050565b600e805461123890612224565b80601f016020809104026020016040519081016040528092919081815260200182805461126490612224565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b6008546001600160a01b031633146112e35760405162461bcd60e51b815260040161093a90612131565b600955565b6008546001600160a01b031633146113125760405162461bcd60e51b815260040161093a90612131565b6001600160a01b0381166113775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093a565b6113808161177e565b50565b6008546001600160a01b031633146113ad5760405162461bcd60e51b815260040161093a90612131565b600c805462ff0000191662010000179055565b6000816001111580156113d4575060005482105b80156107ad575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114608261165c565b9050836001600160a01b031681600001516001600160a01b0316146114975760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114b557506114b585336106b2565b806114d05750336114c584610845565b6001600160a01b0316145b9050806114f057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661151757604051633a954ecd60e21b815260040160405180910390fd5b611523600084876113f9565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115f75760005482146115f757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109f08282604051806020016040528060008152506119ea565b604080516060810182526000808252602082018190529181019190915281806001116117655760005481101561176557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117635780516001600160a01b0316156116fa579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561175e579392505050565b6116fa565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118059033908990889088906004016120b5565b602060405180830381600087803b15801561181f57600080fd5b505af192505050801561184f575060408051601f3d908101601f1916820190925261184c91810190611fe5565b60015b6118aa573d80801561187d576040519150601f19603f3d011682016040523d82523d6000602084013e611882565b606091505b5080516118a2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118d58584611bae565b14949350505050565b6060600d80546107c290612224565b6060816119115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561193b57806119258161225f565b91506119349050600a836121ae565b9150611915565b6000816001600160401b03811115611955576119556122d0565b6040519080825280601f01601f19166020018201604052801561197f576020820181803683370190505b5090505b84156118c0576119946001836121e1565b91506119a1600a8661227a565b6119ac906030612196565b60f81b8183815181106119c1576119c16122ba565b60200101906001600160f81b031916908160001a9053506119e3600a866121ae565b9450611983565b6000546001600160a01b038416611a1357604051622e076360e81b815260040160405180910390fd5b82611a315760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b59575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b2260008784806001019550876117d0565b611b3f576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ad7578260005414611b5457600080fd5b611b9e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b5a575b506000908155610e839085838684565b600081815b8451811015611c1a576000858281518110611bd057611bd06122ba565b60200260200101519050808311611bf65760008381526020829052604090209250611c07565b600081815260208490526040902092505b5080611c128161225f565b915050611bb3565b509392505050565b828054611c2e90612224565b90600052602060002090601f016020900481019282611c505760008555611c96565b82601f10611c6957805160ff1916838001178555611c96565b82800160010185558215611c96579182015b82811115611c96578251825591602001919060010190611c7b565b50611ca2929150611ca6565b5090565b5b80821115611ca25760008155600101611ca7565b60006001600160401b03831115611cd457611cd46122d0565b611ce7601f8401601f1916602001612166565b9050828152838383011115611cfb57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d2957600080fd5b919050565b600082601f830112611d3f57600080fd5b813560206001600160401b03821115611d5a57611d5a6122d0565b8160051b611d69828201612166565b838152828101908684018388018501891015611d8457600080fd5b600093505b85841015611da7578035835260019390930192918401918401611d89565b50979650505050505050565b80358015158114611d2957600080fd5b600060208284031215611dd557600080fd5b6110a182611d12565b60008060408385031215611df157600080fd5b611dfa83611d12565b9150611e0860208401611d12565b90509250929050565b600080600060608486031215611e2657600080fd5b611e2f84611d12565b9250611e3d60208501611d12565b9150604084013590509250925092565b60008060008060808587031215611e6357600080fd5b611e6c85611d12565b9350611e7a60208601611d12565b92506040850135915060608501356001600160401b03811115611e9c57600080fd5b8501601f81018713611ead57600080fd5b611ebc87823560208401611cbb565b91505092959194509250565b60008060408385031215611edb57600080fd5b611ee483611d12565b9150611e0860208401611db3565b60008060408385031215611f0557600080fd5b611f0e83611d12565b946020939093013593505050565b600060208284031215611f2e57600080fd5b81356001600160401b03811115611f4457600080fd5b6118c084828501611d2e565b60008060408385031215611f6357600080fd5b82356001600160401b03811115611f7957600080fd5b611f8585828601611d2e565b95602094909401359450505050565b600060208284031215611fa657600080fd5b6110a182611db3565b600060208284031215611fc157600080fd5b5035919050565b600060208284031215611fda57600080fd5b81356110a1816122e6565b600060208284031215611ff757600080fd5b81516110a1816122e6565b60006020828403121561201457600080fd5b81356001600160401b0381111561202a57600080fd5b8201601f8101841361203b57600080fd5b6118c084823560208401611cbb565b600081518084526120628160208601602086016121f8565b601f01601f19169290920160200192915050565b600083516120888184602088016121f8565b83519083019061209c8183602088016121f8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120e89083018461204a565b9695505050505050565b6020815260006110a1602083018461204a565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561218e5761218e6122d0565b604052919050565b600082198211156121a9576121a961228e565b500190565b6000826121bd576121bd6122a4565b500490565b60008160001904831182151516156121dc576121dc61228e565b500290565b6000828210156121f3576121f361228e565b500390565b60005b838110156122135781810151838201526020016121fb565b83811115610e835750506000910152565b600181811c9082168061223857607f821691505b6020821081141561225957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122735761227361228e565b5060010190565b600082612289576122896122a4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461138057600080fdfea264697066735822122093c75d77f79e70e59603faa42cd2b9532afed8ff038f8322945e3aa510ec587e64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102465760003560e01c80638062344411610139578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d48514610676578063e985e9c514610697578063ebf0c717146106e0578063f2fde38b146106f6578063f4a560a514610716578063fddcb5ea1461072b57600080fd5b8063c87b56dd146105f6578063d5abeb0114610616578063d82104821461062c578063dab5f34014610641578063e193e7e21461066157600080fd5b8063b88d4fde116100fd578063b88d4fde1461055c578063b8a20ed01461057c578063c002d23d1461059c578063c48156af146105b7578063c754da33146105d757600080fd5b806380623444146104c95780638ba4cc3c146104e95780638da5cb5b1461050957806395d89b4114610527578063a22cb4651461053c57600080fd5b80633057931f116101c757806355e158eb1161018b57806355e158eb146104415780636352211e14610461578063681b498d1461048157806370a0823114610494578063715018a6146104b457600080fd5b80633057931f146103bc5780633ccfd60b146103d657806341cda203146103eb57806342842e0e146104015780634c2612471461042157600080fd5b80630de76de41161020e5780630de76de41461031c5780630f2cdd6c1461033c57806318160ddd1461035f5780631df0bb8a1461037c57806323b872dd1461039c57600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da5780630a00ae83146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611fc8565b610761565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102956107b3565b60405161027791906120f2565b3480156102ae57600080fd5b506102c26102bd366004611faf565b610845565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004611ef2565b610889565b005b34801561030857600080fd5b506102fa610317366004611faf565b610910565b34801561032857600080fd5b50600c5461026b9062010000900460ff1681565b34801561034857600080fd5b50610351603281565b604051908152602001610277565b34801561036b57600080fd5b506001546000540360001901610351565b34801561038857600080fd5b506102fa610397366004611f94565b610948565b3480156103a857600080fd5b506102fa6103b7366004611e11565b61098c565b3480156103c857600080fd5b50600c5461026b9060ff1681565b3480156103e257600080fd5b506102fa610997565b3480156103f757600080fd5b50610351600a5481565b34801561040d57600080fd5b506102fa61041c366004611e11565b6109f4565b34801561042d57600080fd5b506102fa61043c366004612002565b610a0f565b34801561044d57600080fd5b506102fa61045c366004611f1c565b610a9d565b34801561046d57600080fd5b506102c261047c366004611faf565b610c40565b6102fa61048f366004611faf565b610c52565b3480156104a057600080fd5b506103516104af366004611dc3565b610e89565b3480156104c057600080fd5b506102fa610ed7565b3480156104d557600080fd5b506102fa6104e4366004611faf565b610f0d565b3480156104f557600080fd5b506102fa610504366004611ef2565b610f3c565b34801561051557600080fd5b506008546001600160a01b03166102c2565b34801561053357600080fd5b50610295610fa9565b34801561054857600080fd5b506102fa610557366004611ec8565b610fb8565b34801561056857600080fd5b506102fa610577366004611e4d565b61104e565b34801561058857600080fd5b5061026b610597366004611f50565b611092565b3480156105a857600080fd5b506103516618838370f3400081565b3480156105c357600080fd5b506102fa6105d2366004611f94565b6110a8565b3480156105e357600080fd5b50600c5461026b90610100900460ff1681565b34801561060257600080fd5b50610295610611366004611faf565b6110e5565b34801561062257600080fd5b50610351600b5481565b34801561063857600080fd5b5061029561122b565b34801561064d57600080fd5b506102fa61065c366004611faf565b6112b9565b34801561066d57600080fd5b50610351600a81565b34801561068257600080fd5b50604080516020810190915260008152610295565b3480156106a357600080fd5b5061026b6106b2366004611dde565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ec57600080fd5b5061035160095481565b34801561070257600080fd5b506102fa610711366004611dc3565b6112e8565b34801561072257600080fd5b506102fa611383565b34801561073757600080fd5b50610351610746366004611dc3565b6001600160a01b03166000908152600f602052604090205490565b60006001600160e01b031982166380ac58cd60e01b148061079257506001600160e01b03198216635b5e139f60e01b145b806107ad57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c290612224565b80601f01602080910402602001604051908101604052809291908181526020018280546107ee90612224565b801561083b5780601f106108105761010080835404028352916020019161083b565b820191906000526020600020905b81548152906001019060200180831161081e57829003601f168201915b5050505050905090565b6000610850826113c0565b61086d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089482610c40565b9050806001600160a01b0316836001600160a01b031614156108c95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610900576108e381336106b2565b610900576040516367d9dca160e11b815260040160405180910390fd5b61090b8383836113f9565b505050565b6008546001600160a01b031633146109435760405162461bcd60e51b815260040161093a90612131565b60405180910390fd5b600a55565b6008546001600160a01b031633146109725760405162461bcd60e51b815260040161093a90612131565b600c80549115156101000261ff0019909216919091179055565b61090b838383611455565b6008546001600160a01b031633146109c15760405162461bcd60e51b815260040161093a90612131565b6040514790339082156108fc029083906000818181858888f193505050501580156109f0573d6000803e3d6000fd5b5050565b61090b8383836040518060200160405280600081525061104e565b6008546001600160a01b03163314610a395760405162461bcd60e51b815260040161093a90612131565b600c5462010000900460ff1615610a8a5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b604482015260640161093a565b80516109f090600d906020840190611c22565b600c54600190610100900460ff16610af75760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374206d696e7420686173206e6f7420737461727465640000604482015260640161093a565b6040516bffffffffffffffffffffffff193360601b166020820152610b3690839060340160405160208183030381529060405280519060200120611092565b610b825760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c6973740000000000604482015260640161093a565b600b5481610b936000546000190190565b610b9d9190612196565b1115610bbb5760405162461bcd60e51b815260040161093a90612105565b336000908152600f602052604090205415610c115760405162461bcd60e51b815260206004820152601660248201527545786365656473206d61782066726565206d696e747360501b604482015260640161093a565b336000908152600f602052604081208054839290610c30908490612196565b909155506109f090503382611642565b6000610c4b8261165c565b5192915050565b600c5460ff16610ca45760405162461bcd60e51b815260206004820152601b60248201527f5075626c6963206d696e7420686173206e6f7420737461727465640000000000604482015260640161093a565b600a811115610cff5760405162461bcd60e51b815260206004820152602160248201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696044820152601d60fa1b606482015260840161093a565b600b5481610d106000546000190190565b610d1a9190612196565b1115610d385760405162461bcd60e51b815260040161093a90612105565b336000908152600f6020526040902054603290610d56908390612196565b1115610d9d5760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b604482015260640161093a565b336000908152600f6020526040902054600a5482919080821015610de9576000610dc783836121e1565b905080851115610de257610ddb81866121e1565b9350610de7565b600093505b505b610dfa6618838370f34000846121c2565b341015610e545760405162461bcd60e51b815260206004820152602260248201527f45746865722076616c75652073656e74206973206e6f742073756666696369656044820152611b9d60f21b606482015260840161093a565b336000908152600f602052604081208054869290610e73908490612196565b90915550610e8390503385611642565b50505050565b60006001600160a01b038216610eb2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610f015760405162461bcd60e51b815260040161093a90612131565b610f0b600061177e565b565b6008546001600160a01b03163314610f375760405162461bcd60e51b815260040161093a90612131565b600b55565b6008546001600160a01b03163314610f665760405162461bcd60e51b815260040161093a90612131565b600b5481610f776000546000190190565b610f819190612196565b1115610f9f5760405162461bcd60e51b815260040161093a90612105565b6109f08282611642565b6060600380546107c290612224565b6001600160a01b038216331415610fe25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611059848484611455565b6001600160a01b0383163b15610e8357611075848484846117d0565b610e83576040516368d2bf6b60e11b815260040160405180910390fd5b60006110a183600954846118c8565b9392505050565b6008546001600160a01b031633146110d25760405162461bcd60e51b815260040161093a90612131565b600c805460ff1916911515919091179055565b60606110f0826113c0565b6111545760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093a565b600061115e6118de565b51116111f457600e805461117190612224565b80601f016020809104026020016040519081016040528092919081815260200182805461119d90612224565b80156111ea5780601f106111bf576101008083540402835291602001916111ea565b820191906000526020600020905b8154815290600101906020018083116111cd57829003601f168201915b50505050506107ad565b6111fc6118de565b611205836118ed565b604051602001611216929190612076565b60405160208183030381529060405292915050565b600e805461123890612224565b80601f016020809104026020016040519081016040528092919081815260200182805461126490612224565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b6008546001600160a01b031633146112e35760405162461bcd60e51b815260040161093a90612131565b600955565b6008546001600160a01b031633146113125760405162461bcd60e51b815260040161093a90612131565b6001600160a01b0381166113775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093a565b6113808161177e565b50565b6008546001600160a01b031633146113ad5760405162461bcd60e51b815260040161093a90612131565b600c805462ff0000191662010000179055565b6000816001111580156113d4575060005482105b80156107ad575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114608261165c565b9050836001600160a01b031681600001516001600160a01b0316146114975760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806114b557506114b585336106b2565b806114d05750336114c584610845565b6001600160a01b0316145b9050806114f057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661151757604051633a954ecd60e21b815260040160405180910390fd5b611523600084876113f9565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115f75760005482146115f757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109f08282604051806020016040528060008152506119ea565b604080516060810182526000808252602082018190529181019190915281806001116117655760005481101561176557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117635780516001600160a01b0316156116fa579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561175e579392505050565b6116fa565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118059033908990889088906004016120b5565b602060405180830381600087803b15801561181f57600080fd5b505af192505050801561184f575060408051601f3d908101601f1916820190925261184c91810190611fe5565b60015b6118aa573d80801561187d576040519150601f19603f3d011682016040523d82523d6000602084013e611882565b606091505b5080516118a2576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826118d58584611bae565b14949350505050565b6060600d80546107c290612224565b6060816119115750506040805180820190915260018152600360fc1b602082015290565b8160005b811561193b57806119258161225f565b91506119349050600a836121ae565b9150611915565b6000816001600160401b03811115611955576119556122d0565b6040519080825280601f01601f19166020018201604052801561197f576020820181803683370190505b5090505b84156118c0576119946001836121e1565b91506119a1600a8661227a565b6119ac906030612196565b60f81b8183815181106119c1576119c16122ba565b60200101906001600160f81b031916908160001a9053506119e3600a866121ae565b9450611983565b6000546001600160a01b038416611a1357604051622e076360e81b815260040160405180910390fd5b82611a315760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611b59575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b2260008784806001019550876117d0565b611b3f576040516368d2bf6b60e11b815260040160405180910390fd5b808210611ad7578260005414611b5457600080fd5b611b9e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611b5a575b506000908155610e839085838684565b600081815b8451811015611c1a576000858281518110611bd057611bd06122ba565b60200260200101519050808311611bf65760008381526020829052604090209250611c07565b600081815260208490526040902092505b5080611c128161225f565b915050611bb3565b509392505050565b828054611c2e90612224565b90600052602060002090601f016020900481019282611c505760008555611c96565b82601f10611c6957805160ff1916838001178555611c96565b82800160010185558215611c96579182015b82811115611c96578251825591602001919060010190611c7b565b50611ca2929150611ca6565b5090565b5b80821115611ca25760008155600101611ca7565b60006001600160401b03831115611cd457611cd46122d0565b611ce7601f8401601f1916602001612166565b9050828152838383011115611cfb57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611d2957600080fd5b919050565b600082601f830112611d3f57600080fd5b813560206001600160401b03821115611d5a57611d5a6122d0565b8160051b611d69828201612166565b838152828101908684018388018501891015611d8457600080fd5b600093505b85841015611da7578035835260019390930192918401918401611d89565b50979650505050505050565b80358015158114611d2957600080fd5b600060208284031215611dd557600080fd5b6110a182611d12565b60008060408385031215611df157600080fd5b611dfa83611d12565b9150611e0860208401611d12565b90509250929050565b600080600060608486031215611e2657600080fd5b611e2f84611d12565b9250611e3d60208501611d12565b9150604084013590509250925092565b60008060008060808587031215611e6357600080fd5b611e6c85611d12565b9350611e7a60208601611d12565b92506040850135915060608501356001600160401b03811115611e9c57600080fd5b8501601f81018713611ead57600080fd5b611ebc87823560208401611cbb565b91505092959194509250565b60008060408385031215611edb57600080fd5b611ee483611d12565b9150611e0860208401611db3565b60008060408385031215611f0557600080fd5b611f0e83611d12565b946020939093013593505050565b600060208284031215611f2e57600080fd5b81356001600160401b03811115611f4457600080fd5b6118c084828501611d2e565b60008060408385031215611f6357600080fd5b82356001600160401b03811115611f7957600080fd5b611f8585828601611d2e565b95602094909401359450505050565b600060208284031215611fa657600080fd5b6110a182611db3565b600060208284031215611fc157600080fd5b5035919050565b600060208284031215611fda57600080fd5b81356110a1816122e6565b600060208284031215611ff757600080fd5b81516110a1816122e6565b60006020828403121561201457600080fd5b81356001600160401b0381111561202a57600080fd5b8201601f8101841361203b57600080fd5b6118c084823560208401611cbb565b600081518084526120628160208601602086016121f8565b601f01601f19169290920160200192915050565b600083516120888184602088016121f8565b83519083019061209c8183602088016121f8565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120e89083018461204a565b9695505050505050565b6020815260006110a1602083018461204a565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b038111828210171561218e5761218e6122d0565b604052919050565b600082198211156121a9576121a961228e565b500190565b6000826121bd576121bd6122a4565b500490565b60008160001904831182151516156121dc576121dc61228e565b500290565b6000828210156121f3576121f361228e565b500390565b60005b838110156122135781810151838201526020016121fb565b83811115610e835750506000910152565b600181811c9082168061223857607f821691505b6020821081141561225957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122735761227361228e565b5060010190565b600082612289576122896122a4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461138057600080fdfea264697066735822122093c75d77f79e70e59603faa42cd2b9532afed8ff038f8322945e3aa510ec587e64736f6c63430008070033

Deployed Bytecode Sourcemap

49774:4793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28395:305;;;;;;;;;;-1:-1:-1;28395:305:0;;;;;:::i;:::-;;:::i;:::-;;;7766:14:1;;7759:22;7741:41;;7729:2;7714:18;28395:305:0;;;;;;;;31510:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33014:204::-;;;;;;;;;;-1:-1:-1;33014:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7064:32:1;;;7046:51;;7034:2;7019:18;33014:204:0;6900:203:1;32576:372:0;;;;;;;;;;-1:-1:-1;32576:372:0;;;;;:::i;:::-;;:::i;:::-;;52367:101;;;;;;;;;;-1:-1:-1;52367:101:0;;;;;:::i;:::-;;:::i;50167:27::-;;;;;;;;;;-1:-1:-1;50167:27:0;;;;;;;;;;;49972:40;;;;;;;;;;;;50010:2;49972:40;;;;;7939:25:1;;;7927:2;7912:18;49972:40:0;7793:177:1;27635:312:0;;;;;;;;;;-1:-1:-1;50567:1:0;27898:12;27688:7;27882:13;:28;-1:-1:-1;;27882:46:0;27635:312;;51199:91;;;;;;;;;;-1:-1:-1;51199:91:0;;;;;:::i;:::-;;:::i;33879:170::-;;;;;;;;;;-1:-1:-1;33879:170:0;;;;;:::i;:::-;;:::i;50086:32::-;;;;;;;;;;-1:-1:-1;50086:32:0;;;;;;;;51938:143;;;;;;;;;;;;;:::i;50019:29::-;;;;;;;;;;;;;;;;34120:185;;;;;;;;;;-1:-1:-1;34120:185:0;;;;;:::i;:::-;;:::i;50757:139::-;;;;;;;;;;-1:-1:-1;50757:139:0;;;;;:::i;:::-;;:::i;52972:560::-;;;;;;;;;;-1:-1:-1;52972:560:0;;;;;:::i;:::-;;:::i;31318:125::-;;;;;;;;;;-1:-1:-1;31318:125:0;;;;;:::i;:::-;;:::i;53544:1020::-;;;;;;:::i;:::-;;:::i;28764:206::-;;;;;;;;;;-1:-1:-1;28764:206:0;;;;;:::i;:::-;;:::i;48922:103::-;;;;;;;;;;;;;:::i;52265:94::-;;;;;;;;;;-1:-1:-1;52265:94:0;;;;;:::i;:::-;;:::i;52086:174::-;;;;;;;;;;-1:-1:-1;52086:174:0;;;;;:::i;:::-;;:::i;48271:87::-;;;;;;;;;;-1:-1:-1;48344:6:0;;-1:-1:-1;;;;;48344:6:0;48271:87;;31679:104;;;;;;;;;;;;;:::i;33290:287::-;;;;;;;;;;-1:-1:-1;33290:287:0;;;;;:::i;:::-;;:::i;34376:370::-;;;;;;;;;;-1:-1:-1;34376:370:0;;;;;:::i;:::-;;:::i;52819:145::-;;;;;;;;;;-1:-1:-1;52819:145:0;;;;;:::i;:::-;;:::i;49873:46::-;;;;;;;;;;;;49907:12;49873:46;;51106:85;;;;;;;;;;-1:-1:-1;51106:85:0;;;;;:::i;:::-;;:::i;50125:35::-;;;;;;;;;;-1:-1:-1;50125:35:0;;;;;;;;;;;52473:341;;;;;;;;;;-1:-1:-1;52473:341:0;;;;;:::i;:::-;;:::i;50052:28::-;;;;;;;;;;;;;;;;50228:31;;;;;;;;;;;;;:::i;51028:73::-;;;;;;;;;;-1:-1:-1;51028:73:0;;;;;:::i;:::-;;:::i;49923:42::-;;;;;;;;;;;;49963:2;49923:42;;50578:78;;;;;;;;;;-1:-1:-1;50642:9:0;;;;;;;;;-1:-1:-1;50642:9:0;;50578:78;;33648:164;;;;;;;;;;-1:-1:-1;33648:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33769:25:0;;;33745:4;33769:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33648:164;49822:19;;;;;;;;;;;;;;;;49180:201;;;;;;;;;;-1:-1:-1;49180:201:0;;;;;:::i;:::-;;:::i;50664:88::-;;;;;;;;;;;;;:::i;50904:116::-;;;;;;;;;;-1:-1:-1;50904:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;50987:25:0;50963:4;50987:25;;;:18;:25;;;;;;;50904:116;28395:305;28497:4;-1:-1:-1;;;;;;28534:40:0;;-1:-1:-1;;;28534:40:0;;:105;;-1:-1:-1;;;;;;;28591:48:0;;-1:-1:-1;;;28591:48:0;28534:105;:158;;;-1:-1:-1;;;;;;;;;;15952:40:0;;;28656:36;28514:178;28395:305;-1:-1:-1;;28395:305:0:o;31510:100::-;31564:13;31597:5;31590:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31510:100;:::o;33014:204::-;33082:7;33107:16;33115:7;33107;:16::i;:::-;33102:64;;33132:34;;-1:-1:-1;;;33132:34:0;;;;;;;;;;;33102:64;-1:-1:-1;33186:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33186:24:0;;33014:204::o;32576:372::-;32649:13;32665:24;32681:7;32665:15;:24::i;:::-;32649:40;;32710:5;-1:-1:-1;;;;;32704:11:0;:2;-1:-1:-1;;;;;32704:11:0;;32700:48;;;32724:24;;-1:-1:-1;;;32724:24:0;;;;;;;;;;;32700:48;25412:10;-1:-1:-1;;;;;32765:21:0;;;32761:139;;32792:37;32809:5;25412:10;33648:164;:::i;32792:37::-;32788:112;;32853:35;;-1:-1:-1;;;32853:35:0;;;;;;;;;;;32788:112;32912:28;32921:2;32925:7;32934:5;32912:8;:28::i;:::-;32638:310;32576:372;;:::o;52367:101::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;;;;;;;;;52435:13:::1;:28:::0;52367:101::o;51199:91::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51262:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;51262:23:0;;::::1;::::0;;;::::1;::::0;;51199:91::o;33879:170::-;34013:28;34023:4;34029:2;34033:7;34013:9;:28::i;51938:143::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52036:37:::1;::::0;52004:21:::1;::::0;52044:10:::1;::::0;52036:37;::::1;;;::::0;52004:21;;51986:15:::1;52036:37:::0;51986:15;52036:37;52004:21;52044:10;52036:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51975:106;51938:143::o:0;34120:185::-;34258:39;34275:4;34281:2;34285:7;34258:39;;;;;;;;;;;;:16;:39::i;50757:139::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;50831:15:::1;::::0;;;::::1;;;50830:16;50822:50;;;::::0;-1:-1:-1;;;50822:50:0;;8401:2:1;50822:50:0::1;::::0;::::1;8383:21:1::0;8440:2;8420:18;;;8413:30;-1:-1:-1;;;8459:18:1;;;8452:51;8520:18;;50822:50:0::1;8199:345:1::0;50822:50:0::1;50877:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;52972:560::-:0;53065:15;;53051:1;;53065:15;;;;;53057:58;;;;-1:-1:-1;;;53057:58:0;;9158:2:1;53057:58:0;;;9140:21:1;9197:2;9177:18;;;9170:30;9236:32;9216:18;;;9209:60;9286:18;;53057:58:0;8956:354:1;53057:58:0;53159:28;;-1:-1:-1;;53176:10:0;6173:2:1;6169:15;6165:53;53159:28:0;;;6153:66:1;53134:55:0;;53142:5;;6235:12:1;;53159:28:0;;;;;;;;;;;;53149:39;;;;;;53134:7;:55::i;:::-;53126:95;;;;-1:-1:-1;;;53126:95:0;;9517:2:1;53126:95:0;;;9499:21:1;9556:2;9536:18;;;9529:30;9595:29;9575:18;;;9568:57;9642:18;;53126:95:0;9315:351:1;53126:95:0;53260:9;;53251:5;53234:14;28087:7;28273:13;-1:-1:-1;;28273:31:0;;28040:283;53234:14;:22;;;;:::i;:::-;:35;;53226:65;;;;-1:-1:-1;;;53226:65:0;;;;;;;:::i;:::-;53329:10;53310:30;;;;:18;:30;;;;;;:35;53302:69;;;;-1:-1:-1;;;53302:69:0;;10631:2:1;53302:69:0;;;10613:21:1;10670:2;10650:18;;;10643:30;-1:-1:-1;;;10689:18:1;;;10682:52;10751:18;;53302:69:0;10429:346:1;53302:69:0;53474:10;53455:30;;;;:18;:30;;;;;:39;;53489:5;;53455:30;:39;;53489:5;;53455:39;:::i;:::-;;;;-1:-1:-1;53499:28:0;;-1:-1:-1;53509:10:0;53521:5;53499:9;:28::i;31318:125::-;31382:7;31409:21;31422:7;31409:12;:21::i;:::-;:26;;31318:125;-1:-1:-1;;31318:125:0:o;53544:1020::-;53607:12;;;;53599:52;;;;-1:-1:-1;;;53599:52:0;;9873:2:1;53599:52:0;;;9855:21:1;9912:2;9892:18;;;9885:30;9951:29;9931:18;;;9924:57;9998:18;;53599:52:0;9671:351:1;53599:52:0;49963:2;53664:5;:25;;53656:70;;;;-1:-1:-1;;;53656:70:0;;10229:2:1;53656:70:0;;;10211:21:1;10268:2;10248:18;;;10241:30;10307:34;10287:18;;;10280:62;-1:-1:-1;;;10358:18:1;;;10351:31;10399:19;;53656:70:0;10027:397:1;53656:70:0;53765:9;;53756:5;53739:14;28087:7;28273:13;-1:-1:-1;;28273:31:0;;28040:283;53739:14;:22;;;;:::i;:::-;:35;;53731:65;;;;-1:-1:-1;;;53731:65:0;;;;;;;:::i;:::-;53834:10;53815:30;;;;:18;:30;;;;;;50010:2;;53815:38;;53848:5;;53815:38;:::i;:::-;:56;;53807:90;;;;-1:-1:-1;;;53807:90:0;;12509:2:1;53807:90:0;;;12491:21:1;12548:2;12528:18;;;12521:30;-1:-1:-1;;;12567:18:1;;;12560:52;12629:18;;53807:90:0;12307:346:1;53807:90:0;53983:10;53910:16;53964:30;;;:18;:30;;;;;;54062:13;;53929:5;;53964:30;54091:21;;;54088:289;;;54129:23;54155:21;54165:11;54155:7;:21;:::i;:::-;54129:47;;54202:18;54194:5;:26;54191:175;;;54255:26;54263:18;54255:5;:26;:::i;:::-;54241:40;;54191:175;;;54349:1;54335:15;;54191:175;54114:263;54088:289;54409:24;49907:12;54409:11;:24;:::i;:::-;54396:9;:37;;54383:97;;;;-1:-1:-1;;;54383:97:0;;11329:2:1;54383:97:0;;;11311:21:1;11368:2;11348:18;;;11341:30;11407:34;11387:18;;;11380:62;-1:-1:-1;;;11458:18:1;;;11451:32;11500:19;;54383:97:0;11127:398:1;54383:97:0;54506:10;54487:30;;;;:18;:30;;;;;:39;;54521:5;;54487:30;:39;;54521:5;;54487:39;:::i;:::-;;;;-1:-1:-1;54531:28:0;;-1:-1:-1;54541:10:0;54553:5;54531:9;:28::i;:::-;53594:970;;;53544:1020;:::o;28764:206::-;28828:7;-1:-1:-1;;;;;28852:19:0;;28848:60;;28880:28;;-1:-1:-1;;;28880:28:0;;;;;;;;;;;28848:60;-1:-1:-1;;;;;;28934:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28934:27:0;;28764:206::o;48922:103::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;48987:30:::1;49014:1;48987:18;:30::i;:::-;48922:103::o:0;52265:94::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52330:9:::1;:24:::0;52265:94::o;52086:174::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52190:9:::1;;52181:5;52164:14;28087:7:::0;28273:13;-1:-1:-1;;28273:31:0;;28040:283;52164:14:::1;:22;;;;:::i;:::-;:35;;52151:79;;;;-1:-1:-1::0;;;52151:79:0::1;;;;;;;:::i;:::-;52235:20;52245:2;52249:5;52235:9;:20::i;31679:104::-:0;31735:13;31768:7;31761:14;;;;;:::i;33290:287::-;-1:-1:-1;;;;;33389:24:0;;25412:10;33389:24;33385:54;;;33422:17;;-1:-1:-1;;;33422:17:0;;;;;;;;;;;33385:54;25412:10;33452:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33452:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33452:53:0;;;;;;;;;;33521:48;;7741:41:1;;;33452:42:0;;25412:10;33521:48;;7714:18:1;33521:48:0;;;;;;;33290:287;;:::o;34376:370::-;34543:28;34553:4;34559:2;34563:7;34543:9;:28::i;:::-;-1:-1:-1;;;;;34586:13:0;;6032:19;:23;34582:157;;34607:56;34638:4;34644:2;34648:7;34657:5;34607:30;:56::i;:::-;34603:136;;34687:40;;-1:-1:-1;;;34687:40:0;;;;;;;;;;;52819:145;52895:4;52919:37;52938:5;52945:4;;52951;52919:18;:37::i;:::-;52912:44;52819:145;-1:-1:-1;;;52819:145:0:o;51106:85::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51166:12:::1;:20:::0;;-1:-1:-1;;51166:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51106:85::o;52473:341::-;52547:13;52583:16;52591:7;52583;:16::i;:::-;52575:76;;;;-1:-1:-1;;;52575:76:0;;12093:2:1;52575:76:0;;;12075:21:1;12132:2;12112:18;;;12105:30;12171:34;12151:18;;;12144:62;-1:-1:-1;;;12222:18:1;;;12215:45;12277:19;;52575:76:0;11891:411:1;52575:76:0;52698:1;52677:10;:8;:10::i;:::-;52671:24;:28;:138;;52797:12;52671:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52740:10;:8;:10::i;:::-;52752:18;:7;:16;:18::i;:::-;52723:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52664:145;52473:341;-1:-1:-1;;52473:341:0:o;50228:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51028:73::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51084:4:::1;:12:::0;51028:73::o;49180:201::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49269:22:0;::::1;49261:73;;;::::0;-1:-1:-1;;;49261:73:0;;8751:2:1;49261:73:0::1;::::0;::::1;8733:21:1::0;8790:2;8770:18;;;8763:30;8829:34;8809:18;;;8802:62;-1:-1:-1;;;8880:18:1;;;8873:36;8926:19;;49261:73:0::1;8549:402:1::0;49261:73:0::1;49345:28;49364:8;49345:18;:28::i;:::-;49180:201:::0;:::o;50664:88::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;50722:15:::1;:22:::0;;-1:-1:-1;;50722:22:0::1;::::0;::::1;::::0;;50664:88::o;35001:174::-;35058:4;35101:7;50567:1;35082:26;;:53;;;;;35122:13;;35112:7;:23;35082:53;:85;;;;-1:-1:-1;;35140:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35140:27:0;;;;35139:28;;35001:174::o;44223:196::-;44338:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44338:29:0;-1:-1:-1;;;;;44338:29:0;;;;;;;;;44383:28;;44338:24;;44383:28;;;;;;;44223:196;;;:::o;39171:2130::-;39286:35;39324:21;39337:7;39324:12;:21::i;:::-;39286:59;;39384:4;-1:-1:-1;;;;;39362:26:0;:13;:18;;;-1:-1:-1;;;;;39362:26:0;;39358:67;;39397:28;;-1:-1:-1;;;39397:28:0;;;;;;;;;;;39358:67;39438:22;25412:10;-1:-1:-1;;;;;39464:20:0;;;;:73;;-1:-1:-1;39501:36:0;39518:4;25412:10;33648:164;:::i;39501:36::-;39464:126;;;-1:-1:-1;25412:10:0;39554:20;39566:7;39554:11;:20::i;:::-;-1:-1:-1;;;;;39554:36:0;;39464:126;39438:153;;39609:17;39604:66;;39635:35;;-1:-1:-1;;;39635:35:0;;;;;;;;;;;39604:66;-1:-1:-1;;;;;39685:16:0;;39681:52;;39710:23;;-1:-1:-1;;;39710:23:0;;;;;;;;;;;39681:52;39854:35;39871:1;39875:7;39884:4;39854:8;:35::i;:::-;-1:-1:-1;;;;;40185:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40185:31:0;;;-1:-1:-1;;;;;40185:31:0;;;-1:-1:-1;;40185:31:0;;;;;;;40231:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40231:29:0;;;;;;;;;;;40311:20;;;:11;:20;;;;;;40346:18;;-1:-1:-1;;;;;;40379:49:0;;;;-1:-1:-1;;;40412:15:0;40379:49;;;;;;;;;;40702:11;;40762:24;;;;;40805:13;;40311:20;;40762:24;;40805:13;40801:384;;41015:13;;41000:11;:28;40996:174;;41053:20;;41122:28;;;;-1:-1:-1;;;;;41096:54:0;-1:-1:-1;;;41096:54:0;-1:-1:-1;;;;;;41096:54:0;;;-1:-1:-1;;;;;41053:20:0;;41096:54;;;;40996:174;40160:1036;;;41232:7;41228:2;-1:-1:-1;;;;;41213:27:0;41222:4;-1:-1:-1;;;;;41213:27:0;;;;;;;;;;;39275:2026;;39171:2130;;;:::o;35259:104::-;35328:27;35338:2;35342:8;35328:27;;;;;;;;;;;;:9;:27::i;30145:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30256:7:0;;50567:1;30305:23;30301:888;;30341:13;;30334:4;:20;30330:859;;;30375:31;30409:17;;;:11;:17;;;;;;;;;30375:51;;;;;;;;;-1:-1:-1;;;;;30375:51:0;;;;-1:-1:-1;;;30375:51:0;;-1:-1:-1;;;;;30375:51:0;;;;;;;;-1:-1:-1;;;30375:51:0;;;;;;;;;;;;;;30445:729;;30495:14;;-1:-1:-1;;;;;30495:28:0;;30491:101;;30559:9;30145:1111;-1:-1:-1;;;30145:1111:0:o;30491:101::-;-1:-1:-1;;;30934:6:0;30979:17;;;;:11;:17;;;;;;;;;30967:29;;;;;;;;;-1:-1:-1;;;;;30967:29:0;;;;;-1:-1:-1;;;30967:29:0;;-1:-1:-1;;;;;30967:29:0;;;;;;;;-1:-1:-1;;;30967:29:0;;;;;;;;;;;;;31027:28;31023:109;;31095:9;30145:1111;-1:-1:-1;;;30145:1111:0:o;31023:109::-;30894:261;;;30356:833;30330:859;31217:31;;-1:-1:-1;;;31217:31:0;;;;;;;;;;;49541:191;49634:6;;;-1:-1:-1;;;;;49651:17:0;;;-1:-1:-1;;;;;;49651:17:0;;;;;;;49684:40;;49634:6;;;49651:17;49634:6;;49684:40;;49615:16;;49684:40;49604:128;49541:191;:::o;44911:667::-;45095:72;;-1:-1:-1;;;45095:72:0;;45074:4;;-1:-1:-1;;;;;45095:36:0;;;;;:72;;25412:10;;45146:4;;45152:7;;45161:5;;45095:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45095:72:0;;;;;;;;-1:-1:-1;;45095:72:0;;;;;;;;;;;;:::i;:::-;;;45091:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45329:13:0;;45325:235;;45375:40;;-1:-1:-1;;;45375:40:0;;;;;;;;;;;45325:235;45518:6;45512:13;45503:6;45499:2;45495:15;45488:38;45091:480;-1:-1:-1;;;;;;45214:55:0;-1:-1:-1;;;45214:55:0;;-1:-1:-1;45091:480:0;44911:667;;;;;;:::o;912:190::-;1037:4;1090;1061:25;1074:5;1081:4;1061:12;:25::i;:::-;:33;;912:190;-1:-1:-1;;;;912:190:0:o;50395:92::-;50447:13;50474:8;50467:15;;;;;:::i;2745:723::-;2801:13;3022:10;3018:53;;-1:-1:-1;;3049:10:0;;;;;;;;;;;;-1:-1:-1;;;3049:10:0;;;;;2745:723::o;3018:53::-;3096:5;3081:12;3137:78;3144:9;;3137:78;;3170:8;;;;:::i;:::-;;-1:-1:-1;3193:10:0;;-1:-1:-1;3201:2:0;3193:10;;:::i;:::-;;;3137:78;;;3225:19;3257:6;-1:-1:-1;;;;;3247:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3247:17:0;;3225:39;;3275:154;3282:10;;3275:154;;3309:11;3319:1;3309:11;;:::i;:::-;;-1:-1:-1;3378:10:0;3386:2;3378:5;:10;:::i;:::-;3365:24;;:2;:24;:::i;:::-;3352:39;;3335:6;3342;3335:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3335:56:0;;;;;;;;-1:-1:-1;3406:11:0;3415:2;3406:11;;:::i;:::-;;;3275:154;;35736:1749;35859:20;35882:13;-1:-1:-1;;;;;35910:16:0;;35906:48;;35935:19;;-1:-1:-1;;;35935:19:0;;;;;;;;;;;35906:48;35969:13;35965:44;;35991:18;;-1:-1:-1;;;35991:18:0;;;;;;;;;;;35965:44;-1:-1:-1;;;;;36360:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36419:49:0;;-1:-1:-1;;;;;36360:44:0;;;;;;;36419:49;;;;-1:-1:-1;;36360:44:0;;;;;;36419:49;;;;;;;;;;;;;;;;36485:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36535:66:0;;;-1:-1:-1;;;36585:15:0;36535:66;;;;;;;;;;;;;36485:25;;36682:23;;;;6032:19;:23;36722:631;;36762:313;36793:38;;36818:12;;-1:-1:-1;;;;;36793:38:0;;;36810:1;;36793:38;;36810:1;;36793:38;36859:69;36898:1;36902:2;36906:14;;;;;;36922:5;36859:30;:69::i;:::-;36854:174;;36964:40;;-1:-1:-1;;;36964:40:0;;;;;;;;;;;36854:174;37070:3;37055:12;:18;36762:313;;37156:12;37139:13;;:29;37135:43;;37170:8;;;37135:43;36722:631;;;37219:119;37250:40;;37275:14;;;;;-1:-1:-1;;;;;37250:40:0;;;37267:1;;37250:40;;37267:1;;37250:40;37333:3;37318:12;:18;37219:119;;36722:631;-1:-1:-1;37367:13:0;:28;;;37417:60;;37450:2;37454:12;37468:8;37417:60;:::i;1464:675::-;1547:7;1590:4;1547:7;1605:497;1629:5;:12;1625:1;:16;1605:497;;;1663:20;1686:5;1692:1;1686:8;;;;;;;;:::i;:::-;;;;;;;1663:31;;1729:12;1713;:28;1709:382;;2215:13;2265:15;;;2301:4;2294:15;;;2348:4;2332:21;;1841:57;;1709:382;;;2215:13;2265:15;;;2301:4;2294:15;;;2348:4;2332:21;;2018:57;;1709:382;-1:-1:-1;1643:3:0;;;;:::i;:::-;;;;1605:497;;;-1:-1:-1;2119:12:0;1464:675;-1:-1:-1;;;1464:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:348::-;3558:6;3611:2;3599:9;3590:7;3586:23;3582:32;3579:52;;;3627:1;3624;3617:12;3579:52;3667:9;3654:23;-1:-1:-1;;;;;3692:6:1;3689:30;3686:50;;;3732:1;3729;3722:12;3686:50;3755:61;3808:7;3799:6;3788:9;3784:22;3755:61;:::i;3827:416::-;3920:6;3928;3981:2;3969:9;3960:7;3956:23;3952:32;3949:52;;;3997:1;3994;3987:12;3949:52;4037:9;4024:23;-1:-1:-1;;;;;4062:6:1;4059:30;4056:50;;;4102:1;4099;4092:12;4056:50;4125:61;4178:7;4169:6;4158:9;4154:22;4125:61;:::i;:::-;4115:71;4233:2;4218:18;;;;4205:32;;-1:-1:-1;;;;3827:416:1:o;4248:180::-;4304:6;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4396:26;4412:9;4396:26;:::i;4433:180::-;4492:6;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;-1:-1:-1;4584:23:1;;4433:180;-1:-1:-1;4433:180:1:o;4618:245::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4784:9;4771:23;4803:30;4827:5;4803:30;:::i;4868:249::-;4937:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;5038:9;5032:16;5057:30;5081:5;5057:30;:::i;5122:450::-;5191:6;5244:2;5232:9;5223:7;5219:23;5215:32;5212:52;;;5260:1;5257;5250:12;5212:52;5300:9;5287:23;-1:-1:-1;;;;;5325:6:1;5322:30;5319:50;;;5365:1;5362;5355:12;5319:50;5388:22;;5441:4;5433:13;;5429:27;-1:-1:-1;5419:55:1;;5470:1;5467;5460:12;5419:55;5493:73;5558:7;5553:2;5540:16;5535:2;5531;5527:11;5493:73;:::i;5762:257::-;5803:3;5841:5;5835:12;5868:6;5863:3;5856:19;5884:63;5940:6;5933:4;5928:3;5924:14;5917:4;5910:5;5906:16;5884:63;:::i;:::-;6001:2;5980:15;-1:-1:-1;;5976:29:1;5967:39;;;;6008:4;5963:50;;5762:257;-1:-1:-1;;5762:257:1:o;6258:637::-;6538:3;6576:6;6570:13;6592:53;6638:6;6633:3;6626:4;6618:6;6614:17;6592:53;:::i;:::-;6708:13;;6667:16;;;;6730:57;6708:13;6667:16;6764:4;6752:17;;6730:57;:::i;:::-;-1:-1:-1;;;6809:20:1;;6838:22;;;6887:1;6876:13;;6258:637;-1:-1:-1;;;;6258:637:1:o;7108:488::-;-1:-1:-1;;;;;7377:15:1;;;7359:34;;7429:15;;7424:2;7409:18;;7402:43;7476:2;7461:18;;7454:34;;;7524:3;7519:2;7504:18;;7497:31;;;7302:4;;7545:45;;7570:19;;7562:6;7545:45;:::i;:::-;7537:53;7108:488;-1:-1:-1;;;;;;7108:488:1:o;7975:219::-;8124:2;8113:9;8106:21;8087:4;8144:44;8184:2;8173:9;8169:18;8161:6;8144:44;:::i;10780:342::-;10982:2;10964:21;;;11021:2;11001:18;;;10994:30;-1:-1:-1;;;11055:2:1;11040:18;;11033:48;11113:2;11098:18;;10780:342::o;11530:356::-;11732:2;11714:21;;;11751:18;;;11744:30;11810:34;11805:2;11790:18;;11783:62;11877:2;11862:18;;11530:356::o;12840:275::-;12911:2;12905:9;12976:2;12957:13;;-1:-1:-1;;12953:27:1;12941:40;;-1:-1:-1;;;;;12996:34:1;;13032:22;;;12993:62;12990:88;;;13058:18;;:::i;:::-;13094:2;13087:22;12840:275;;-1:-1:-1;12840:275:1:o;13120:128::-;13160:3;13191:1;13187:6;13184:1;13181:13;13178:39;;;13197:18;;:::i;:::-;-1:-1:-1;13233:9:1;;13120:128::o;13253:120::-;13293:1;13319;13309:35;;13324:18;;:::i;:::-;-1:-1:-1;13358:9:1;;13253:120::o;13378:168::-;13418:7;13484:1;13480;13476:6;13472:14;13469:1;13466:21;13461:1;13454:9;13447:17;13443:45;13440:71;;;13491:18;;:::i;:::-;-1:-1:-1;13531:9:1;;13378:168::o;13551:125::-;13591:4;13619:1;13616;13613:8;13610:34;;;13624:18;;:::i;:::-;-1:-1:-1;13661:9:1;;13551:125::o;13681:258::-;13753:1;13763:113;13777:6;13774:1;13771:13;13763:113;;;13853:11;;;13847:18;13834:11;;;13827:39;13799:2;13792:10;13763:113;;;13894:6;13891:1;13888:13;13885:48;;;-1:-1:-1;;13929:1:1;13911:16;;13904:27;13681:258::o;13944:380::-;14023:1;14019:12;;;;14066;;;14087:61;;14141:4;14133:6;14129:17;14119:27;;14087:61;14194:2;14186:6;14183:14;14163:18;14160:38;14157:161;;;14240:10;14235:3;14231:20;14228:1;14221:31;14275:4;14272:1;14265:15;14303:4;14300:1;14293:15;14157:161;;13944:380;;;:::o;14329:135::-;14368:3;-1:-1:-1;;14389:17:1;;14386:43;;;14409:18;;:::i;:::-;-1:-1:-1;14456:1:1;14445:13;;14329:135::o;14469:112::-;14501:1;14527;14517:35;;14532:18;;:::i;:::-;-1:-1:-1;14566:9:1;;14469:112::o;14586:127::-;14647:10;14642:3;14638:20;14635:1;14628:31;14678:4;14675:1;14668:15;14702:4;14699:1;14692:15;14718:127;14779:10;14774:3;14770:20;14767:1;14760:31;14810:4;14807:1;14800:15;14834:4;14831:1;14824:15;14850:127;14911:10;14906:3;14902:20;14899:1;14892:31;14942:4;14939:1;14932:15;14966:4;14963:1;14956:15;14982:127;15043:10;15038:3;15034:20;15031:1;15024:31;15074:4;15071:1;15064:15;15098:4;15095:1;15088:15;15114:131;-1:-1:-1;;;;;;15188:32:1;;15178:43;;15168:71;;15235:1;15232;15225:12

Swarm Source

ipfs://93c75d77f79e70e59603faa42cd2b9532afed8ff038f8322945e3aa510ec587e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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