ETH Price: $3,061.23 (+2.34%)
Gas: 5 Gwei

Token

Pobrobopobros (POBRO)
 

Overview

Max Total Supply

112 POBRO

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 POBRO
0x7d619e2598a2f24188497f65a2d9f12e6bfcd985
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:
Pobrobopobros

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-10
*/

/*

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 Pobrobopobros is ERC721A, Ownable {
    bytes32 public root;
	using Strings for uint;

	uint public constant PUBLIC_PRICE = 0.02 ether;
	uint public constant WL_PRICE = 0.015 ether;
	uint public constant MAX_NFT_PER_TRAN = 10;
    uint public constant MAX_PER_WALLET = 50;
	uint public maxSupply = 1111;

	bool public isPublicMint = false;
    bool public isWhitelistMint = false;
    bool public isWhitelistClaim = false;
    bool public isMetadataFinal;
    string private _baseURL = "https://starrwolfstudio.mypinata.cloud/ipfs/QmPYQyarjkaeuMYcYQgeT6abF2V9uGCULbszxgyHXZGjJt/";
	string public prerevealURL = '';
	mapping(address => uint) private _walletMintedCount;
	mapping(address => uint) private _freeMintedCount;

    // Name
	constructor()
	ERC721A('Pobrobopobros', 'POBRO') {
    }

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

    function setWhitelistClaim(bool value) external onlyOwner {
		isWhitelistClaim = 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 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 FREE_CLAIM(bytes32[] memory proof) public {
        uint count = 1;
		require(isWhitelistClaim, "Whitelist claim is not active");
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Wallet not on the allowlist");
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
        require(_freeMintedCount[msg.sender] == 0,'Already claimed free mint');
		//require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');

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

    function WHITELIST_MINT(bytes32[] memory proof, uint count) external payable {
		require(isWhitelistMint, "Whitelist mint is not active");
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Wallet not on the allowlist");
		require(_totalMinted() + count <= maxSupply,'Exceeds max supply');
		require(count <= MAX_NFT_PER_TRAN,'Exceeds NFT per transaction limit');
        require(_walletMintedCount[msg.sender] + count <= MAX_PER_WALLET,'Exceeds max per wallet');

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

		_walletMintedCount[msg.sender] += count;
		_safeMint(msg.sender, count);
	}
    
    function PUBLIC_MINT(uint count) external payable {
		require(isPublicMint, "Public mint is not active");
		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');

		require(
			msg.value >= count * PUBLIC_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":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"FREE_CLAIM","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"PUBLIC_MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"WHITELIST_MINT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isWhitelistClaim","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":"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":"setWhitelistClaim","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"}]

610457600a55600b805462ffffff19169055610100604052605b6080818152906200276060a03980516200003c91600c916020909101906200013f565b506040805160208101918290526000908190526200005d91600d916200013f565b503480156200006b57600080fd5b50604080518082018252600d81526c506f62726f626f706f62726f7360981b602080830191825283518085019094526005845264504f42524f60d81b908401528151919291620000be916002916200013f565b508051620000d49060039060208401906200013f565b5050600160005550620000e733620000ed565b62000221565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014d90620001e5565b90600052602060002090601f016020900481019282620001715760008555620001bc565b82601f106200018c57805160ff1916838001178555620001bc565b82800160010185558215620001bc579182015b82811115620001bc5782518255916020019190600101906200019f565b50620001ca929150620001ce565b5090565b5b80821115620001ca5760008155600101620001cf565b600181811c90821680620001fa57607f821691505b6020821081036200021b57634e487b7160e01b600052602260045260246000fd5b50919050565b61252f80620002316000396000f3fe60806040526004361061025c5760003560e01c80638062344411610144578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d485146106c5578063e985e9c5146106e6578063ebf0c7171461072f578063f2fde38b14610745578063f4a560a514610765578063fddcb5ea1461077a57600080fd5b8063c87b56dd14610645578063d5abeb0114610665578063d82104821461067b578063dab5f34014610690578063e193e7e2146106b057600080fd5b8063a22cb46511610108578063a22cb46514610586578063a3843eb2146105a6578063b88d4fde146105c6578063b8a20ed0146105e6578063c48156af14610606578063c754da331461062657600080fd5b806380623444146104f35780638ba4cc3c146105135780638da5cb5b146105335780638fe757061461055157806395d89b411461057157600080fd5b80633057931f116101dd5780634c261247116101a15780634c26124714610450578063611f3f10146104705780636352211e1461048b578063681b498d146104ab57806370a08231146104be578063715018a6146104de57600080fd5b80633057931f146103d357806331c3c7a0146103ed578063352343ec146104085780633ccfd60b1461041b57806342842e0e1461043057600080fd5b80630de76de4116102245780630de76de4146103325780630f2cdd6c1461035357806318160ddd146103765780631df0bb8a1461039357806323b872dd146103b357600080fd5b806301ffc9a714610261578063053faf7c1461029657806306fdde03146102b6578063081812fc146102d8578063095ea7b314610310575b600080fd5b34801561026d57600080fd5b5061028161027c366004611e54565b6107b0565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b50600b546102819062010000900460ff1681565b3480156102c257600080fd5b506102cb610802565b60405161028d9190611ec9565b3480156102e457600080fd5b506102f86102f3366004611edc565b610894565b6040516001600160a01b03909116815260200161028d565b34801561031c57600080fd5b5061033061032b366004611f11565b6108d8565b005b34801561033e57600080fd5b50600b54610281906301000000900460ff1681565b34801561035f57600080fd5b50610368603281565b60405190815260200161028d565b34801561038257600080fd5b506001546000540360001901610368565b34801561039f57600080fd5b506103306103ae366004611f4b565b61095e565b3480156103bf57600080fd5b506103306103ce366004611f66565b6109ab565b3480156103df57600080fd5b50600b546102819060ff1681565b3480156103f957600080fd5b5061036866354a6ba7a1800081565b610330610416366004612067565b6109b6565b34801561042757600080fd5b50610330610bbb565b34801561043c57600080fd5b5061033061044b366004611f66565b610c14565b34801561045c57600080fd5b5061033061046b366004612102565b610c2f565b34801561047c57600080fd5b5061036866470de4df82000081565b34801561049757600080fd5b506102f86104a6366004611edc565b610cbe565b6103306104b9366004611edc565b610cd0565b3480156104ca57600080fd5b506103686104d936600461214a565b610e43565b3480156104ea57600080fd5b50610330610e91565b3480156104ff57600080fd5b5061033061050e366004611edc565b610ec7565b34801561051f57600080fd5b5061033061052e366004611f11565b610ef6565b34801561053f57600080fd5b506008546001600160a01b03166102f8565b34801561055d57600080fd5b5061033061056c366004612165565b610f63565b34801561057d57600080fd5b506102cb6110e8565b34801561059257600080fd5b506103306105a1366004612199565b6110f7565b3480156105b257600080fd5b506103306105c1366004611f4b565b61118c565b3480156105d257600080fd5b506103306105e13660046121cc565b6111d2565b3480156105f257600080fd5b50610281610601366004612067565b61121c565b34801561061257600080fd5b50610330610621366004611f4b565b611232565b34801561063257600080fd5b50600b5461028190610100900460ff1681565b34801561065157600080fd5b506102cb610660366004611edc565b61126f565b34801561067157600080fd5b50610368600a5481565b34801561068757600080fd5b506102cb6113b5565b34801561069c57600080fd5b506103306106ab366004611edc565b611443565b3480156106bc57600080fd5b50610368600a81565b3480156106d157600080fd5b506040805160208101909152600081526102cb565b3480156106f257600080fd5b50610281610701366004612247565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073b57600080fd5b5061036860095481565b34801561075157600080fd5b5061033061076036600461214a565b611472565b34801561077157600080fd5b5061033061150a565b34801561078657600080fd5b5061036861079536600461214a565b6001600160a01b03166000908152600e602052604090205490565b60006001600160e01b031982166380ac58cd60e01b14806107e157506001600160e01b03198216635b5e139f60e01b145b806107fc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461081190612271565b80601f016020809104026020016040519081016040528092919081815260200182805461083d90612271565b801561088a5780601f1061085f5761010080835404028352916020019161088a565b820191906000526020600020905b81548152906001019060200180831161086d57829003601f168201915b5050505050905090565b600061089f82611549565b6108bc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108e382610cbe565b9050806001600160a01b0316836001600160a01b0316036109175760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461094e576109318133610701565b61094e576040516367d9dca160e11b815260040160405180910390fd5b610959838383611582565b505050565b6008546001600160a01b031633146109915760405162461bcd60e51b8152600401610988906122ab565b60405180910390fd5b600b80549115156101000261ff0019909216919091179055565b6109598383836115de565b600b54610100900460ff16610a0d5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c697374206d696e74206973206e6f7420616374697665000000006044820152606401610988565b6040516bffffffffffffffffffffffff193360601b166020820152610a4d9083906034015b6040516020818303038152906040528051906020012061121c565b610a995760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c69737400000000006044820152606401610988565b600a5481610aaa6000546000190190565b610ab491906122f6565b1115610ad25760405162461bcd60e51b81526004016109889061230e565b600a811115610af35760405162461bcd60e51b81526004016109889061233a565b336000908152600e6020526040902054603290610b119083906122f6565b1115610b585760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610988565b610b6966354a6ba7a180008261237b565b341015610b885760405162461bcd60e51b81526004016109889061239a565b336000908152600e602052604081208054839290610ba79084906122f6565b90915550610bb7905033826117cb565b5050565b6008546001600160a01b03163314610be55760405162461bcd60e51b8152600401610988906122ab565b6040514790339082156108fc029083906000818181858888f19350505050158015610bb7573d6000803e3d6000fd5b610959838383604051806020016040528060008152506111d2565b6008546001600160a01b03163314610c595760405162461bcd60e51b8152600401610988906122ab565b600b546301000000900460ff1615610cab5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b6044820152606401610988565b8051610bb790600c906020840190611da5565b6000610cc9826117e5565b5192915050565b600b5460ff16610d225760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74206973206e6f7420616374697665000000000000006044820152606401610988565b600a811115610d435760405162461bcd60e51b81526004016109889061233a565b600a5481610d546000546000190190565b610d5e91906122f6565b1115610d7c5760405162461bcd60e51b81526004016109889061230e565b336000908152600e6020526040902054603290610d9a9083906122f6565b1115610de15760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610988565b610df266470de4df8200008261237b565b341015610e115760405162461bcd60e51b81526004016109889061239a565b336000908152600e602052604081208054839290610e309084906122f6565b90915550610e40905033826117cb565b50565b60006001600160a01b038216610e6c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610988906122ab565b610ec56000611907565b565b6008546001600160a01b03163314610ef15760405162461bcd60e51b8152600401610988906122ab565b600a55565b6008546001600160a01b03163314610f205760405162461bcd60e51b8152600401610988906122ab565b600a5481610f316000546000190190565b610f3b91906122f6565b1115610f595760405162461bcd60e51b81526004016109889061230e565b610bb782826117cb565b600b5460019062010000900460ff16610fbe5760405162461bcd60e51b815260206004820152601d60248201527f57686974656c69737420636c61696d206973206e6f74206163746976650000006044820152606401610988565b6040516bffffffffffffffffffffffff193360601b166020820152610fe7908390603401610a32565b6110335760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c69737400000000006044820152606401610988565b600a54816110446000546000190190565b61104e91906122f6565b111561106c5760405162461bcd60e51b81526004016109889061230e565b336000908152600f6020526040902054156110c95760405162461bcd60e51b815260206004820152601960248201527f416c726561647920636c61696d65642066726565206d696e74000000000000006044820152606401610988565b336000908152600f602052604081208054839290610ba79084906122f6565b60606003805461081190612271565b336001600160a01b038316036111205760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111b65760405162461bcd60e51b8152600401610988906122ab565b600b8054911515620100000262ff000019909216919091179055565b6111dd8484846115de565b6001600160a01b0383163b15611216576111f984848484611959565b611216576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600061122b8360095484611a45565b9392505050565b6008546001600160a01b0316331461125c5760405162461bcd60e51b8152600401610988906122ab565b600b805460ff1916911515919091179055565b606061127a82611549565b6112de5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610988565b60006112e8611a5b565b511161137e57600d80546112fb90612271565b80601f016020809104026020016040519081016040528092919081815260200182805461132790612271565b80156113745780601f1061134957610100808354040283529160200191611374565b820191906000526020600020905b81548152906001019060200180831161135757829003601f168201915b50505050506107fc565b611386611a5b565b61138f83611a6a565b6040516020016113a09291906123dc565b60405160208183030381529060405292915050565b600d80546113c290612271565b80601f01602080910402602001604051908101604052809291908181526020018280546113ee90612271565b801561143b5780601f106114105761010080835404028352916020019161143b565b820191906000526020600020905b81548152906001019060200180831161141e57829003601f168201915b505050505081565b6008546001600160a01b0316331461146d5760405162461bcd60e51b8152600401610988906122ab565b600955565b6008546001600160a01b0316331461149c5760405162461bcd60e51b8152600401610988906122ab565b6001600160a01b0381166115015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610988565b610e4081611907565b6008546001600160a01b031633146115345760405162461bcd60e51b8152600401610988906122ab565b600b805463ff00000019166301000000179055565b60008160011115801561155d575060005482105b80156107fc575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115e9826117e5565b9050836001600160a01b031681600001516001600160a01b0316146116205760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061163e575061163e8533610701565b8061165957503361164e84610894565b6001600160a01b0316145b90508061167957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116a057604051633a954ecd60e21b815260040160405180910390fd5b6116ac60008487611582565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661178057600054821461178057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610bb7828260405180602001604052806000815250611b6a565b604080516060810182526000808252602082018190529181019190915281806001116118ee576000548110156118ee57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118ec5780516001600160a01b031615611883579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118e7579392505050565b611883565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061198e90339089908890889060040161241b565b6020604051808303816000875af19250505080156119c9575060408051601f3d908101601f191682019092526119c691810190612458565b60015b611a27573d8080156119f7576040519150601f19603f3d011682016040523d82523d6000602084013e6119fc565b606091505b508051600003611a1f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611a528584611d31565b14949350505050565b6060600c805461081190612271565b606081600003611a915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abb5780611aa581612475565b9150611ab49050600a836124a4565b9150611a95565b6000816001600160401b03811115611ad557611ad5611fa2565b6040519080825280601f01601f191660200182016040528015611aff576020820181803683370190505b5090505b8415611a3d57611b146001836124b8565b9150611b21600a866124cf565b611b2c9060306122f6565b60f81b818381518110611b4157611b416124e3565b60200101906001600160f81b031916908160001a905350611b63600a866124a4565b9450611b03565b6000546001600160a01b038416611b9357604051622e076360e81b815260040160405180910390fd5b82600003611bb45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611cdc575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ca56000878480600101955087611959565b611cc2576040516368d2bf6b60e11b815260040160405180910390fd5b808210611c5a578260005414611cd757600080fd5b611d21565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611cdd575b5060009081556112169085838684565b600081815b8451811015611d9d576000858281518110611d5357611d536124e3565b60200260200101519050808311611d795760008381526020829052604090209250611d8a565b600081815260208490526040902092505b5080611d9581612475565b915050611d36565b509392505050565b828054611db190612271565b90600052602060002090601f016020900481019282611dd35760008555611e19565b82601f10611dec57805160ff1916838001178555611e19565b82800160010185558215611e19579182015b82811115611e19578251825591602001919060010190611dfe565b50611e25929150611e29565b5090565b5b80821115611e255760008155600101611e2a565b6001600160e01b031981168114610e4057600080fd5b600060208284031215611e6657600080fd5b813561122b81611e3e565b60005b83811015611e8c578181015183820152602001611e74565b838111156112165750506000910152565b60008151808452611eb5816020860160208601611e71565b601f01601f19169290920160200192915050565b60208152600061122b6020830184611e9d565b600060208284031215611eee57600080fd5b5035919050565b80356001600160a01b0381168114611f0c57600080fd5b919050565b60008060408385031215611f2457600080fd5b611f2d83611ef5565b946020939093013593505050565b80358015158114611f0c57600080fd5b600060208284031215611f5d57600080fd5b61122b82611f3b565b600080600060608486031215611f7b57600080fd5b611f8484611ef5565b9250611f9260208501611ef5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611fe057611fe0611fa2565b604052919050565b600082601f830112611ff957600080fd5b813560206001600160401b0382111561201457612014611fa2565b8160051b612023828201611fb8565b928352848101820192828101908785111561203d57600080fd5b83870192505b8483101561205c57823582529183019190830190612043565b979650505050505050565b6000806040838503121561207a57600080fd5b82356001600160401b0381111561209057600080fd5b61209c85828601611fe8565b95602094909401359450505050565b60006001600160401b038311156120c4576120c4611fa2565b6120d7601f8401601f1916602001611fb8565b90508281528383830111156120eb57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561211457600080fd5b81356001600160401b0381111561212a57600080fd5b8201601f8101841361213b57600080fd5b611a3d848235602084016120ab565b60006020828403121561215c57600080fd5b61122b82611ef5565b60006020828403121561217757600080fd5b81356001600160401b0381111561218d57600080fd5b611a3d84828501611fe8565b600080604083850312156121ac57600080fd5b6121b583611ef5565b91506121c360208401611f3b565b90509250929050565b600080600080608085870312156121e257600080fd5b6121eb85611ef5565b93506121f960208601611ef5565b92506040850135915060608501356001600160401b0381111561221b57600080fd5b8501601f8101871361222c57600080fd5b61223b878235602084016120ab565b91505092959194509250565b6000806040838503121561225a57600080fd5b61226383611ef5565b91506121c360208401611ef5565b600181811c9082168061228557607f821691505b6020821081036122a557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612309576123096122e0565b500190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526021908201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696040820152601d60fa1b606082015260800190565b6000816000190483118215151615612395576123956122e0565b500290565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b600083516123ee818460208801611e71565b835190830190612402818360208801611e71565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061244e90830184611e9d565b9695505050505050565b60006020828403121561246a57600080fd5b815161122b81611e3e565b600060018201612487576124876122e0565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124b3576124b361248e565b500490565b6000828210156124ca576124ca6122e0565b500390565b6000826124de576124de61248e565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207533342e414a4b645152bdae6141f7184c2dd4d9a1bd181f347fe35b0b8522dc64736f6c634300080d003368747470733a2f2f7374617272776f6c6673747564696f2e6d7970696e6174612e636c6f75642f697066732f516d5059517961726a6b6165754d5963595167655436616246325639754743554c62737a78677948585a476a4a742f

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80638062344411610144578063c87b56dd116100b6578063e8a3d4851161007a578063e8a3d485146106c5578063e985e9c5146106e6578063ebf0c7171461072f578063f2fde38b14610745578063f4a560a514610765578063fddcb5ea1461077a57600080fd5b8063c87b56dd14610645578063d5abeb0114610665578063d82104821461067b578063dab5f34014610690578063e193e7e2146106b057600080fd5b8063a22cb46511610108578063a22cb46514610586578063a3843eb2146105a6578063b88d4fde146105c6578063b8a20ed0146105e6578063c48156af14610606578063c754da331461062657600080fd5b806380623444146104f35780638ba4cc3c146105135780638da5cb5b146105335780638fe757061461055157806395d89b411461057157600080fd5b80633057931f116101dd5780634c261247116101a15780634c26124714610450578063611f3f10146104705780636352211e1461048b578063681b498d146104ab57806370a08231146104be578063715018a6146104de57600080fd5b80633057931f146103d357806331c3c7a0146103ed578063352343ec146104085780633ccfd60b1461041b57806342842e0e1461043057600080fd5b80630de76de4116102245780630de76de4146103325780630f2cdd6c1461035357806318160ddd146103765780631df0bb8a1461039357806323b872dd146103b357600080fd5b806301ffc9a714610261578063053faf7c1461029657806306fdde03146102b6578063081812fc146102d8578063095ea7b314610310575b600080fd5b34801561026d57600080fd5b5061028161027c366004611e54565b6107b0565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b50600b546102819062010000900460ff1681565b3480156102c257600080fd5b506102cb610802565b60405161028d9190611ec9565b3480156102e457600080fd5b506102f86102f3366004611edc565b610894565b6040516001600160a01b03909116815260200161028d565b34801561031c57600080fd5b5061033061032b366004611f11565b6108d8565b005b34801561033e57600080fd5b50600b54610281906301000000900460ff1681565b34801561035f57600080fd5b50610368603281565b60405190815260200161028d565b34801561038257600080fd5b506001546000540360001901610368565b34801561039f57600080fd5b506103306103ae366004611f4b565b61095e565b3480156103bf57600080fd5b506103306103ce366004611f66565b6109ab565b3480156103df57600080fd5b50600b546102819060ff1681565b3480156103f957600080fd5b5061036866354a6ba7a1800081565b610330610416366004612067565b6109b6565b34801561042757600080fd5b50610330610bbb565b34801561043c57600080fd5b5061033061044b366004611f66565b610c14565b34801561045c57600080fd5b5061033061046b366004612102565b610c2f565b34801561047c57600080fd5b5061036866470de4df82000081565b34801561049757600080fd5b506102f86104a6366004611edc565b610cbe565b6103306104b9366004611edc565b610cd0565b3480156104ca57600080fd5b506103686104d936600461214a565b610e43565b3480156104ea57600080fd5b50610330610e91565b3480156104ff57600080fd5b5061033061050e366004611edc565b610ec7565b34801561051f57600080fd5b5061033061052e366004611f11565b610ef6565b34801561053f57600080fd5b506008546001600160a01b03166102f8565b34801561055d57600080fd5b5061033061056c366004612165565b610f63565b34801561057d57600080fd5b506102cb6110e8565b34801561059257600080fd5b506103306105a1366004612199565b6110f7565b3480156105b257600080fd5b506103306105c1366004611f4b565b61118c565b3480156105d257600080fd5b506103306105e13660046121cc565b6111d2565b3480156105f257600080fd5b50610281610601366004612067565b61121c565b34801561061257600080fd5b50610330610621366004611f4b565b611232565b34801561063257600080fd5b50600b5461028190610100900460ff1681565b34801561065157600080fd5b506102cb610660366004611edc565b61126f565b34801561067157600080fd5b50610368600a5481565b34801561068757600080fd5b506102cb6113b5565b34801561069c57600080fd5b506103306106ab366004611edc565b611443565b3480156106bc57600080fd5b50610368600a81565b3480156106d157600080fd5b506040805160208101909152600081526102cb565b3480156106f257600080fd5b50610281610701366004612247565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073b57600080fd5b5061036860095481565b34801561075157600080fd5b5061033061076036600461214a565b611472565b34801561077157600080fd5b5061033061150a565b34801561078657600080fd5b5061036861079536600461214a565b6001600160a01b03166000908152600e602052604090205490565b60006001600160e01b031982166380ac58cd60e01b14806107e157506001600160e01b03198216635b5e139f60e01b145b806107fc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461081190612271565b80601f016020809104026020016040519081016040528092919081815260200182805461083d90612271565b801561088a5780601f1061085f5761010080835404028352916020019161088a565b820191906000526020600020905b81548152906001019060200180831161086d57829003601f168201915b5050505050905090565b600061089f82611549565b6108bc576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108e382610cbe565b9050806001600160a01b0316836001600160a01b0316036109175760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461094e576109318133610701565b61094e576040516367d9dca160e11b815260040160405180910390fd5b610959838383611582565b505050565b6008546001600160a01b031633146109915760405162461bcd60e51b8152600401610988906122ab565b60405180910390fd5b600b80549115156101000261ff0019909216919091179055565b6109598383836115de565b600b54610100900460ff16610a0d5760405162461bcd60e51b815260206004820152601c60248201527f57686974656c697374206d696e74206973206e6f7420616374697665000000006044820152606401610988565b6040516bffffffffffffffffffffffff193360601b166020820152610a4d9083906034015b6040516020818303038152906040528051906020012061121c565b610a995760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c69737400000000006044820152606401610988565b600a5481610aaa6000546000190190565b610ab491906122f6565b1115610ad25760405162461bcd60e51b81526004016109889061230e565b600a811115610af35760405162461bcd60e51b81526004016109889061233a565b336000908152600e6020526040902054603290610b119083906122f6565b1115610b585760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610988565b610b6966354a6ba7a180008261237b565b341015610b885760405162461bcd60e51b81526004016109889061239a565b336000908152600e602052604081208054839290610ba79084906122f6565b90915550610bb7905033826117cb565b5050565b6008546001600160a01b03163314610be55760405162461bcd60e51b8152600401610988906122ab565b6040514790339082156108fc029083906000818181858888f19350505050158015610bb7573d6000803e3d6000fd5b610959838383604051806020016040528060008152506111d2565b6008546001600160a01b03163314610c595760405162461bcd60e51b8152600401610988906122ab565b600b546301000000900460ff1615610cab5760405162461bcd60e51b815260206004820152601560248201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b6044820152606401610988565b8051610bb790600c906020840190611da5565b6000610cc9826117e5565b5192915050565b600b5460ff16610d225760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74206973206e6f7420616374697665000000000000006044820152606401610988565b600a811115610d435760405162461bcd60e51b81526004016109889061233a565b600a5481610d546000546000190190565b610d5e91906122f6565b1115610d7c5760405162461bcd60e51b81526004016109889061230e565b336000908152600e6020526040902054603290610d9a9083906122f6565b1115610de15760405162461bcd60e51b8152602060048201526016602482015275115e18d959591cc81b585e081c195c881dd85b1b195d60521b6044820152606401610988565b610df266470de4df8200008261237b565b341015610e115760405162461bcd60e51b81526004016109889061239a565b336000908152600e602052604081208054839290610e309084906122f6565b90915550610e40905033826117cb565b50565b60006001600160a01b038216610e6c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610988906122ab565b610ec56000611907565b565b6008546001600160a01b03163314610ef15760405162461bcd60e51b8152600401610988906122ab565b600a55565b6008546001600160a01b03163314610f205760405162461bcd60e51b8152600401610988906122ab565b600a5481610f316000546000190190565b610f3b91906122f6565b1115610f595760405162461bcd60e51b81526004016109889061230e565b610bb782826117cb565b600b5460019062010000900460ff16610fbe5760405162461bcd60e51b815260206004820152601d60248201527f57686974656c69737420636c61696d206973206e6f74206163746976650000006044820152606401610988565b6040516bffffffffffffffffffffffff193360601b166020820152610fe7908390603401610a32565b6110335760405162461bcd60e51b815260206004820152601b60248201527f57616c6c6574206e6f74206f6e2074686520616c6c6f776c69737400000000006044820152606401610988565b600a54816110446000546000190190565b61104e91906122f6565b111561106c5760405162461bcd60e51b81526004016109889061230e565b336000908152600f6020526040902054156110c95760405162461bcd60e51b815260206004820152601960248201527f416c726561647920636c61696d65642066726565206d696e74000000000000006044820152606401610988565b336000908152600f602052604081208054839290610ba79084906122f6565b60606003805461081190612271565b336001600160a01b038316036111205760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111b65760405162461bcd60e51b8152600401610988906122ab565b600b8054911515620100000262ff000019909216919091179055565b6111dd8484846115de565b6001600160a01b0383163b15611216576111f984848484611959565b611216576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600061122b8360095484611a45565b9392505050565b6008546001600160a01b0316331461125c5760405162461bcd60e51b8152600401610988906122ab565b600b805460ff1916911515919091179055565b606061127a82611549565b6112de5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610988565b60006112e8611a5b565b511161137e57600d80546112fb90612271565b80601f016020809104026020016040519081016040528092919081815260200182805461132790612271565b80156113745780601f1061134957610100808354040283529160200191611374565b820191906000526020600020905b81548152906001019060200180831161135757829003601f168201915b50505050506107fc565b611386611a5b565b61138f83611a6a565b6040516020016113a09291906123dc565b60405160208183030381529060405292915050565b600d80546113c290612271565b80601f01602080910402602001604051908101604052809291908181526020018280546113ee90612271565b801561143b5780601f106114105761010080835404028352916020019161143b565b820191906000526020600020905b81548152906001019060200180831161141e57829003601f168201915b505050505081565b6008546001600160a01b0316331461146d5760405162461bcd60e51b8152600401610988906122ab565b600955565b6008546001600160a01b0316331461149c5760405162461bcd60e51b8152600401610988906122ab565b6001600160a01b0381166115015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610988565b610e4081611907565b6008546001600160a01b031633146115345760405162461bcd60e51b8152600401610988906122ab565b600b805463ff00000019166301000000179055565b60008160011115801561155d575060005482105b80156107fc575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115e9826117e5565b9050836001600160a01b031681600001516001600160a01b0316146116205760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061163e575061163e8533610701565b8061165957503361164e84610894565b6001600160a01b0316145b90508061167957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116a057604051633a954ecd60e21b815260040160405180910390fd5b6116ac60008487611582565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661178057600054821461178057805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610bb7828260405180602001604052806000815250611b6a565b604080516060810182526000808252602082018190529181019190915281806001116118ee576000548110156118ee57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118ec5780516001600160a01b031615611883579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118e7579392505050565b611883565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061198e90339089908890889060040161241b565b6020604051808303816000875af19250505080156119c9575060408051601f3d908101601f191682019092526119c691810190612458565b60015b611a27573d8080156119f7576040519150601f19603f3d011682016040523d82523d6000602084013e6119fc565b606091505b508051600003611a1f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b600082611a528584611d31565b14949350505050565b6060600c805461081190612271565b606081600003611a915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611abb5780611aa581612475565b9150611ab49050600a836124a4565b9150611a95565b6000816001600160401b03811115611ad557611ad5611fa2565b6040519080825280601f01601f191660200182016040528015611aff576020820181803683370190505b5090505b8415611a3d57611b146001836124b8565b9150611b21600a866124cf565b611b2c9060306122f6565b60f81b818381518110611b4157611b416124e3565b60200101906001600160f81b031916908160001a905350611b63600a866124a4565b9450611b03565b6000546001600160a01b038416611b9357604051622e076360e81b815260040160405180910390fd5b82600003611bb45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611cdc575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611ca56000878480600101955087611959565b611cc2576040516368d2bf6b60e11b815260040160405180910390fd5b808210611c5a578260005414611cd757600080fd5b611d21565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611cdd575b5060009081556112169085838684565b600081815b8451811015611d9d576000858281518110611d5357611d536124e3565b60200260200101519050808311611d795760008381526020829052604090209250611d8a565b600081815260208490526040902092505b5080611d9581612475565b915050611d36565b509392505050565b828054611db190612271565b90600052602060002090601f016020900481019282611dd35760008555611e19565b82601f10611dec57805160ff1916838001178555611e19565b82800160010185558215611e19579182015b82811115611e19578251825591602001919060010190611dfe565b50611e25929150611e29565b5090565b5b80821115611e255760008155600101611e2a565b6001600160e01b031981168114610e4057600080fd5b600060208284031215611e6657600080fd5b813561122b81611e3e565b60005b83811015611e8c578181015183820152602001611e74565b838111156112165750506000910152565b60008151808452611eb5816020860160208601611e71565b601f01601f19169290920160200192915050565b60208152600061122b6020830184611e9d565b600060208284031215611eee57600080fd5b5035919050565b80356001600160a01b0381168114611f0c57600080fd5b919050565b60008060408385031215611f2457600080fd5b611f2d83611ef5565b946020939093013593505050565b80358015158114611f0c57600080fd5b600060208284031215611f5d57600080fd5b61122b82611f3b565b600080600060608486031215611f7b57600080fd5b611f8484611ef5565b9250611f9260208501611ef5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611fe057611fe0611fa2565b604052919050565b600082601f830112611ff957600080fd5b813560206001600160401b0382111561201457612014611fa2565b8160051b612023828201611fb8565b928352848101820192828101908785111561203d57600080fd5b83870192505b8483101561205c57823582529183019190830190612043565b979650505050505050565b6000806040838503121561207a57600080fd5b82356001600160401b0381111561209057600080fd5b61209c85828601611fe8565b95602094909401359450505050565b60006001600160401b038311156120c4576120c4611fa2565b6120d7601f8401601f1916602001611fb8565b90508281528383830111156120eb57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561211457600080fd5b81356001600160401b0381111561212a57600080fd5b8201601f8101841361213b57600080fd5b611a3d848235602084016120ab565b60006020828403121561215c57600080fd5b61122b82611ef5565b60006020828403121561217757600080fd5b81356001600160401b0381111561218d57600080fd5b611a3d84828501611fe8565b600080604083850312156121ac57600080fd5b6121b583611ef5565b91506121c360208401611f3b565b90509250929050565b600080600080608085870312156121e257600080fd5b6121eb85611ef5565b93506121f960208601611ef5565b92506040850135915060608501356001600160401b0381111561221b57600080fd5b8501601f8101871361222c57600080fd5b61223b878235602084016120ab565b91505092959194509250565b6000806040838503121561225a57600080fd5b61226383611ef5565b91506121c360208401611ef5565b600181811c9082168061228557607f821691505b6020821081036122a557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612309576123096122e0565b500190565b60208082526012908201527145786365656473206d617820737570706c7960701b604082015260600190565b60208082526021908201527f45786365656473204e465420706572207472616e73616374696f6e206c696d696040820152601d60fa1b606082015260800190565b6000816000190483118215151615612395576123956122e0565b500290565b60208082526022908201527f45746865722076616c75652073656e74206973206e6f742073756666696369656040820152611b9d60f21b606082015260800190565b600083516123ee818460208801611e71565b835190830190612402818360208801611e71565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061244e90830184611e9d565b9695505050505050565b60006020828403121561246a57600080fd5b815161122b81611e3e565b600060018201612487576124876122e0565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124b3576124b361248e565b500490565b6000828210156124ca576124ca6122e0565b500390565b6000826124de576124de61248e565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212207533342e414a4b645152bdae6141f7184c2dd4d9a1bd181f347fe35b0b8522dc64736f6c634300080d0033

Deployed Bytecode Sourcemap

49774:5178:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28395:305;;;;;;;;;;-1:-1:-1;28395:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28395:305:0;;;;;;;;50180:36;;;;;;;;;;-1:-1:-1;50180:36:0;;;;;;;;;;;31510:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33014:204::-;;;;;;;;;;-1:-1:-1;33014:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;33014:204:0;1528:203:1;32576:372:0;;;;;;;;;;-1:-1:-1;32576:372:0;;;;;:::i;:::-;;:::i;:::-;;50223:27;;;;;;;;;;-1:-1:-1;50223:27:0;;;;;;;;;;;50021:40;;;;;;;;;;;;50059:2;50021:40;;;;;2319:25:1;;;2307:2;2292:18;50021:40:0;2173:177:1;27635:312:0;;;;;;;;;;-1:-1:-1;50773:1:0;27898:12;27688:7;27882:13;:28;-1:-1:-1;;27882:46:0;27635:312;;51405:91;;;;;;;;;;-1:-1:-1;51405:91:0;;;;;:::i;:::-;;:::i;33879:170::-;;;;;;;;;;-1:-1:-1;33879:170:0;;;;;:::i;:::-;;:::i;50099:32::-;;;;;;;;;;-1:-1:-1;50099:32:0;;;;;;;;49925:43;;;;;;;;;;;;49957:11;49925:43;;53732:670;;;;;;:::i;:::-;;:::i;52244:143::-;;;;;;;;;;;;;:::i;34120:185::-;;;;;;;;;;-1:-1:-1;34120:185:0;;;;;:::i;:::-;;:::i;50963:139::-;;;;;;;;;;-1:-1:-1;50963:139:0;;;;;:::i;:::-;;:::i;49875:46::-;;;;;;;;;;;;49911:10;49875:46;;31318:125;;;;;;;;;;-1:-1:-1;31318:125:0;;;;;:::i;:::-;;:::i;54414:535::-;;;;;;:::i;:::-;;:::i;28764:206::-;;;;;;;;;;-1:-1:-1;28764:206:0;;;;;:::i;:::-;;:::i;48922:103::-;;;;;;;;;;;;;:::i;52571:94::-;;;;;;;;;;-1:-1:-1;52571:94:0;;;;;:::i;:::-;;:::i;52392:174::-;;;;;;;;;;-1:-1:-1;52392:174:0;;;;;:::i;:::-;;:::i;48271:87::-;;;;;;;;;;-1:-1:-1;48344:6:0;;-1:-1:-1;;;;;48344:6:0;48271:87;;53169:555;;;;;;;;;;-1:-1:-1;53169:555:0;;;;;:::i;:::-;;:::i;31679:104::-;;;;;;;;;;;;;:::i;33290:287::-;;;;;;;;;;-1:-1:-1;33290:287:0;;;;;:::i;:::-;;:::i;51504:92::-;;;;;;;;;;-1:-1:-1;51504:92:0;;;;;:::i;:::-;;:::i;34376:370::-;;;;;;;;;;-1:-1:-1;34376:370:0;;;;;:::i;:::-;;:::i;53016:145::-;;;;;;;;;;-1:-1:-1;53016:145:0;;;;;:::i;:::-;;:::i;51312:85::-;;;;;;;;;;-1:-1:-1;51312:85:0;;;;;:::i;:::-;;:::i;50138:35::-;;;;;;;;;;-1:-1:-1;50138:35:0;;;;;;;;;;;52670:341;;;;;;;;;;-1:-1:-1;52670:341:0;;;;;:::i;:::-;;:::i;50065:28::-;;;;;;;;;;;;;;;;50380:31;;;;;;;;;;;;;:::i;51234:73::-;;;;;;;;;;-1:-1:-1;51234:73:0;;;;;:::i;:::-;;:::i;49972:42::-;;;;;;;;;;;;50012:2;49972:42;;50784:78;;;;;;;;;;-1:-1:-1;50848:9:0;;;;;;;;;-1:-1:-1;50848:9:0;;50784: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;49824:19;;;;;;;;;;;;;;;;49180:201;;;;;;;;;;-1:-1:-1;49180:201:0;;;;;:::i;:::-;;:::i;50870:88::-;;;;;;;;;;;;;:::i;51110:116::-;;;;;;;;;;-1:-1:-1;51110:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;51193:25:0;51169:4;51193:25;;;:18;:25;;;;;;;51110: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;51405:91::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;;;;;;;;;51468:15:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;51468:23:0;;::::1;::::0;;;::::1;::::0;;51405:91::o;33879:170::-;34013:28;34023:4;34029:2;34033:7;34013:9;:28::i;53732:670::-;53822:15;;;;;;;53814:56;;;;-1:-1:-1;;;53814:56:0;;8932:2:1;53814:56:0;;;8914:21:1;8971:2;8951:18;;;8944:30;9010;8990:18;;;8983:58;9058:18;;53814:56:0;8730:352:1;53814:56:0;53914:28;;-1:-1:-1;;53931:10:0;9236:2:1;9232:15;9228:53;53914:28:0;;;9216:66:1;53889:55:0;;53897:5;;9298:12:1;;53914:28:0;;;;;;;;;;;;;53904:39;;;;;;53889:7;:55::i;:::-;53881:95;;;;-1:-1:-1;;;53881:95:0;;9523:2:1;53881:95:0;;;9505:21:1;9562:2;9542:18;;;9535:30;9601:29;9581:18;;;9574:57;9648:18;;53881:95:0;9321:351:1;53881:95:0;54015:9;;54006:5;53989:14;28087:7;28273:13;-1:-1:-1;;28273:31:0;;28040:283;53989:14;:22;;;;:::i;:::-;:35;;53981:65;;;;-1:-1:-1;;;53981:65:0;;;;;;;:::i;:::-;50012:2;54059:5;:25;;54051:70;;;;-1:-1:-1;;;54051:70:0;;;;;;;:::i;:::-;54159:10;54140:30;;;;:18;:30;;;;;;50059:2;;54140:38;;54173:5;;54140:38;:::i;:::-;:56;;54132:90;;;;-1:-1:-1;;;54132:90:0;;10893:2:1;54132:90:0;;;10875:21:1;10932:2;10912:18;;;10905:30;-1:-1:-1;;;10951:18:1;;;10944:52;11013:18;;54132:90:0;10691:346:1;54132:90:0;54255:16;49957:11;54255:5;:16;:::i;:::-;54242:9;:29;;54229:89;;;;-1:-1:-1;;;54229:89:0;;;;;;;:::i;:::-;54344:10;54325:30;;;;:18;:30;;;;;:39;;54359:5;;54325:30;:39;;54359:5;;54325:39;:::i;:::-;;;;-1:-1:-1;54369:28:0;;-1:-1:-1;54379:10:0;54391:5;54369:9;:28::i;:::-;53732:670;;:::o;52244:143::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52342:37:::1;::::0;52310:21:::1;::::0;52350:10:::1;::::0;52342:37;::::1;;;::::0;52310:21;;52292:15:::1;52342:37:::0;52292:15;52342:37;52310:21;52350:10;52342:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;34120:185:::0;34258:39;34275:4;34281:2;34285:7;34258:39;;;;;;;;;;;;:16;:39::i;50963:139::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51037:15:::1;::::0;;;::::1;;;51036:16;51028:50;;;::::0;-1:-1:-1;;;51028:50:0;;11820:2:1;51028:50:0::1;::::0;::::1;11802:21:1::0;11859:2;11839:18;;;11832:30;-1:-1:-1;;;11878:18:1;;;11871:51;11939:18;;51028:50:0::1;11618:345:1::0;51028:50:0::1;51083:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;31318:125::-:0;31382:7;31409:21;31422:7;31409:12;:21::i;:::-;:26;;31318:125;-1:-1:-1;;31318:125:0:o;54414:535::-;54477:12;;;;54469:50;;;;-1:-1:-1;;;54469:50:0;;12170:2:1;54469:50:0;;;12152:21:1;12209:2;12189:18;;;12182:30;12248:27;12228:18;;;12221:55;12293:18;;54469:50:0;11968:349:1;54469:50:0;50012:2;54532:5;:25;;54524:70;;;;-1:-1:-1;;;54524:70:0;;;;;;;:::i;:::-;54633:9;;54624:5;54607:14;28087:7;28273:13;-1:-1:-1;;28273:31:0;;28040:283;54607:14;:22;;;;:::i;:::-;:35;;54599:65;;;;-1:-1:-1;;;54599:65:0;;;;;;;:::i;:::-;54702:10;54683:30;;;;:18;:30;;;;;;50059:2;;54683:38;;54716:5;;54683:38;:::i;:::-;:56;;54675:90;;;;-1:-1:-1;;;54675:90:0;;10893:2:1;54675:90:0;;;10875:21:1;10932:2;10912:18;;;10905:30;-1:-1:-1;;;10951:18:1;;;10944:52;11013:18;;54675:90:0;10691:346:1;54675:90:0;54798:20;49911:10;54798:5;:20;:::i;:::-;54785:9;:33;;54772:93;;;;-1:-1:-1;;;54772:93:0;;;;;;;:::i;:::-;54891:10;54872:30;;;;:18;:30;;;;;:39;;54906:5;;54872:30;:39;;54906:5;;54872:39;:::i;:::-;;;;-1:-1:-1;54916:28:0;;-1:-1:-1;54926:10:0;54938:5;54916:9;:28::i;:::-;54414:535;:::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;52571:94::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52636:9:::1;:24:::0;52571:94::o;52392:174::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;52496:9:::1;;52487:5;52470:14;28087:7:::0;28273:13;-1:-1:-1;;28273:31:0;;28040:283;52470:14:::1;:22;;;;:::i;:::-;:35;;52457:79;;;;-1:-1:-1::0;;;52457:79:0::1;;;;;;;:::i;:::-;52541:20;52551:2;52555:5;52541:9;:20::i;53169:555::-:0;53258:16;;53244:1;;53258:16;;;;;53250:58;;;;-1:-1:-1;;;53250:58:0;;12524:2:1;53250:58:0;;;12506:21:1;12563:2;12543:18;;;12536:30;12602:31;12582:18;;;12575:59;12651:18;;53250:58:0;12322:353:1;53250:58:0;53352:28;;-1:-1:-1;;53369:10:0;9236:2:1;9232:15;9228:53;53352:28:0;;;9216:66:1;53327:55:0;;53335:5;;9298:12:1;;53352:28:0;9087:229:1;53327:55:0;53319:95;;;;-1:-1:-1;;;53319:95:0;;9523:2:1;53319:95:0;;;9505:21:1;9562:2;9542:18;;;9535:30;9601:29;9581:18;;;9574:57;9648:18;;53319:95:0;9321:351:1;53319:95:0;53453:9;;53444:5;53427:14;28087:7;28273:13;-1:-1:-1;;28273:31:0;;28040:283;53427:14;:22;;;;:::i;:::-;:35;;53419:65;;;;-1:-1:-1;;;53419:65:0;;;;;;;:::i;:::-;53520:10;53503:28;;;;:16;:28;;;;;;:33;53495:70;;;;-1:-1:-1;;;53495:70:0;;12882:2:1;53495:70:0;;;12864:21:1;12921:2;12901:18;;;12894:30;12960:27;12940:18;;;12933:55;13005:18;;53495:70:0;12680:349:1;53495:70:0;53666:10;53649:28;;;;:16;:28;;;;;:37;;53681:5;;53649:28;:37;;53681:5;;53649:37;:::i;31679:104::-;31735:13;31768:7;31761:14;;;;;:::i;33290:287::-;25412:10;-1:-1:-1;;;;;33389:24:0;;;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;;540:41:1;;;33452:42:0;;25412:10;33521:48;;513:18:1;33521:48:0;;;;;;;33290:287;;:::o;51504:92::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51567:16:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;51567:24:0;;::::1;::::0;;;::::1;::::0;;51504:92::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;;;;;;;;;;;34603:136;34376:370;;;;:::o;53016:145::-;53092:4;53116:37;53135:5;53142:4;;53148;53116:18;:37::i;:::-;53109:44;53016:145;-1:-1:-1;;;53016:145:0:o;51312:85::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51372:12:::1;:20:::0;;-1:-1:-1;;51372:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51312:85::o;52670:341::-;52744:13;52780:16;52788:7;52780;:16::i;:::-;52772:76;;;;-1:-1:-1;;;52772:76:0;;13236:2:1;52772:76:0;;;13218:21:1;13275:2;13255:18;;;13248:30;13314:34;13294:18;;;13287:62;-1:-1:-1;;;13365:18:1;;;13358:45;13420:19;;52772:76:0;13034:411:1;52772:76:0;52895:1;52874:10;:8;:10::i;:::-;52868:24;:28;:138;;52994:12;52868:138;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52937:10;:8;:10::i;:::-;52949:18;:7;:16;:18::i;:::-;52920:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52861:145;52670:341;-1:-1:-1;;52670:341:0:o;50380:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51234:73::-;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;51290:4:::1;:12:::0;51234: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;;14294:2:1;49261:73:0::1;::::0;::::1;14276:21:1::0;14333:2;14313:18;;;14306:30;14372:34;14352:18;;;14345:62;-1:-1:-1;;;14423:18:1;;;14416:36;14469:19;;49261:73:0::1;14092:402:1::0;49261:73:0::1;49345:28;49364:8;49345:18;:28::i;50870:88::-:0;48344:6;;-1:-1:-1;;;;;48344:6:0;25412:10;48491:23;48483:68;;;;-1:-1:-1;;;48483:68:0;;;;;;;:::i;:::-;50928:15:::1;:22:::0;;-1:-1:-1;;50928:22:0::1;::::0;::::1;::::0;;50870:88::o;35001:174::-;35058:4;35101:7;50773: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;;50773: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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45329:6;:13;45346:1;45329:18;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;50601:92::-;50653:13;50680:8;50673:15;;;;;:::i;2745:723::-;2801:13;3022:5;3031:1;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:8;35981:1;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:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:160::-;2420:20;;2476:13;;2469:21;2459:32;;2449:60;;2505:1;2502;2495:12;2520:180;2576:6;2629:2;2617:9;2608:7;2604:23;2600:32;2597:52;;;2645:1;2642;2635:12;2597:52;2668:26;2684:9;2668:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:127::-;3099:10;3094:3;3090:20;3087:1;3080:31;3130:4;3127:1;3120:15;3154:4;3151:1;3144:15;3170:275;3241:2;3235:9;3306:2;3287:13;;-1:-1:-1;;3283:27:1;3271:40;;-1:-1:-1;;;;;3326:34:1;;3362:22;;;3323:62;3320:88;;;3388:18;;:::i;:::-;3424:2;3417:22;3170:275;;-1:-1:-1;3170:275:1:o;3450:712::-;3504:5;3557:3;3550:4;3542:6;3538:17;3534:27;3524:55;;3575:1;3572;3565:12;3524:55;3611:6;3598:20;3637:4;-1:-1:-1;;;;;3656:2:1;3653:26;3650:52;;;3682:18;;:::i;:::-;3728:2;3725:1;3721:10;3751:28;3775:2;3771;3767:11;3751:28;:::i;:::-;3813:15;;;3883;;;3879:24;;;3844:12;;;;3915:15;;;3912:35;;;3943:1;3940;3933:12;3912:35;3979:2;3971:6;3967:15;3956:26;;3991:142;4007:6;4002:3;3999:15;3991:142;;;4073:17;;4061:30;;4024:12;;;;4111;;;;3991:142;;;4151:5;3450:712;-1:-1:-1;;;;;;;3450:712:1:o;4167:416::-;4260:6;4268;4321:2;4309:9;4300:7;4296:23;4292:32;4289:52;;;4337:1;4334;4327:12;4289:52;4377:9;4364:23;-1:-1:-1;;;;;4402:6:1;4399:30;4396:50;;;4442:1;4439;4432:12;4396:50;4465:61;4518:7;4509:6;4498:9;4494:22;4465:61;:::i;:::-;4455:71;4573:2;4558:18;;;;4545:32;;-1:-1:-1;;;;4167:416:1:o;4588:407::-;4653:5;-1:-1:-1;;;;;4679:6:1;4676:30;4673:56;;;4709:18;;:::i;:::-;4747:57;4792:2;4771:15;;-1:-1:-1;;4767:29:1;4798:4;4763:40;4747:57;:::i;:::-;4738:66;;4827:6;4820:5;4813:21;4867:3;4858:6;4853:3;4849:16;4846:25;4843:45;;;4884:1;4881;4874:12;4843:45;4933:6;4928:3;4921:4;4914:5;4910:16;4897:43;4987:1;4980:4;4971:6;4964:5;4960:18;4956:29;4949:40;4588:407;;;;;:::o;5000:451::-;5069:6;5122:2;5110:9;5101:7;5097:23;5093:32;5090:52;;;5138:1;5135;5128:12;5090:52;5178:9;5165:23;-1:-1:-1;;;;;5203:6:1;5200:30;5197:50;;;5243:1;5240;5233:12;5197:50;5266:22;;5319:4;5311:13;;5307:27;-1:-1:-1;5297:55:1;;5348:1;5345;5338:12;5297:55;5371:74;5437:7;5432:2;5419:16;5414:2;5410;5406:11;5371:74;:::i;5456:186::-;5515:6;5568:2;5556:9;5547:7;5543:23;5539:32;5536:52;;;5584:1;5581;5574:12;5536:52;5607:29;5626:9;5607:29;:::i;5647:348::-;5731:6;5784:2;5772:9;5763:7;5759:23;5755:32;5752:52;;;5800:1;5797;5790:12;5752:52;5840:9;5827:23;-1:-1:-1;;;;;5865:6:1;5862:30;5859:50;;;5905:1;5902;5895:12;5859:50;5928:61;5981:7;5972:6;5961:9;5957:22;5928:61;:::i;6000:254::-;6065:6;6073;6126:2;6114:9;6105:7;6101:23;6097:32;6094:52;;;6142:1;6139;6132:12;6094:52;6165:29;6184:9;6165:29;:::i;:::-;6155:39;;6213:35;6244:2;6233:9;6229:18;6213:35;:::i;:::-;6203:45;;6000:254;;;;;:::o;6259:667::-;6354:6;6362;6370;6378;6431:3;6419:9;6410:7;6406:23;6402:33;6399:53;;;6448:1;6445;6438:12;6399:53;6471:29;6490:9;6471:29;:::i;:::-;6461:39;;6519:38;6553:2;6542:9;6538:18;6519:38;:::i;:::-;6509:48;;6604:2;6593:9;6589:18;6576:32;6566:42;;6659:2;6648:9;6644:18;6631:32;-1:-1:-1;;;;;6678:6:1;6675:30;6672:50;;;6718:1;6715;6708:12;6672:50;6741:22;;6794:4;6786:13;;6782:27;-1:-1:-1;6772:55:1;;6823:1;6820;6813:12;6772:55;6846:74;6912:7;6907:2;6894:16;6889:2;6885;6881:11;6846:74;:::i;:::-;6836:84;;;6259:667;;;;;;;:::o;7537:260::-;7605:6;7613;7666:2;7654:9;7645:7;7641:23;7637:32;7634:52;;;7682:1;7679;7672:12;7634:52;7705:29;7724:9;7705:29;:::i;:::-;7695:39;;7753:38;7787:2;7776:9;7772:18;7753:38;:::i;7984:380::-;8063:1;8059:12;;;;8106;;;8127:61;;8181:4;8173:6;8169:17;8159:27;;8127:61;8234:2;8226:6;8223:14;8203:18;8200:38;8197:161;;8280:10;8275:3;8271:20;8268:1;8261:31;8315:4;8312:1;8305:15;8343:4;8340:1;8333:15;8197:161;;7984:380;;;:::o;8369:356::-;8571:2;8553:21;;;8590:18;;;8583:30;8649:34;8644:2;8629:18;;8622:62;8716:2;8701:18;;8369:356::o;9677:127::-;9738:10;9733:3;9729:20;9726:1;9719:31;9769:4;9766:1;9759:15;9793:4;9790:1;9783:15;9809:128;9849:3;9880:1;9876:6;9873:1;9870:13;9867:39;;;9886:18;;:::i;:::-;-1:-1:-1;9922:9:1;;9809:128::o;9942:342::-;10144:2;10126:21;;;10183:2;10163:18;;;10156:30;-1:-1:-1;;;10217:2:1;10202:18;;10195:48;10275:2;10260:18;;9942:342::o;10289:397::-;10491:2;10473:21;;;10530:2;10510:18;;;10503:30;10569:34;10564:2;10549:18;;10542:62;-1:-1:-1;;;10635:2:1;10620:18;;10613:31;10676:3;10661:19;;10289:397::o;11042:168::-;11082:7;11148:1;11144;11140:6;11136:14;11133:1;11130:21;11125:1;11118:9;11111:17;11107:45;11104:71;;;11155:18;;:::i;:::-;-1:-1:-1;11195:9:1;;11042:168::o;11215:398::-;11417:2;11399:21;;;11456:2;11436:18;;;11429:30;11495:34;11490:2;11475:18;;11468:62;-1:-1:-1;;;11561:2:1;11546:18;;11539:32;11603:3;11588:19;;11215:398::o;13450:637::-;13730:3;13768:6;13762:13;13784:53;13830:6;13825:3;13818:4;13810:6;13806:17;13784:53;:::i;:::-;13900:13;;13859:16;;;;13922:57;13900:13;13859:16;13956:4;13944:17;;13922:57;:::i;:::-;-1:-1:-1;;;14001:20:1;;14030:22;;;14079:1;14068:13;;13450:637;-1:-1:-1;;;;13450:637:1:o;14499:489::-;-1:-1:-1;;;;;14768:15:1;;;14750:34;;14820:15;;14815:2;14800:18;;14793:43;14867:2;14852:18;;14845:34;;;14915:3;14910:2;14895:18;;14888:31;;;14693:4;;14936:46;;14962:19;;14954:6;14936:46;:::i;:::-;14928:54;14499:489;-1:-1:-1;;;;;;14499:489:1:o;14993:249::-;15062:6;15115:2;15103:9;15094:7;15090:23;15086:32;15083:52;;;15131:1;15128;15121:12;15083:52;15163:9;15157:16;15182:30;15206:5;15182:30;:::i;15247:135::-;15286:3;15307:17;;;15304:43;;15327:18;;:::i;:::-;-1:-1:-1;15374:1:1;15363:13;;15247:135::o;15387:127::-;15448:10;15443:3;15439:20;15436:1;15429:31;15479:4;15476:1;15469:15;15503:4;15500:1;15493:15;15519:120;15559:1;15585;15575:35;;15590:18;;:::i;:::-;-1:-1:-1;15624:9:1;;15519:120::o;15644:125::-;15684:4;15712:1;15709;15706:8;15703:34;;;15717:18;;:::i;:::-;-1:-1:-1;15754:9:1;;15644:125::o;15774:112::-;15806:1;15832;15822:35;;15837:18;;:::i;:::-;-1:-1:-1;15871:9:1;;15774:112::o;15891:127::-;15952:10;15947:3;15943:20;15940:1;15933:31;15983:4;15980:1;15973:15;16007:4;16004:1;15997:15

Swarm Source

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