ETH Price: $3,409.64 (+2.94%)

Token

PageOneGallery (PageOneGallery)
 

Overview

Max Total Supply

78 PageOneGallery

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
mythr.eth
Balance
1 PageOneGallery
0x199B76d41301C3E53191EE3666a857564F2F3e4e
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:
PageOneGallery

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// 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: @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.sol


// Creator: Chiru Labs

pragma solidity ^0.8.7;

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.7;



contract PageOneGallery is ERC721A, Ownable {

    string public baseURI = "ipfs://QmX3YrHDqiRDqERKBAoQMyFaPY2FQHDgu9d1sGYm3hdr2P/";
    uint256 public constant MAX_SUPPLY = 777;
    uint256 public MINT_PRICE = 0.039 ether;
    uint256 public constant MAX_PER_TX_PAID = 1;
    bool public isPrivateSale = false;
    bool public isPublicSale = false;
    bytes32 public root;


    constructor(bytes32 _root) ERC721A("PageOneGallery", "PageOneGallery") {
        root = _root;
    }

  function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json"));
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function setMintPrice(uint256 _price) external onlyOwner {
        MINT_PRICE = _price;
    }

    function togglePublicSale(bool _isPublicSale) external onlyOwner {
        isPublicSale = _isPublicSale;
    }

    function togglePrivateSale(bool _isPrivateSale) external onlyOwner {
        isPrivateSale = _isPrivateSale;
    }

    function devMint(uint256 count) external onlyOwner {
        _safeMint(_msgSender(), count);
    }

    function safeMint(bytes32[] memory proof, uint256 count) external payable {
        require(isPrivateSale, "Sale not active yet");
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of Allowlist");
        require(totalSupply() + count <= MAX_SUPPLY, "Excedes max supply.");
        require(count <= MAX_PER_TX_PAID , "Exceeds max per transaction.");
        require(msg.value >= count * MINT_PRICE, "Amount sent less than the cost of minting NFT(s)"); 
        _safeMint(_msgSender(), count);
    }

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

    function publicMint(uint256 count) external payable {
        require(isPublicSale, "Sale not active yet");
       require(totalSupply() + count <= MAX_SUPPLY, "Excedes max supply.");
        require(count <= MAX_PER_TX_PAID , "Exceeds max per transaction.");
        require(msg.value >= count * MINT_PRICE, "Amount sent less than the cost of minting NFT(s)"); 
        _safeMint(_msgSender(), count);
    }

    function withdrawMoney() external onlyOwner {
        (bool success, ) = _msgSender().call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX_PAID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devMint","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":"isPrivateSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","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":"bool","name":"_isPrivateSale","type":"bool"}],"name":"togglePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSale","type":"bool"}],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260366080818152906200220960a039805162000029916009916020909101906200013c565b50668a8e4b1a3d8000600a55600b805461ffff191690553480156200004d57600080fd5b506040516200223f3803806200223f8339810160408190526200007091620001e2565b604080518082018252600e8082526d506167654f6e6547616c6c65727960901b602080840182815285518087019096529285528401528151919291620000b9916002916200013c565b508051620000cf9060039060208401906200013c565b50506000805550620000e133620000ea565b600c5562000239565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014a90620001fc565b90600052602060002090601f0160209004810192826200016e5760008555620001b9565b82601f106200018957805160ff1916838001178555620001b9565b82800160010185558215620001b9579182015b82811115620001b95782518255916020019190600101906200019c565b50620001c7929150620001cb565b5090565b5b80821115620001c75760008155600101620001cc565b600060208284031215620001f557600080fd5b5051919050565b600181811c908216806200021157607f821691505b602082108114156200023357634e487b7160e01b600052602260045260246000fd5b50919050565b611fc080620002496000396000f3fe6080604052600436106101ee5760003560e01c80638c3cefa31161010d578063b8a20ed0116100a0578063e985e9c51161006f578063e985e9c514610539578063ebf0c71714610582578063f2fde38b14610598578063f4a0a528146105b8578063fd42b689146105d857600080fd5b8063b8a20ed0146104d0578063c002d23d146104f0578063c87b56dd14610506578063e68d79f81461052657600080fd5b8063a22cb465116100dc578063a22cb4651461045c578063a5a865dc1461047c578063ac4460021461049b578063b88d4fde146104b057600080fd5b80638c3cefa3146103f45780638da5cb5b14610414578063958d4bda1461043257806395d89b411461044757600080fd5b806332cb6b0c116101855780636352211e116101545780636352211e1461038a5780636c0360eb146103aa57806370a08231146103bf578063715018a6146103df57600080fd5b806332cb6b0c14610314578063375a069a1461032a57806342842e0e1461034a57806355f804b31461036a57600080fd5b806314be7793116101c157806314be7793146102a457806318160ddd146102be57806323b872dd146102e15780632db115441461030157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611b81565b6105f8565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064a565b60405161021f9190611d5c565b34801561025657600080fd5b5061026a610265366004611c03565b6106dc565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611af8565b610720565b005b3480156102b057600080fd5b50600b546102139060ff1681565b3480156102ca57600080fd5b50600154600054035b60405190815260200161021f565b3480156102ed57600080fd5b506102a26102fc366004611a17565b6107ae565b6102a261030f366004611c03565b6107b9565b34801561032057600080fd5b506102d361030981565b34801561033657600080fd5b506102a2610345366004611c03565b6108f5565b34801561035657600080fd5b506102a2610365366004611a17565b61091f565b34801561037657600080fd5b506102a2610385366004611bbb565b61093a565b34801561039657600080fd5b5061026a6103a5366004611c03565b61097b565b3480156103b657600080fd5b5061023d61098d565b3480156103cb57600080fd5b506102d36103da3660046119c9565b610a1b565b3480156103eb57600080fd5b506102a2610a69565b34801561040057600080fd5b506102a261040f366004611b66565b610a9f565b34801561042057600080fd5b506008546001600160a01b031661026a565b34801561043e57600080fd5b506102d3600181565b34801561045357600080fd5b5061023d610ae3565b34801561046857600080fd5b506102a2610477366004611ace565b610af2565b34801561048857600080fd5b50600b5461021390610100900460ff1681565b3480156104a757600080fd5b506102a2610b88565b3480156104bc57600080fd5b506102a26104cb366004611a53565b610c3d565b3480156104dc57600080fd5b506102136104eb366004611b22565b610c8e565b3480156104fc57600080fd5b506102d3600a5481565b34801561051257600080fd5b5061023d610521366004611c03565b610ca4565b6102a2610534366004611b22565b610d25565b34801561054557600080fd5b506102136105543660046119e4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058e57600080fd5b506102d3600c5481565b3480156105a457600080fd5b506102a26105b33660046119c9565b610edd565b3480156105c457600080fd5b506102a26105d3366004611c03565b610f75565b3480156105e457600080fd5b506102a26105f3366004611b66565b610fa4565b60006001600160e01b031982166380ac58cd60e01b148061062957506001600160e01b03198216635b5e139f60e01b145b8061064457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461065990611eb2565b80601f016020809104026020016040519081016040528092919081815260200182805461068590611eb2565b80156106d25780601f106106a7576101008083540402835291602001916106d2565b820191906000526020600020905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b60006106e782610fe1565b610704576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061072b8261097b565b9050806001600160a01b0316836001600160a01b031614156107605760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610780575061077e8133610554565b155b1561079e576040516367d9dca160e11b815260040160405180910390fd5b6107a983838361100c565b505050565b6107a9838383611068565b600b54610100900460ff1661080b5760405162461bcd60e51b815260206004820152601360248201527214d85b19481b9bdd081858dd1a5d99481e595d606a1b60448201526064015b60405180910390fd5b6103098161081c6001546000540390565b6108269190611e24565b111561086a5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610802565b60018111156108bb5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610802565b600a546108c89082611e50565b3410156108e75760405162461bcd60e51b815260040161080290611d6f565b6108f2335b82611255565b50565b6008546001600160a01b031633146108e75760405162461bcd60e51b815260040161080290611dbf565b6107a983838360405180602001604052806000815250610c3d565b6008546001600160a01b031633146109645760405162461bcd60e51b815260040161080290611dbf565b8051610977906009906020840190611828565b5050565b60006109868261126f565b5192915050565b6009805461099a90611eb2565b80601f01602080910402602001604051908101604052809291908181526020018280546109c690611eb2565b8015610a135780601f106109e857610100808354040283529160200191610a13565b820191906000526020600020905b8154815290600101906020018083116109f657829003601f168201915b505050505081565b60006001600160a01b038216610a44576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a935760405162461bcd60e51b815260040161080290611dbf565b610a9d6000611389565b565b6008546001600160a01b03163314610ac95760405162461bcd60e51b815260040161080290611dbf565b600b80549115156101000261ff0019909216919091179055565b60606003805461065990611eb2565b6001600160a01b038216331415610b1c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610bb25760405162461bcd60e51b815260040161080290611dbf565b604051600090339047908381818185875af1925050503d8060008114610bf4576040519150601f19603f3d011682016040523d82523d6000602084013e610bf9565b606091505b50509050806108f25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610802565b610c48848484611068565b6001600160a01b0383163b15158015610c6a5750610c68848484846113db565b155b15610c88576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610c9d83600c54846114d3565b9392505050565b6060610caf82610fe1565b610cf35760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610802565b6009610cfe836114e9565b604051602001610d0f929190611c64565b6040516020818303038152906040529050919050565b600b5460ff16610d6d5760405162461bcd60e51b815260206004820152601360248201527214d85b19481b9bdd081858dd1a5d99481e595d606a1b6044820152606401610802565b6040516bffffffffffffffffffffffff193360601b166020820152610dac90839060340160405160208183030381529060405280519060200120610c8e565b610df85760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612070617274206f6620416c6c6f776c6973740000000000000000006044820152606401610802565b61030981610e096001546000540390565b610e139190611e24565b1115610e575760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610802565b6001811115610ea85760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610802565b600a54610eb59082611e50565b341015610ed45760405162461bcd60e51b815260040161080290611d6f565b610977336108ec565b6008546001600160a01b03163314610f075760405162461bcd60e51b815260040161080290611dbf565b6001600160a01b038116610f6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b6108f281611389565b6008546001600160a01b03163314610f9f5760405162461bcd60e51b815260040161080290611dbf565b600a55565b6008546001600160a01b03163314610fce5760405162461bcd60e51b815260040161080290611dbf565b600b805460ff1916911515919091179055565b6000805482108015610644575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110738261126f565b9050836001600160a01b031681600001516001600160a01b0316146110aa5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110c857506110c88533610554565b806110e35750336110d8846106dc565b6001600160a01b0316145b90508061110357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661112a57604051633a954ecd60e21b815260040160405180910390fd5b6111366000848761100c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661120a57600054821461120a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109778282604051806020016040528060008152506115e6565b60408051606081018252600080825260208201819052918101919091528160005481101561137057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061136e5780516001600160a01b031615611305579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611369579392505050565b611305565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611410903390899088908890600401611d1f565b602060405180830381600087803b15801561142a57600080fd5b505af192505050801561145a575060408051601f3d908101601f1916820190925261145791810190611b9e565b60015b6114b5573d808015611488576040519150601f19603f3d011682016040523d82523d6000602084013e61148d565b606091505b5080516114ad576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826114e085846117ac565b14949350505050565b60608161150d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611537578061152181611eed565b91506115309050600a83611e3c565b9150611511565b6000816001600160401b0381111561155157611551611f5e565b6040519080825280601f01601f19166020018201604052801561157b576020820181803683370190505b5090505b84156114cb57611590600183611e6f565b915061159d600a86611f08565b6115a8906030611e24565b60f81b8183815181106115bd576115bd611f48565b60200101906001600160f81b031916908160001a9053506115df600a86611e3c565b945061157f565b6000546001600160a01b03841661160f57604051622e076360e81b815260040160405180910390fd5b8261162d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611756575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461171e60008784806001019550876113db565b61173b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116d357826000541461175157600080fd5b61179c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611757575b506000908155610c889085838684565b600081815b84518110156117f1576117dd828683815181106117d0576117d0611f48565b60200260200101516117f9565b9150806117e981611eed565b9150506117b1565b509392505050565b6000818310611815576000828152602084905260409020610c9d565b6000838152602083905260409020610c9d565b82805461183490611eb2565b90600052602060002090601f016020900481019282611856576000855561189c565b82601f1061186f57805160ff191683800117855561189c565b8280016001018555821561189c579182015b8281111561189c578251825591602001919060010190611881565b506118a89291506118ac565b5090565b5b808211156118a857600081556001016118ad565b60006001600160401b038311156118da576118da611f5e565b6118ed601f8401601f1916602001611df4565b905082815283838301111561190157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461192f57600080fd5b919050565b600082601f83011261194557600080fd5b813560206001600160401b0382111561196057611960611f5e565b8160051b61196f828201611df4565b83815282810190868401838801850189101561198a57600080fd5b600093505b858410156119ad57803583526001939093019291840191840161198f565b50979650505050505050565b8035801515811461192f57600080fd5b6000602082840312156119db57600080fd5b610c9d82611918565b600080604083850312156119f757600080fd5b611a0083611918565b9150611a0e60208401611918565b90509250929050565b600080600060608486031215611a2c57600080fd5b611a3584611918565b9250611a4360208501611918565b9150604084013590509250925092565b60008060008060808587031215611a6957600080fd5b611a7285611918565b9350611a8060208601611918565b92506040850135915060608501356001600160401b03811115611aa257600080fd5b8501601f81018713611ab357600080fd5b611ac2878235602084016118c1565b91505092959194509250565b60008060408385031215611ae157600080fd5b611aea83611918565b9150611a0e602084016119b9565b60008060408385031215611b0b57600080fd5b611b1483611918565b946020939093013593505050565b60008060408385031215611b3557600080fd5b82356001600160401b03811115611b4b57600080fd5b611b5785828601611934565b95602094909401359450505050565b600060208284031215611b7857600080fd5b610c9d826119b9565b600060208284031215611b9357600080fd5b8135610c9d81611f74565b600060208284031215611bb057600080fd5b8151610c9d81611f74565b600060208284031215611bcd57600080fd5b81356001600160401b03811115611be357600080fd5b8201601f81018413611bf457600080fd5b6114cb848235602084016118c1565b600060208284031215611c1557600080fd5b5035919050565b60008151808452611c34816020860160208601611e86565b601f01601f19169290920160200192915050565b60008151611c5a818560208601611e86565b9290920192915050565b600080845481600182811c915080831680611c8057607f831692505b6020808410821415611ca057634e487b7160e01b86526022600452602486fd5b818015611cb45760018114611cc557611cf2565b60ff19861689528489019650611cf2565b60008b81526020902060005b86811015611cea5781548b820152908501908301611cd1565b505084890196505b505050505050611d16611d058286611c48565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5290830184611c1c565b9695505050505050565b602081526000610c9d6020830184611c1c565b60208082526030908201527f416d6f756e742073656e74206c657373207468616e2074686520636f7374206f60408201526f66206d696e74696e67204e465428732960801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611e1c57611e1c611f5e565b604052919050565b60008219821115611e3757611e37611f1c565b500190565b600082611e4b57611e4b611f32565b500490565b6000816000190483118215151615611e6a57611e6a611f1c565b500290565b600082821015611e8157611e81611f1c565b500390565b60005b83811015611ea1578181015183820152602001611e89565b83811115610c885750506000910152565b600181811c90821680611ec657607f821691505b60208210811415611ee757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0157611f01611f1c565b5060010190565b600082611f1757611f17611f32565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f257600080fdfea2646970667358221220064d7fc6702e3547248d5ae55c73c5bacdb0af69d673c2b41a755ba5b19792c264736f6c63430008070033697066733a2f2f516d583359724844716952447145524b42416f514d7946615059324651484467753964317347596d3368647232502f1927576ecc8031194ed29b7eb63ee3555e738608ef67ba98a8dd4f27bbb770df

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80638c3cefa31161010d578063b8a20ed0116100a0578063e985e9c51161006f578063e985e9c514610539578063ebf0c71714610582578063f2fde38b14610598578063f4a0a528146105b8578063fd42b689146105d857600080fd5b8063b8a20ed0146104d0578063c002d23d146104f0578063c87b56dd14610506578063e68d79f81461052657600080fd5b8063a22cb465116100dc578063a22cb4651461045c578063a5a865dc1461047c578063ac4460021461049b578063b88d4fde146104b057600080fd5b80638c3cefa3146103f45780638da5cb5b14610414578063958d4bda1461043257806395d89b411461044757600080fd5b806332cb6b0c116101855780636352211e116101545780636352211e1461038a5780636c0360eb146103aa57806370a08231146103bf578063715018a6146103df57600080fd5b806332cb6b0c14610314578063375a069a1461032a57806342842e0e1461034a57806355f804b31461036a57600080fd5b806314be7793116101c157806314be7793146102a457806318160ddd146102be57806323b872dd146102e15780632db115441461030157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611b81565b6105f8565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61064a565b60405161021f9190611d5c565b34801561025657600080fd5b5061026a610265366004611c03565b6106dc565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611af8565b610720565b005b3480156102b057600080fd5b50600b546102139060ff1681565b3480156102ca57600080fd5b50600154600054035b60405190815260200161021f565b3480156102ed57600080fd5b506102a26102fc366004611a17565b6107ae565b6102a261030f366004611c03565b6107b9565b34801561032057600080fd5b506102d361030981565b34801561033657600080fd5b506102a2610345366004611c03565b6108f5565b34801561035657600080fd5b506102a2610365366004611a17565b61091f565b34801561037657600080fd5b506102a2610385366004611bbb565b61093a565b34801561039657600080fd5b5061026a6103a5366004611c03565b61097b565b3480156103b657600080fd5b5061023d61098d565b3480156103cb57600080fd5b506102d36103da3660046119c9565b610a1b565b3480156103eb57600080fd5b506102a2610a69565b34801561040057600080fd5b506102a261040f366004611b66565b610a9f565b34801561042057600080fd5b506008546001600160a01b031661026a565b34801561043e57600080fd5b506102d3600181565b34801561045357600080fd5b5061023d610ae3565b34801561046857600080fd5b506102a2610477366004611ace565b610af2565b34801561048857600080fd5b50600b5461021390610100900460ff1681565b3480156104a757600080fd5b506102a2610b88565b3480156104bc57600080fd5b506102a26104cb366004611a53565b610c3d565b3480156104dc57600080fd5b506102136104eb366004611b22565b610c8e565b3480156104fc57600080fd5b506102d3600a5481565b34801561051257600080fd5b5061023d610521366004611c03565b610ca4565b6102a2610534366004611b22565b610d25565b34801561054557600080fd5b506102136105543660046119e4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561058e57600080fd5b506102d3600c5481565b3480156105a457600080fd5b506102a26105b33660046119c9565b610edd565b3480156105c457600080fd5b506102a26105d3366004611c03565b610f75565b3480156105e457600080fd5b506102a26105f3366004611b66565b610fa4565b60006001600160e01b031982166380ac58cd60e01b148061062957506001600160e01b03198216635b5e139f60e01b145b8061064457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461065990611eb2565b80601f016020809104026020016040519081016040528092919081815260200182805461068590611eb2565b80156106d25780601f106106a7576101008083540402835291602001916106d2565b820191906000526020600020905b8154815290600101906020018083116106b557829003601f168201915b5050505050905090565b60006106e782610fe1565b610704576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061072b8261097b565b9050806001600160a01b0316836001600160a01b031614156107605760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610780575061077e8133610554565b155b1561079e576040516367d9dca160e11b815260040160405180910390fd5b6107a983838361100c565b505050565b6107a9838383611068565b600b54610100900460ff1661080b5760405162461bcd60e51b815260206004820152601360248201527214d85b19481b9bdd081858dd1a5d99481e595d606a1b60448201526064015b60405180910390fd5b6103098161081c6001546000540390565b6108269190611e24565b111561086a5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610802565b60018111156108bb5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610802565b600a546108c89082611e50565b3410156108e75760405162461bcd60e51b815260040161080290611d6f565b6108f2335b82611255565b50565b6008546001600160a01b031633146108e75760405162461bcd60e51b815260040161080290611dbf565b6107a983838360405180602001604052806000815250610c3d565b6008546001600160a01b031633146109645760405162461bcd60e51b815260040161080290611dbf565b8051610977906009906020840190611828565b5050565b60006109868261126f565b5192915050565b6009805461099a90611eb2565b80601f01602080910402602001604051908101604052809291908181526020018280546109c690611eb2565b8015610a135780601f106109e857610100808354040283529160200191610a13565b820191906000526020600020905b8154815290600101906020018083116109f657829003601f168201915b505050505081565b60006001600160a01b038216610a44576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a935760405162461bcd60e51b815260040161080290611dbf565b610a9d6000611389565b565b6008546001600160a01b03163314610ac95760405162461bcd60e51b815260040161080290611dbf565b600b80549115156101000261ff0019909216919091179055565b60606003805461065990611eb2565b6001600160a01b038216331415610b1c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610bb25760405162461bcd60e51b815260040161080290611dbf565b604051600090339047908381818185875af1925050503d8060008114610bf4576040519150601f19603f3d011682016040523d82523d6000602084013e610bf9565b606091505b50509050806108f25760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610802565b610c48848484611068565b6001600160a01b0383163b15158015610c6a5750610c68848484846113db565b155b15610c88576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610c9d83600c54846114d3565b9392505050565b6060610caf82610fe1565b610cf35760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610802565b6009610cfe836114e9565b604051602001610d0f929190611c64565b6040516020818303038152906040529050919050565b600b5460ff16610d6d5760405162461bcd60e51b815260206004820152601360248201527214d85b19481b9bdd081858dd1a5d99481e595d606a1b6044820152606401610802565b6040516bffffffffffffffffffffffff193360601b166020820152610dac90839060340160405160208183030381529060405280519060200120610c8e565b610df85760405162461bcd60e51b815260206004820152601760248201527f4e6f7420612070617274206f6620416c6c6f776c6973740000000000000000006044820152606401610802565b61030981610e096001546000540390565b610e139190611e24565b1115610e575760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610802565b6001811115610ea85760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610802565b600a54610eb59082611e50565b341015610ed45760405162461bcd60e51b815260040161080290611d6f565b610977336108ec565b6008546001600160a01b03163314610f075760405162461bcd60e51b815260040161080290611dbf565b6001600160a01b038116610f6c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610802565b6108f281611389565b6008546001600160a01b03163314610f9f5760405162461bcd60e51b815260040161080290611dbf565b600a55565b6008546001600160a01b03163314610fce5760405162461bcd60e51b815260040161080290611dbf565b600b805460ff1916911515919091179055565b6000805482108015610644575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110738261126f565b9050836001600160a01b031681600001516001600160a01b0316146110aa5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806110c857506110c88533610554565b806110e35750336110d8846106dc565b6001600160a01b0316145b90508061110357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661112a57604051633a954ecd60e21b815260040160405180910390fd5b6111366000848761100c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661120a57600054821461120a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109778282604051806020016040528060008152506115e6565b60408051606081018252600080825260208201819052918101919091528160005481101561137057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061136e5780516001600160a01b031615611305579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611369579392505050565b611305565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611410903390899088908890600401611d1f565b602060405180830381600087803b15801561142a57600080fd5b505af192505050801561145a575060408051601f3d908101601f1916820190925261145791810190611b9e565b60015b6114b5573d808015611488576040519150601f19603f3d011682016040523d82523d6000602084013e61148d565b606091505b5080516114ad576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826114e085846117ac565b14949350505050565b60608161150d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611537578061152181611eed565b91506115309050600a83611e3c565b9150611511565b6000816001600160401b0381111561155157611551611f5e565b6040519080825280601f01601f19166020018201604052801561157b576020820181803683370190505b5090505b84156114cb57611590600183611e6f565b915061159d600a86611f08565b6115a8906030611e24565b60f81b8183815181106115bd576115bd611f48565b60200101906001600160f81b031916908160001a9053506115df600a86611e3c565b945061157f565b6000546001600160a01b03841661160f57604051622e076360e81b815260040160405180910390fd5b8261162d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611756575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461171e60008784806001019550876113db565b61173b576040516368d2bf6b60e11b815260040160405180910390fd5b808214156116d357826000541461175157600080fd5b61179c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611757575b506000908155610c889085838684565b600081815b84518110156117f1576117dd828683815181106117d0576117d0611f48565b60200260200101516117f9565b9150806117e981611eed565b9150506117b1565b509392505050565b6000818310611815576000828152602084905260409020610c9d565b6000838152602083905260409020610c9d565b82805461183490611eb2565b90600052602060002090601f016020900481019282611856576000855561189c565b82601f1061186f57805160ff191683800117855561189c565b8280016001018555821561189c579182015b8281111561189c578251825591602001919060010190611881565b506118a89291506118ac565b5090565b5b808211156118a857600081556001016118ad565b60006001600160401b038311156118da576118da611f5e565b6118ed601f8401601f1916602001611df4565b905082815283838301111561190157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461192f57600080fd5b919050565b600082601f83011261194557600080fd5b813560206001600160401b0382111561196057611960611f5e565b8160051b61196f828201611df4565b83815282810190868401838801850189101561198a57600080fd5b600093505b858410156119ad57803583526001939093019291840191840161198f565b50979650505050505050565b8035801515811461192f57600080fd5b6000602082840312156119db57600080fd5b610c9d82611918565b600080604083850312156119f757600080fd5b611a0083611918565b9150611a0e60208401611918565b90509250929050565b600080600060608486031215611a2c57600080fd5b611a3584611918565b9250611a4360208501611918565b9150604084013590509250925092565b60008060008060808587031215611a6957600080fd5b611a7285611918565b9350611a8060208601611918565b92506040850135915060608501356001600160401b03811115611aa257600080fd5b8501601f81018713611ab357600080fd5b611ac2878235602084016118c1565b91505092959194509250565b60008060408385031215611ae157600080fd5b611aea83611918565b9150611a0e602084016119b9565b60008060408385031215611b0b57600080fd5b611b1483611918565b946020939093013593505050565b60008060408385031215611b3557600080fd5b82356001600160401b03811115611b4b57600080fd5b611b5785828601611934565b95602094909401359450505050565b600060208284031215611b7857600080fd5b610c9d826119b9565b600060208284031215611b9357600080fd5b8135610c9d81611f74565b600060208284031215611bb057600080fd5b8151610c9d81611f74565b600060208284031215611bcd57600080fd5b81356001600160401b03811115611be357600080fd5b8201601f81018413611bf457600080fd5b6114cb848235602084016118c1565b600060208284031215611c1557600080fd5b5035919050565b60008151808452611c34816020860160208601611e86565b601f01601f19169290920160200192915050565b60008151611c5a818560208601611e86565b9290920192915050565b600080845481600182811c915080831680611c8057607f831692505b6020808410821415611ca057634e487b7160e01b86526022600452602486fd5b818015611cb45760018114611cc557611cf2565b60ff19861689528489019650611cf2565b60008b81526020902060005b86811015611cea5781548b820152908501908301611cd1565b505084890196505b505050505050611d16611d058286611c48565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d5290830184611c1c565b9695505050505050565b602081526000610c9d6020830184611c1c565b60208082526030908201527f416d6f756e742073656e74206c657373207468616e2074686520636f7374206f60408201526f66206d696e74696e67204e465428732960801b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715611e1c57611e1c611f5e565b604052919050565b60008219821115611e3757611e37611f1c565b500190565b600082611e4b57611e4b611f32565b500490565b6000816000190483118215151615611e6a57611e6a611f1c565b500290565b600082821015611e8157611e81611f1c565b500390565b60005b83811015611ea1578181015183820152602001611e89565b83811115610c885750506000910152565b600181811c90821680611ec657607f821691505b60208210811415611ee757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f0157611f01611f1c565b5060010190565b600082611f1757611f17611f32565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108f257600080fdfea2646970667358221220064d7fc6702e3547248d5ae55c73c5bacdb0af69d673c2b41a755ba5b19792c264736f6c63430008070033

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

1927576ecc8031194ed29b7eb63ee3555e738608ef67ba98a8dd4f27bbb770df

-----Decoded View---------------
Arg [0] : _root (bytes32): 0x1927576ecc8031194ed29b7eb63ee3555e738608ef67ba98a8dd4f27bbb770df

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 1927576ecc8031194ed29b7eb63ee3555e738608ef67ba98a8dd4f27bbb770df


Deployed Bytecode Sourcemap

54579:2616:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24519:305;;;;;;;;;;-1:-1:-1;24519:305:0;;;;;:::i;:::-;;:::i;:::-;;;8831:14:1;;8824:22;8806:41;;8794:2;8779:18;24519:305:0;;;;;;;;27632:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29135:204::-;;;;;;;;;;-1:-1:-1;29135:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8129:32:1;;;8111:51;;8099:2;8084:18;29135:204:0;7965:203:1;28698:371:0;;;;;;;;;;-1:-1:-1;28698:371:0;;;;;:::i;:::-;;:::i;:::-;;54862:33;;;;;;;;;;-1:-1:-1;54862:33:0;;;;;;;;23768:303;;;;;;;;;;-1:-1:-1;24022:12:0;;23812:7;24006:13;:28;23768:303;;;9004:25:1;;;8992:2;8977:18;23768:303:0;8858:177:1;30000:170:0;;;;;;;;;;-1:-1:-1;30000:170:0;;;;;:::i;:::-;;:::i;56590:414::-;;;;;;:::i;:::-;;:::i;54719:40::-;;;;;;;;;;;;54756:3;54719:40;;55781:100;;;;;;;;;;-1:-1:-1;55781:100:0;;;;;:::i;:::-;;:::i;30241:185::-;;;;;;;;;;-1:-1:-1;30241:185:0;;;;;:::i;:::-;;:::i;55326:100::-;;;;;;;;;;-1:-1:-1;55326:100:0;;;;;:::i;:::-;;:::i;27440:125::-;;;;;;;;;;-1:-1:-1;27440:125:0;;;;;:::i;:::-;;:::i;54632:80::-;;;;;;;;;;;;;:::i;24888:206::-;;;;;;;;;;-1:-1:-1;24888:206:0;;;;;:::i;:::-;;:::i;45044:103::-;;;;;;;;;;;;;:::i;55537:112::-;;;;;;;;;;-1:-1:-1;55537:112:0;;;;;:::i;:::-;;:::i;44393:87::-;;;;;;;;;;-1:-1:-1;44466:6:0;;-1:-1:-1;;;;;44466:6:0;44393:87;;54812:43;;;;;;;;;;;;54854:1;54812:43;;27801:104;;;;;;;;;;;;;:::i;29411:287::-;;;;;;;;;;-1:-1:-1;29411:287:0;;;;;:::i;:::-;;:::i;54902:32::-;;;;;;;;;;-1:-1:-1;54902:32:0;;;;;;;;;;;57012:180;;;;;;;;;;;;;:::i;30497:369::-;;;;;;;;;;-1:-1:-1;30497:369:0;;;;;:::i;:::-;;:::i;56437:145::-;;;;;;;;;;-1:-1:-1;56437:145:0;;;;;:::i;:::-;;:::i;54766:39::-;;;;;;;;;;;;;;;;55079:239;;;;;;;;;;-1:-1:-1;55079:239:0;;;;;:::i;:::-;;:::i;55889:540::-;;;;;;:::i;:::-;;:::i;29769:164::-;;;;;;;;;;-1:-1:-1;29769:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29890:25:0;;;29866:4;29890:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29769:164;54941:19;;;;;;;;;;;;;;;;45302:201;;;;;;;;;;-1:-1:-1;45302:201:0;;;;;:::i;:::-;;:::i;55434:95::-;;;;;;;;;;-1:-1:-1;55434:95:0;;;;;:::i;:::-;;:::i;55657:116::-;;;;;;;;;;-1:-1:-1;55657:116:0;;;;;:::i;:::-;;:::i;24519:305::-;24621:4;-1:-1:-1;;;;;;24658:40:0;;-1:-1:-1;;;24658:40:0;;:105;;-1:-1:-1;;;;;;;24715:48:0;;-1:-1:-1;;;24715:48:0;24658:105;:158;;;-1:-1:-1;;;;;;;;;;13643:40:0;;;24780:36;24638:178;24519:305;-1:-1:-1;;24519:305:0:o;27632:100::-;27686:13;27719:5;27712:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27632:100;:::o;29135:204::-;29203:7;29228:16;29236:7;29228;:16::i;:::-;29223:64;;29253:34;;-1:-1:-1;;;29253:34:0;;;;;;;;;;;29223:64;-1:-1:-1;29307:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29307:24:0;;29135:204::o;28698:371::-;28771:13;28787:24;28803:7;28787:15;:24::i;:::-;28771:40;;28832:5;-1:-1:-1;;;;;28826:11:0;:2;-1:-1:-1;;;;;28826:11:0;;28822:48;;;28846:24;;-1:-1:-1;;;28846:24:0;;;;;;;;;;;28822:48;20147:10;-1:-1:-1;;;;;28887:21:0;;;;;;:63;;-1:-1:-1;28913:37:0;28930:5;20147:10;29769:164;:::i;28913:37::-;28912:38;28887:63;28883:138;;;28974:35;;-1:-1:-1;;;28974:35:0;;;;;;;;;;;28883:138;29033:28;29042:2;29046:7;29055:5;29033:8;:28::i;:::-;28760:309;28698:371;;:::o;30000:170::-;30134:28;30144:4;30150:2;30154:7;30134:9;:28::i;56590:414::-;56661:12;;;;;;;56653:44;;;;-1:-1:-1;;;56653:44:0;;10221:2:1;56653:44:0;;;10203:21:1;10260:2;10240:18;;;10233:30;-1:-1:-1;;;10279:18:1;;;10272:49;10338:18;;56653:44:0;;;;;;;;;54756:3;56731:5;56715:13;24022:12;;23812:7;24006:13;:28;;23768:303;56715:13;:21;;;;:::i;:::-;:35;;56707:67;;;;-1:-1:-1;;;56707:67:0;;9466:2:1;56707:67:0;;;9448:21:1;9505:2;9485:18;;;9478:30;-1:-1:-1;;;9524:18:1;;;9517:49;9583:18;;56707:67:0;9264:343:1;56707:67:0;54854:1;56793:5;:24;;56785:66;;;;-1:-1:-1;;;56785:66:0;;12394:2:1;56785:66:0;;;12376:21:1;12433:2;12413:18;;;12406:30;12472;12452:18;;;12445:58;12520:18;;56785:66:0;12192:352:1;56785:66:0;56891:10;;56883:18;;:5;:18;:::i;:::-;56870:9;:31;;56862:92;;;;-1:-1:-1;;;56862:92:0;;;;;;;:::i;:::-;56966:30;20147:10;56976:12;56990:5;56966:9;:30::i;:::-;56590:414;:::o;55781:100::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;30241:185::-;30379:39;30396:4;30402:2;30406:7;30379:39;;;;;;;;;;;;:16;:39::i;55326:100::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;55400:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55326:100:::0;:::o;27440:125::-;27504:7;27531:21;27544:7;27531:12;:21::i;:::-;:26;;27440:125;-1:-1:-1;;27440:125:0:o;54632:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24888:206::-;24952:7;-1:-1:-1;;;;;24976:19:0;;24972:60;;25004:28;;-1:-1:-1;;;25004:28:0;;;;;;;;;;;24972:60;-1:-1:-1;;;;;;25058:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25058:27:0;;24888:206::o;45044:103::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;45109:30:::1;45136:1;45109:18;:30::i;:::-;45044:103::o:0;55537:112::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;55613:12:::1;:28:::0;;;::::1;;;;-1:-1:-1::0;;55613:28:0;;::::1;::::0;;;::::1;::::0;;55537:112::o;27801:104::-;27857:13;27890:7;27883:14;;;;;:::i;29411:287::-;-1:-1:-1;;;;;29510:24:0;;20147:10;29510:24;29506:54;;;29543:17;;-1:-1:-1;;;29543:17:0;;;;;;;;;;;29506:54;20147:10;29573:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29573:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29573:53:0;;;;;;;;;;29642:48;;8806:41:1;;;29573:42:0;;20147:10;29642:48;;8779:18:1;29642:48:0;;;;;;;29411:287;;:::o;57012:180::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;57086:51:::1;::::0;57068:12:::1;::::0;20147:10;;57111:21:::1;::::0;57068:12;57086:51;57068:12;57086:51;57111:21;20147:10;57086:51:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57067:70;;;57156:7;57148:36;;;::::0;-1:-1:-1;;;57148:36:0;;12049:2:1;57148:36:0::1;::::0;::::1;12031:21:1::0;12088:2;12068:18;;;12061:30;-1:-1:-1;;;12107:18:1;;;12100:46;12163:18;;57148:36:0::1;11847:340:1::0;30497:369:0;30664:28;30674:4;30680:2;30684:7;30664:9;:28::i;:::-;-1:-1:-1;;;;;30707:13:0;;3723:19;:23;;30707:76;;;;;30727:56;30758:4;30764:2;30768:7;30777:5;30727:30;:56::i;:::-;30726:57;30707:76;30703:156;;;30807:40;;-1:-1:-1;;;30807:40:0;;;;;;;;;;;30703:156;30497:369;;;;:::o;56437:145::-;56513:4;56537:37;56556:5;56563:4;;56569;56537:18;:37::i;:::-;56530:44;56437:145;-1:-1:-1;;;56437:145:0:o;55079:239::-;55145:13;55179:17;55187:8;55179:7;:17::i;:::-;55171:51;;;;-1:-1:-1;;;55171:51:0;;11338:2:1;55171:51:0;;;11320:21:1;11377:2;11357:18;;;11350:30;-1:-1:-1;;;11396:18:1;;;11389:51;11457:18;;55171:51:0;11136:345:1;55171:51:0;55264:7;55273:26;55290:8;55273:16;:26::i;:::-;55247:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55233:77;;55079:239;;;:::o;55889:540::-;55982:13;;;;55974:45;;;;-1:-1:-1;;;55974:45:0;;10221:2:1;55974:45:0;;;10203:21:1;10260:2;10240:18;;;10233:30;-1:-1:-1;;;10279:18:1;;;10272:49;10338:18;;55974:45:0;10019:343:1;55974:45:0;56063:28;;-1:-1:-1;;56080:10:0;6364:2:1;6360:15;6356:53;56063:28:0;;;6344:66:1;56038:55:0;;56046:5;;6426:12:1;;56063:28:0;;;;;;;;;;;;56053:39;;;;;;56038:7;:55::i;:::-;56030:91;;;;-1:-1:-1;;;56030:91:0;;10986:2:1;56030:91:0;;;10968:21:1;11025:2;11005:18;;;10998:30;11064:25;11044:18;;;11037:53;11107:18;;56030:91:0;10784:347:1;56030:91:0;54756:3;56156:5;56140:13;24022:12;;23812:7;24006:13;:28;;23768:303;56140:13;:21;;;;:::i;:::-;:35;;56132:67;;;;-1:-1:-1;;;56132:67:0;;9466:2:1;56132:67:0;;;9448:21:1;9505:2;9485:18;;;9478:30;-1:-1:-1;;;9524:18:1;;;9517:49;9583:18;;56132:67:0;9264:343:1;56132:67:0;54854:1;56218:5;:24;;56210:66;;;;-1:-1:-1;;;56210:66:0;;12394:2:1;56210:66:0;;;12376:21:1;12433:2;12413:18;;;12406:30;12472;12452:18;;;12445:58;12520:18;;56210:66:0;12192:352:1;56210:66:0;56316:10;;56308:18;;:5;:18;:::i;:::-;56295:9;:31;;56287:92;;;;-1:-1:-1;;;56287:92:0;;;;;;;:::i;:::-;56391:30;20147:10;56401:12;20067:98;45302:201;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45391:22:0;::::1;45383:73;;;::::0;-1:-1:-1;;;45383:73:0;;9814:2:1;45383:73:0::1;::::0;::::1;9796:21:1::0;9853:2;9833:18;;;9826:30;9892:34;9872:18;;;9865:62;-1:-1:-1;;;9943:18:1;;;9936:36;9989:19;;45383:73:0::1;9612:402:1::0;45383:73:0::1;45467:28;45486:8;45467:18;:28::i;55434:95::-:0;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;55502:10:::1;:19:::0;55434:95::o;55657:116::-;44466:6;;-1:-1:-1;;;;;44466:6:0;20147:10;44613:23;44605:68;;;;-1:-1:-1;;;44605:68:0;;;;;;;:::i;:::-;55735:13:::1;:30:::0;;-1:-1:-1;;55735:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55657:116::o;31121:174::-;31178:4;31242:13;;31232:7;:23;31202:85;;;;-1:-1:-1;;31260:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31260:27:0;;;;31259:28;;31121:174::o;40347:196::-;40462:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40462:29:0;-1:-1:-1;;;;;40462:29:0;;;;;;;;;40507:28;;40462:24;;40507:28;;;;;;;40347:196;;;:::o;35295:2130::-;35410:35;35448:21;35461:7;35448:12;:21::i;:::-;35410:59;;35508:4;-1:-1:-1;;;;;35486:26:0;:13;:18;;;-1:-1:-1;;;;;35486:26:0;;35482:67;;35521:28;;-1:-1:-1;;;35521:28:0;;;;;;;;;;;35482:67;35562:22;20147:10;-1:-1:-1;;;;;35588:20:0;;;;:73;;-1:-1:-1;35625:36:0;35642:4;20147:10;29769:164;:::i;35625:36::-;35588:126;;;-1:-1:-1;20147:10:0;35678:20;35690:7;35678:11;:20::i;:::-;-1:-1:-1;;;;;35678:36:0;;35588:126;35562:153;;35733:17;35728:66;;35759:35;;-1:-1:-1;;;35759:35:0;;;;;;;;;;;35728:66;-1:-1:-1;;;;;35809:16:0;;35805:52;;35834:23;;-1:-1:-1;;;35834:23:0;;;;;;;;;;;35805:52;35978:35;35995:1;35999:7;36008:4;35978:8;:35::i;:::-;-1:-1:-1;;;;;36309:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36309:31:0;;;-1:-1:-1;;;;;36309:31:0;;;-1:-1:-1;;36309:31:0;;;;;;;36355:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36355:29:0;;;;;;;;;;;36435:20;;;:11;:20;;;;;;36470:18;;-1:-1:-1;;;;;;36503:49:0;;;;-1:-1:-1;;;36536:15:0;36503:49;;;;;;;;;;36826:11;;36886:24;;;;;36929:13;;36435:20;;36886:24;;36929:13;36925:384;;37139:13;;37124:11;:28;37120:174;;37177:20;;37246:28;;;;-1:-1:-1;;;;;37220:54:0;-1:-1:-1;;;37220:54:0;-1:-1:-1;;;;;;37220:54:0;;;-1:-1:-1;;;;;37177:20:0;;37220:54;;;;37120:174;36284:1036;;;37356:7;37352:2;-1:-1:-1;;;;;37337:27:0;37346:4;-1:-1:-1;;;;;37337:27:0;;;;;;;;;;;35399:2026;;35295:2130;;;:::o;31379:104::-;31448:27;31458:2;31462:8;31448:27;;;;;;;;;;;;:9;:27::i;26269:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26380:7:0;26463:13;;26456:4;:20;26425:886;;;26497:31;26531:17;;;:11;:17;;;;;;;;;26497:51;;;;;;;;;-1:-1:-1;;;;;26497:51:0;;;;-1:-1:-1;;;26497:51:0;;-1:-1:-1;;;;;26497:51:0;;;;;;;;-1:-1:-1;;;26497:51:0;;;;;;;;;;;;;;26567:729;;26617:14;;-1:-1:-1;;;;;26617:28:0;;26613:101;;26681:9;26269:1109;-1:-1:-1;;;26269:1109:0:o;26613:101::-;-1:-1:-1;;;27056:6:0;27101:17;;;;:11;:17;;;;;;;;;27089:29;;;;;;;;;-1:-1:-1;;;;;27089:29:0;;;;;-1:-1:-1;;;27089:29:0;;-1:-1:-1;;;;;27089:29:0;;;;;;;;-1:-1:-1;;;27089:29:0;;;;;;;;;;;;;27149:28;27145:109;;27217:9;26269:1109;-1:-1:-1;;;26269:1109:0:o;27145:109::-;27016:261;;;26478:833;26425:886;27339:31;;-1:-1:-1;;;27339:31:0;;;;;;;;;;;45663:191;45756:6;;;-1:-1:-1;;;;;45773:17:0;;;-1:-1:-1;;;;;;45773:17:0;;;;;;;45806:40;;45756:6;;;45773:17;45756:6;;45806:40;;45737:16;;45806:40;45726:128;45663:191;:::o;41035:667::-;41219:72;;-1:-1:-1;;;41219:72:0;;41198:4;;-1:-1:-1;;;;;41219:36:0;;;;;:72;;20147:10;;41270:4;;41276:7;;41285:5;;41219:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41219:72:0;;;;;;;;-1:-1:-1;;41219:72:0;;;;;;;;;;;;:::i;:::-;;;41215:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41453:13:0;;41449:235;;41499:40;;-1:-1:-1;;;41499:40:0;;;;;;;;;;;41449:235;41642:6;41636:13;41627:6;41623:2;41619:15;41612:38;41215:480;-1:-1:-1;;;;;;41338:55:0;-1:-1:-1;;;41338:55:0;;-1:-1:-1;41215:480:0;41035:667;;;;;;:::o;47040:190::-;47165:4;47218;47189:25;47202:5;47209:4;47189:12;:25::i;:::-;:33;;47040:190;-1:-1:-1;;;;47040:190:0:o;436:723::-;492:13;713:10;709:53;;-1:-1:-1;;740:10:0;;;;;;;;;;;;-1:-1:-1;;;740:10:0;;;;;436:723::o;709:53::-;787:5;772:12;828:78;835:9;;828:78;;861:8;;;;:::i;:::-;;-1:-1:-1;884:10:0;;-1:-1:-1;892:2:0;884:10;;:::i;:::-;;;828:78;;;916:19;948:6;-1:-1:-1;;;;;938:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;938:17:0;;916:39;;966:154;973:10;;966:154;;1000:11;1010:1;1000:11;;:::i;:::-;;-1:-1:-1;1069:10:0;1077:2;1069:5;:10;:::i;:::-;1056:24;;:2;:24;:::i;:::-;1043:39;;1026:6;1033;1026:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1026:56:0;;;;;;;;-1:-1:-1;1097:11:0;1106:2;1097:11;;:::i;:::-;;;966:154;;31857:1751;31980:20;32003:13;-1:-1:-1;;;;;32031:16:0;;32027:48;;32056:19;;-1:-1:-1;;;32056:19:0;;;;;;;;;;;32027:48;32090:13;32086:44;;32112:18;;-1:-1:-1;;;32112:18:0;;;;;;;;;;;32086:44;-1:-1:-1;;;;;32481:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32540:49:0;;-1:-1:-1;;;;;32481:44:0;;;;;;;32540:49;;;;-1:-1:-1;;32481:44:0;;;;;;32540:49;;;;;;;;;;;;;;;;32606:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32656:66:0;;;-1:-1:-1;;;32706:15:0;32656:66;;;;;;;;;;;;;32606:25;;32803:23;;;;3723:19;:23;32843:633;;32883:314;32914:38;;32939:12;;-1:-1:-1;;;;;32914:38:0;;;32931:1;;32914:38;;32931:1;;32914:38;32980:69;33019:1;33023:2;33027:14;;;;;;33043:5;32980:30;:69::i;:::-;32975:174;;33085:40;;-1:-1:-1;;;33085:40:0;;;;;;;;;;;32975:174;33192:3;33176:12;:19;;32883:314;;33278:12;33261:13;;:29;33257:43;;33292:8;;;33257:43;32843:633;;;33341:120;33372:40;;33397:14;;;;;-1:-1:-1;;;;;33372:40:0;;;33389:1;;33372:40;;33389:1;;33372:40;33456:3;33440:12;:19;;33341:120;;32843:633;-1:-1:-1;33490:13:0;:28;;;33540:60;;33573:2;33577:12;33591:8;33540:60;:::i;47907:296::-;47990:7;48033:4;47990:7;48048:118;48072:5;:12;48068:1;:16;48048:118;;;48121:33;48131:12;48145:5;48151:1;48145:8;;;;;;;;:::i;:::-;;;;;;;48121:9;:33::i;:::-;48106:48;-1:-1:-1;48086:3:0;;;;:::i;:::-;;;;48048:118;;;-1:-1:-1;48183:12:0;47907:296;-1:-1:-1;;;47907:296:0:o;54114:149::-;54177:7;54208:1;54204;:5;:51;;54339:13;54433:15;;;54469:4;54462:15;;;54516:4;54500:21;;54204:51;;;54339:13;54433:15;;;54469:4;54462:15;;;54516:4;54500:21;;54212:20;54271:268;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;-1:-1:-1;;;;;809:2:1;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;-1:-1:-1;;;;;2704:6:1;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:416::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;-1:-1:-1;;;;;3709:6:1;3706:30;3703:50;;;3749:1;3746;3739:12;3703:50;3772:61;3825:7;3816:6;3805:9;3801:22;3772:61;:::i;:::-;3762:71;3880:2;3865:18;;;;3852:32;;-1:-1:-1;;;;3474:416:1:o;4316:180::-;4372:6;4425:2;4413:9;4404:7;4400:23;4396:32;4393:52;;;4441:1;4438;4431:12;4393:52;4464:26;4480:9;4464:26;:::i;4501:245::-;4559:6;4612:2;4600:9;4591:7;4587:23;4583:32;4580:52;;;4628:1;4625;4618:12;4580:52;4667:9;4654:23;4686:30;4710:5;4686:30;:::i;4751:249::-;4820:6;4873:2;4861:9;4852:7;4848:23;4844:32;4841:52;;;4889:1;4886;4879:12;4841:52;4921:9;4915:16;4940:30;4964:5;4940:30;:::i;5005:450::-;5074:6;5127:2;5115:9;5106:7;5102:23;5098:32;5095:52;;;5143:1;5140;5133:12;5095:52;5183:9;5170:23;-1:-1:-1;;;;;5208:6:1;5205:30;5202:50;;;5248:1;5245;5238:12;5202:50;5271:22;;5324:4;5316:13;;5312:27;-1:-1:-1;5302:55:1;;5353:1;5350;5343:12;5302:55;5376:73;5441:7;5436:2;5423:16;5418:2;5414;5410:11;5376:73;:::i;5460:180::-;5519:6;5572:2;5560:9;5551:7;5547:23;5543:32;5540:52;;;5588:1;5585;5578:12;5540:52;-1:-1:-1;5611:23:1;;5460:180;-1:-1:-1;5460:180:1:o;5645:257::-;5686:3;5724:5;5718:12;5751:6;5746:3;5739:19;5767:63;5823:6;5816:4;5811:3;5807:14;5800:4;5793:5;5789:16;5767:63;:::i;:::-;5884:2;5863:15;-1:-1:-1;;5859:29:1;5850:39;;;;5891:4;5846:50;;5645:257;-1:-1:-1;;5645:257:1:o;5907:185::-;5949:3;5987:5;5981:12;6002:52;6047:6;6042:3;6035:4;6028:5;6024:16;6002:52;:::i;:::-;6070:16;;;;;5907:185;-1:-1:-1;;5907:185:1:o;6449:1301::-;6726:3;6755:1;6788:6;6782:13;6818:3;6840:1;6868:9;6864:2;6860:18;6850:28;;6928:2;6917:9;6913:18;6950;6940:61;;6994:4;6986:6;6982:17;6972:27;;6940:61;7020:2;7068;7060:6;7057:14;7037:18;7034:38;7031:165;;;-1:-1:-1;;;7095:33:1;;7151:4;7148:1;7141:15;7181:4;7102:3;7169:17;7031:165;7212:18;7239:104;;;;7357:1;7352:320;;;;7205:467;;7239:104;-1:-1:-1;;7272:24:1;;7260:37;;7317:16;;;;-1:-1:-1;7239:104:1;;7352:320;13084:1;13077:14;;;13121:4;13108:18;;7447:1;7461:165;7475:6;7472:1;7469:13;7461:165;;;7553:14;;7540:11;;;7533:35;7596:16;;;;7490:10;;7461:165;;;7465:3;;7655:6;7650:3;7646:16;7639:23;;7205:467;;;;;;;7688:56;7713:30;7739:3;7731:6;7713:30;:::i;:::-;-1:-1:-1;;;6157:20:1;;6202:1;6193:11;;6097:113;7688:56;7681:63;6449:1301;-1:-1:-1;;;;;6449:1301:1:o;8173:488::-;-1:-1:-1;;;;;8442:15:1;;;8424:34;;8494:15;;8489:2;8474:18;;8467:43;8541:2;8526:18;;8519:34;;;8589:3;8584:2;8569:18;;8562:31;;;8367:4;;8610:45;;8635:19;;8627:6;8610:45;:::i;:::-;8602:53;8173:488;-1:-1:-1;;;;;;8173:488:1:o;9040:219::-;9189:2;9178:9;9171:21;9152:4;9209:44;9249:2;9238:9;9234:18;9226:6;9209:44;:::i;10367:412::-;10569:2;10551:21;;;10608:2;10588:18;;;10581:30;10647:34;10642:2;10627:18;;10620:62;-1:-1:-1;;;10713:2:1;10698:18;;10691:46;10769:3;10754:19;;10367:412::o;11486:356::-;11688:2;11670:21;;;11707:18;;;11700:30;11766:34;11761:2;11746:18;;11739:62;11833:2;11818:18;;11486:356::o;12731:275::-;12802:2;12796:9;12867:2;12848:13;;-1:-1:-1;;12844:27:1;12832:40;;-1:-1:-1;;;;;12887:34:1;;12923:22;;;12884:62;12881:88;;;12949:18;;:::i;:::-;12985:2;12978:22;12731:275;;-1:-1:-1;12731:275:1:o;13137:128::-;13177:3;13208:1;13204:6;13201:1;13198:13;13195:39;;;13214:18;;:::i;:::-;-1:-1:-1;13250:9:1;;13137:128::o;13270:120::-;13310:1;13336;13326:35;;13341:18;;:::i;:::-;-1:-1:-1;13375:9:1;;13270:120::o;13395:168::-;13435:7;13501:1;13497;13493:6;13489:14;13486:1;13483:21;13478:1;13471:9;13464:17;13460:45;13457:71;;;13508:18;;:::i;:::-;-1:-1:-1;13548:9:1;;13395:168::o;13568:125::-;13608:4;13636:1;13633;13630:8;13627:34;;;13641:18;;:::i;:::-;-1:-1:-1;13678:9:1;;13568:125::o;13698:258::-;13770:1;13780:113;13794:6;13791:1;13788:13;13780:113;;;13870:11;;;13864:18;13851:11;;;13844:39;13816:2;13809:10;13780:113;;;13911:6;13908:1;13905:13;13902:48;;;-1:-1:-1;;13946:1:1;13928:16;;13921:27;13698:258::o;13961:380::-;14040:1;14036:12;;;;14083;;;14104:61;;14158:4;14150:6;14146:17;14136:27;;14104:61;14211:2;14203:6;14200:14;14180:18;14177:38;14174:161;;;14257:10;14252:3;14248:20;14245:1;14238:31;14292:4;14289:1;14282:15;14320:4;14317:1;14310:15;14174:161;;13961:380;;;:::o;14346:135::-;14385:3;-1:-1:-1;;14406:17:1;;14403:43;;;14426:18;;:::i;:::-;-1:-1:-1;14473:1:1;14462:13;;14346:135::o;14486:112::-;14518:1;14544;14534:35;;14549:18;;:::i;:::-;-1:-1:-1;14583:9:1;;14486:112::o;14603:127::-;14664:10;14659:3;14655:20;14652:1;14645:31;14695:4;14692:1;14685:15;14719:4;14716:1;14709:15;14735:127;14796:10;14791:3;14787:20;14784:1;14777:31;14827:4;14824:1;14817:15;14851:4;14848:1;14841:15;14867:127;14928:10;14923:3;14919:20;14916:1;14909:31;14959:4;14956:1;14949:15;14983:4;14980:1;14973:15;14999:127;15060:10;15055:3;15051:20;15048:1;15041:31;15091:4;15088:1;15081:15;15115:4;15112:1;15105:15;15131:131;-1:-1:-1;;;;;;15205:32:1;;15195:43;;15185:71;;15252:1;15249;15242:12

Swarm Source

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