ETH Price: $3,378.38 (-1.91%)
Gas: 2 Gwei

Token

BabyX (BabyX)
 

Overview

Max Total Supply

3,333 BabyX

Holders

1,541

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
inthearenatryingthings.eth
Balance
1 BabyX
0xb6d19afe6de6c1ab49b964e202ebbf6b8e590a33
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:
BabyX

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-22
*/

// SPDX-License-Identifier: GPL-3.0


/*

 ______     ______     ______     __  __        __  __    
/\  == \   /\  __ \   /\  == \   /\ \_\ \      /\_\_\_\   
\ \  __<   \ \  __ \  \ \  __<   \ \____ \     \/_/\_\/_  
 \ \_____\  \ \_\ \_\  \ \_____\  \/\_____\      /\_\/\_\ 
  \/_____/   \/_/\/_/   \/_____/   \/_____/      \/_/\/_/ 


BABY X
www.babyx.me
www.discord.gg/babyx
www.twitter.com/babyxnft


*/

// File: @openzeppelin/contracts/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/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: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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



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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/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/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/BabyX.sol


pragma solidity >=0.7.0 <0.9.0;



contract BabyX is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.03 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmount = 9;
  uint256 public nftPerAddressLimit = 18;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;


  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);

  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200020a565b50666a94d74f430000600e55610d05600f55600960105560126011819055805462ffffff1916620100001790553480156200006257600080fd5b5060405162002ed638038062002ed6833981016040819052620000859162000363565b8351849084906200009e9060009060208501906200020a565b508051620000b49060019060208401906200020a565b505050620000d1620000cb620000f160201b60201c565b620000f5565b620000dc8262000147565b620000e781620001af565b505050506200046a565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001965760405162461bcd60e51b8152602060048201819052602482015260008051602062002eb683398151915260448201526064015b60405180910390fd5b8051620001ab90600b9060208401906200020a565b5050565b600a546001600160a01b03163314620001fa5760405162461bcd60e51b8152602060048201819052602482015260008051602062002eb683398151915260448201526064016200018d565b8051620001ab90600d9060208401905b828054620002189062000417565b90600052602060002090601f0160209004810192826200023c576000855562000287565b82601f106200025757805160ff191683800117855562000287565b8280016001018555821562000287579182015b82811115620002875782518255916020019190600101906200026a565b506200029592915062000299565b5090565b5b808211156200029557600081556001016200029a565b600082601f830112620002c1578081fd5b81516001600160401b0380821115620002de57620002de62000454565b604051601f8301601f19908116603f0116810190828211818310171562000309576200030962000454565b8160405283815260209250868385880101111562000325578485fd5b8491505b8382101562000348578582018301518183018401529082019062000329565b838211156200035957848385830101525b9695505050505050565b6000806000806080858703121562000379578384fd5b84516001600160401b038082111562000390578586fd5b6200039e88838901620002b0565b95506020870151915080821115620003b4578485fd5b620003c288838901620002b0565b94506040870151915080821115620003d8578384fd5b620003e688838901620002b0565b93506060870151915080821115620003fc578283fd5b506200040b87828801620002b0565b91505092959194509250565b600181811c908216806200042c57607f821691505b602082108114156200044e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a3c806200047a6000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046125c6565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c73660046125ac565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906127cb565b3480156102fc57600080fd5b5061031061030b366004612644565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc610358366004612513565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b13660046123ea565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612436565b610b32565b34801561040557600080fd5b50610373610414366004612513565b610b63565b34801561042557600080fd5b506102976104343660046123ea565b610bf9565b34801561044557600080fd5b506102cc6104543660046125ac565b610c71565b6102cc610cb7565b34801561046d57600080fd5b506102cc61047c366004612436565b610d55565b34801561048d57600080fd5b506104a161049c3660046123ea565b610d70565b6040516102a39190612787565b3480156104ba57600080fd5b506102cc6104c9366004612644565b610e2e565b3480156104da57600080fd5b506103736104e9366004612644565b610e5d565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc6105283660046125fe565b610efe565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b50610310610562366004612644565b610f3f565b34801561057357600080fd5b506102e3610fb6565b34801561058857600080fd5b506103736105973660046123ea565b610fc3565b3480156105a857600080fd5b506102cc61104a565b3480156105bd57600080fd5b506102cc6105cc366004612644565b611080565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e36110af565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc610632366004612644565b6110be565b34801561064357600080fd5b506102cc6106523660046124ea565b6113a5565b34801561066357600080fd5b506102cc61146a565b34801561067857600080fd5b506102cc610687366004612471565b6114a5565b34801561069857600080fd5b506103106106a7366004612644565b6114dd565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e3611507565b3480156106e357600080fd5b506102e36106f2366004612644565b611514565b34801561070357600080fd5b506102cc610712366004612644565b611693565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc6107483660046125fe565b6116c2565b34801561075957600080fd5b50610297610768366004612404565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b136600461253c565b6116ff565b3480156107c257600080fd5b506102cc6107d13660046125fe565b611741565b3480156107e257600080fd5b506102cc6107f13660046123ea565b61177e565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b82611816565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612830565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461087690612944565b80601f01602080910402602001604051908101604052809291908181526020018280546108a290612944565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b90612944565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612944565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610f3f565b9050806001600160a01b0316836001600160a01b03161415610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab15750610ab18133610768565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2d8383611866565b505050565b610b3c33826118d4565b610b585760405162461bcd60e51b815260040161084b90612865565b610b2d8383836119cb565b6000610b6e83610fc3565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c6857826001600160a01b031660138281548110610c3257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c565750600192915050565b80610c608161297f565b915050610bfd565b50600092915050565b600a546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161084b90612830565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610ce15760405162461bcd60e51b815260040161084b90612830565b6000610cf5600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3f576040519150601f19603f3d011682016040523d82523d6000602084013e610d44565b606091505b5050905080610d5257600080fd5b50565b610b2d838383604051806020016040528060008152506114a5565b60606000610d7d83610fc3565b905060008167ffffffffffffffff811115610da857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610dd1578160200160208202803683370190505b50905060005b82811015610e2657610de98582610b63565b828281518110610e0957634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e1e8161297f565b915050610dd7565b509392505050565b600a546001600160a01b03163314610e585760405162461bcd60e51b815260040161084b90612830565b600e55565b6000610e6860085490565b8210610ecb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610eec57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f285760405162461bcd60e51b815260040161084b90612830565b8051610f3b90600b90602084019061223e565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b90612944565b60006001600160a01b03821661102e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110745760405162461bcd60e51b815260040161084b90612830565b61107e6000611b76565b565b600a546001600160a01b031633146110aa5760405162461bcd60e51b815260040161084b90612830565b601055565b60606001805461087690612944565b60125460ff161561110a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b600061111560085490565b9050600082116111675760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111c55760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f546111d283836128b6565b11156112195760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113555760125462010000900460ff161515600114156113035761124a33610bf9565b6112965760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b336000908152601460205260409020546011546112b384836128b6565b11156113015760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e5461131191906128e2565b3410156113555760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2d5733600090815260146020526040812080549161137a8361297f565b9091555061139390503361138e83856128b6565b611bc8565b8061139d8161297f565b915050611358565b6001600160a01b0382163314156113fe5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114945760405162461bcd60e51b815260040161084b90612830565b6012805461ff001916610100179055565b6114af33836118d4565b6114cb5760405162461bcd60e51b815260040161084b90612865565b6114d784848484611be2565b50505050565b601381815481106114ed57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b90612944565b6000818152600260205260409020546060906001600160a01b03166115935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1661163457600d80546115af90612944565b80601f01602080910402602001604051908101604052809291908181526020018280546115db90612944565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b50505050509050919050565b600061163e611c15565b9050600081511161165e576040518060200160405280600081525061168c565b8061166884611c24565b600c60405160200161167c93929190612688565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116bd5760405162461bcd60e51b815260040161084b90612830565b601155565b600a546001600160a01b031633146116ec5760405162461bcd60e51b815260040161084b90612830565b8051610f3b90600c90602084019061223e565b600a546001600160a01b031633146117295760405162461bcd60e51b815260040161084b90612830565b611735601360006122c2565b610b2d601383836122e0565b600a546001600160a01b0316331461176b5760405162461bcd60e51b815260040161084b90612830565b8051610f3b90600d90602084019061223e565b600a546001600160a01b031633146117a85760405162461bcd60e51b815260040161084b90612830565b6001600160a01b03811661180d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d5281611b76565b60006001600160e01b031982166380ac58cd60e01b148061184757506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189b82610f3f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661194d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061195883610f3f565b9050806001600160a01b0316846001600160a01b031614806119935750836001600160a01b0316611988846108f9565b6001600160a01b0316145b806119c357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119de82610f3f565b6001600160a01b031614611a465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611aa85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611ab3838383611d3e565b611abe600082611866565b6001600160a01b0383166000908152600360205260408120805460019290611ae7908490612901565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b159084906128b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f3b828260405180602001604052806000815250611df6565b611bed8484846119cb565b611bf984848484611e29565b6114d75760405162461bcd60e51b815260040161084b906127de565b6060600b805461087690612944565b606081611c485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c725780611c5c8161297f565b9150611c6b9050600a836128ce565b9150611c4c565b60008167ffffffffffffffff811115611c9b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cc5576020820181803683370190505b5090505b84156119c357611cda600183612901565b9150611ce7600a8661299a565b611cf29060306128b6565b60f81b818381518110611d1557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d37600a866128ce565b9450611cc9565b6001600160a01b038316611d9957611d9481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dbc565b816001600160a01b0316836001600160a01b031614611dbc57611dbc8382611f36565b6001600160a01b038216611dd357610b2d81611fd3565b826001600160a01b0316826001600160a01b031614610b2d57610b2d82826120ac565b611e0083836120f0565b611e0d6000848484611e29565b610b2d5760405162461bcd60e51b815260040161084b906127de565b60006001600160a01b0384163b15611f2b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e6d90339089908890889060040161274a565b602060405180830381600087803b158015611e8757600080fd5b505af1925050508015611eb7575060408051601f3d908101601f19168201909252611eb4918101906125e2565b60015b611f11573d808015611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b508051611f095760405162461bcd60e51b815260040161084b906127de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119c3565b506001949350505050565b60006001611f4384610fc3565b611f4d9190612901565b600083815260076020526040902054909150808214611fa0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fe590600190612901565b6000838152600960205260408120546008805493945090928490811061201b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061204a57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061209057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120b783610fc3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121465760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6121b760008383611d3e565b6001600160a01b03821660009081526003602052604081208054600192906121e09084906128b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461224a90612944565b90600052602060002090601f01602090048101928261226c57600085556122b2565b82601f1061228557805160ff19168380011785556122b2565b828001600101855582156122b2579182015b828111156122b2578251825591602001919060010190612297565b506122be929150612333565b5090565b5080546000825590600052602060002090810190610d529190612333565b8280548282559060005260206000209081019282156122b2579160200282015b828111156122b25781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612300565b5b808211156122be5760008155600101612334565b600067ffffffffffffffff80841115612363576123636129da565b604051601f8501601f19908116603f0116810190828211818310171561238b5761238b6129da565b816040528093508581528686860111156123a457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123d557600080fd5b919050565b803580151581146123d557600080fd5b6000602082840312156123fb578081fd5b61168c826123be565b60008060408385031215612416578081fd5b61241f836123be565b915061242d602084016123be565b90509250929050565b60008060006060848603121561244a578081fd5b612453846123be565b9250612461602085016123be565b9150604084013590509250925092565b60008060008060808587031215612486578081fd5b61248f856123be565b935061249d602086016123be565b925060408501359150606085013567ffffffffffffffff8111156124bf578182fd5b8501601f810187136124cf578182fd5b6124de87823560208401612348565b91505092959194509250565b600080604083850312156124fc578182fd5b612505836123be565b915061242d602084016123da565b60008060408385031215612525578182fd5b61252e836123be565b946020939093013593505050565b6000806020838503121561254e578182fd5b823567ffffffffffffffff80821115612565578384fd5b818501915085601f830112612578578384fd5b813581811115612586578485fd5b8660208260051b850101111561259a578485fd5b60209290920196919550909350505050565b6000602082840312156125bd578081fd5b61168c826123da565b6000602082840312156125d7578081fd5b813561168c816129f0565b6000602082840312156125f3578081fd5b815161168c816129f0565b60006020828403121561260f578081fd5b813567ffffffffffffffff811115612625578182fd5b8201601f81018413612635578182fd5b6119c384823560208401612348565b600060208284031215612655578081fd5b5035919050565b60008151808452612674816020860160208601612918565b601f01601f19169290920160200192915050565b60008451602061269b8285838a01612918565b8551918401916126ae8184848a01612918565b85549201918390600181811c90808316806126ca57607f831692505b8583108114156126e857634e487b7160e01b88526022600452602488fd5b8080156126fc576001811461270d57612739565b60ff19851688528388019550612739565b60008b815260209020895b858110156127315781548a820152908401908801612718565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277d9083018461265c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127bf578351835292840192918401916001016127a3565b50909695505050505050565b60208152600061168c602083018461265c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128c9576128c96129ae565b500190565b6000826128dd576128dd6129c4565b500490565b60008160001904831182151516156128fc576128fc6129ae565b500290565b600082821015612913576129136129ae565b500390565b60005b8381101561293357818101518382015260200161291b565b838111156114d75750506000910152565b600181811c9082168061295857607f821691505b6020821081141561297957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612993576129936129ae565b5060010190565b6000826129a9576129a96129c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5257600080fdfea26469706673582212209299451a6670555cb3c570175eb79d4c4b1f104db3fa0cc0c41b95f4f6135f0c64736f6c634300080400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000054261627958000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542616279580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f697066733a2f2f516d51477935415a4d334455564d5a6e6138397a58784a326236433150737357704152725145587444586b7739422f7669616c2e6a736f6e00

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b506102976102923660046125c6565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c73660046125ac565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906127cb565b3480156102fc57600080fd5b5061031061030b366004612644565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc610358366004612513565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b13660046123ea565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612436565b610b32565b34801561040557600080fd5b50610373610414366004612513565b610b63565b34801561042557600080fd5b506102976104343660046123ea565b610bf9565b34801561044557600080fd5b506102cc6104543660046125ac565b610c71565b6102cc610cb7565b34801561046d57600080fd5b506102cc61047c366004612436565b610d55565b34801561048d57600080fd5b506104a161049c3660046123ea565b610d70565b6040516102a39190612787565b3480156104ba57600080fd5b506102cc6104c9366004612644565b610e2e565b3480156104da57600080fd5b506103736104e9366004612644565b610e5d565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc6105283660046125fe565b610efe565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b50610310610562366004612644565b610f3f565b34801561057357600080fd5b506102e3610fb6565b34801561058857600080fd5b506103736105973660046123ea565b610fc3565b3480156105a857600080fd5b506102cc61104a565b3480156105bd57600080fd5b506102cc6105cc366004612644565b611080565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e36110af565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc610632366004612644565b6110be565b34801561064357600080fd5b506102cc6106523660046124ea565b6113a5565b34801561066357600080fd5b506102cc61146a565b34801561067857600080fd5b506102cc610687366004612471565b6114a5565b34801561069857600080fd5b506103106106a7366004612644565b6114dd565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e3611507565b3480156106e357600080fd5b506102e36106f2366004612644565b611514565b34801561070357600080fd5b506102cc610712366004612644565b611693565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc6107483660046125fe565b6116c2565b34801561075957600080fd5b50610297610768366004612404565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b136600461253c565b6116ff565b3480156107c257600080fd5b506102cc6107d13660046125fe565b611741565b3480156107e257600080fd5b506102cc6107f13660046123ea565b61177e565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b82611816565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612830565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461087690612944565b80601f01602080910402602001604051908101604052809291908181526020018280546108a290612944565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b90612944565b80601f01602080910402602001604051908101604052809291908181526020018280546109c790612944565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610f3f565b9050806001600160a01b0316836001600160a01b03161415610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab15750610ab18133610768565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2d8383611866565b505050565b610b3c33826118d4565b610b585760405162461bcd60e51b815260040161084b90612865565b610b2d8383836119cb565b6000610b6e83610fc3565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c6857826001600160a01b031660138281548110610c3257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610c565750600192915050565b80610c608161297f565b915050610bfd565b50600092915050565b600a546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161084b90612830565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610ce15760405162461bcd60e51b815260040161084b90612830565b6000610cf5600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d3f576040519150601f19603f3d011682016040523d82523d6000602084013e610d44565b606091505b5050905080610d5257600080fd5b50565b610b2d838383604051806020016040528060008152506114a5565b60606000610d7d83610fc3565b905060008167ffffffffffffffff811115610da857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610dd1578160200160208202803683370190505b50905060005b82811015610e2657610de98582610b63565b828281518110610e0957634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610e1e8161297f565b915050610dd7565b509392505050565b600a546001600160a01b03163314610e585760405162461bcd60e51b815260040161084b90612830565b600e55565b6000610e6860085490565b8210610ecb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610eec57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610f285760405162461bcd60e51b815260040161084b90612830565b8051610f3b90600b90602084019061223e565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b90612944565b60006001600160a01b03821661102e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110745760405162461bcd60e51b815260040161084b90612830565b61107e6000611b76565b565b600a546001600160a01b031633146110aa5760405162461bcd60e51b815260040161084b90612830565b601055565b60606001805461087690612944565b60125460ff161561110a5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b600061111560085490565b9050600082116111675760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111c55760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f546111d283836128b6565b11156112195760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113555760125462010000900460ff161515600114156113035761124a33610bf9565b6112965760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b336000908152601460205260409020546011546112b384836128b6565b11156113015760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e5461131191906128e2565b3410156113555760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2d5733600090815260146020526040812080549161137a8361297f565b9091555061139390503361138e83856128b6565b611bc8565b8061139d8161297f565b915050611358565b6001600160a01b0382163314156113fe5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114945760405162461bcd60e51b815260040161084b90612830565b6012805461ff001916610100179055565b6114af33836118d4565b6114cb5760405162461bcd60e51b815260040161084b90612865565b6114d784848484611be2565b50505050565b601381815481106114ed57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b90612944565b6000818152600260205260409020546060906001600160a01b03166115935760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1661163457600d80546115af90612944565b80601f01602080910402602001604051908101604052809291908181526020018280546115db90612944565b80156116285780601f106115fd57610100808354040283529160200191611628565b820191906000526020600020905b81548152906001019060200180831161160b57829003601f168201915b50505050509050919050565b600061163e611c15565b9050600081511161165e576040518060200160405280600081525061168c565b8061166884611c24565b600c60405160200161167c93929190612688565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116bd5760405162461bcd60e51b815260040161084b90612830565b601155565b600a546001600160a01b031633146116ec5760405162461bcd60e51b815260040161084b90612830565b8051610f3b90600c90602084019061223e565b600a546001600160a01b031633146117295760405162461bcd60e51b815260040161084b90612830565b611735601360006122c2565b610b2d601383836122e0565b600a546001600160a01b0316331461176b5760405162461bcd60e51b815260040161084b90612830565b8051610f3b90600d90602084019061223e565b600a546001600160a01b031633146117a85760405162461bcd60e51b815260040161084b90612830565b6001600160a01b03811661180d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d5281611b76565b60006001600160e01b031982166380ac58cd60e01b148061184757506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189b82610f3f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661194d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061195883610f3f565b9050806001600160a01b0316846001600160a01b031614806119935750836001600160a01b0316611988846108f9565b6001600160a01b0316145b806119c357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119de82610f3f565b6001600160a01b031614611a465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611aa85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611ab3838383611d3e565b611abe600082611866565b6001600160a01b0383166000908152600360205260408120805460019290611ae7908490612901565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b159084906128b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f3b828260405180602001604052806000815250611df6565b611bed8484846119cb565b611bf984848484611e29565b6114d75760405162461bcd60e51b815260040161084b906127de565b6060600b805461087690612944565b606081611c485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c725780611c5c8161297f565b9150611c6b9050600a836128ce565b9150611c4c565b60008167ffffffffffffffff811115611c9b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cc5576020820181803683370190505b5090505b84156119c357611cda600183612901565b9150611ce7600a8661299a565b611cf29060306128b6565b60f81b818381518110611d1557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d37600a866128ce565b9450611cc9565b6001600160a01b038316611d9957611d9481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611dbc565b816001600160a01b0316836001600160a01b031614611dbc57611dbc8382611f36565b6001600160a01b038216611dd357610b2d81611fd3565b826001600160a01b0316826001600160a01b031614610b2d57610b2d82826120ac565b611e0083836120f0565b611e0d6000848484611e29565b610b2d5760405162461bcd60e51b815260040161084b906127de565b60006001600160a01b0384163b15611f2b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e6d90339089908890889060040161274a565b602060405180830381600087803b158015611e8757600080fd5b505af1925050508015611eb7575060408051601f3d908101601f19168201909252611eb4918101906125e2565b60015b611f11573d808015611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b508051611f095760405162461bcd60e51b815260040161084b906127de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119c3565b506001949350505050565b60006001611f4384610fc3565b611f4d9190612901565b600083815260076020526040902054909150808214611fa0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fe590600190612901565b6000838152600960205260408120546008805493945090928490811061201b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061204a57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061209057634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006120b783610fc3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121465760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121ab5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b6121b760008383611d3e565b6001600160a01b03821660009081526003602052604081208054600192906121e09084906128b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461224a90612944565b90600052602060002090601f01602090048101928261226c57600085556122b2565b82601f1061228557805160ff19168380011785556122b2565b828001600101855582156122b2579182015b828111156122b2578251825591602001919060010190612297565b506122be929150612333565b5090565b5080546000825590600052602060002090810190610d529190612333565b8280548282559060005260206000209081019282156122b2579160200282015b828111156122b25781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612300565b5b808211156122be5760008155600101612334565b600067ffffffffffffffff80841115612363576123636129da565b604051601f8501601f19908116603f0116810190828211818310171561238b5761238b6129da565b816040528093508581528686860111156123a457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123d557600080fd5b919050565b803580151581146123d557600080fd5b6000602082840312156123fb578081fd5b61168c826123be565b60008060408385031215612416578081fd5b61241f836123be565b915061242d602084016123be565b90509250929050565b60008060006060848603121561244a578081fd5b612453846123be565b9250612461602085016123be565b9150604084013590509250925092565b60008060008060808587031215612486578081fd5b61248f856123be565b935061249d602086016123be565b925060408501359150606085013567ffffffffffffffff8111156124bf578182fd5b8501601f810187136124cf578182fd5b6124de87823560208401612348565b91505092959194509250565b600080604083850312156124fc578182fd5b612505836123be565b915061242d602084016123da565b60008060408385031215612525578182fd5b61252e836123be565b946020939093013593505050565b6000806020838503121561254e578182fd5b823567ffffffffffffffff80821115612565578384fd5b818501915085601f830112612578578384fd5b813581811115612586578485fd5b8660208260051b850101111561259a578485fd5b60209290920196919550909350505050565b6000602082840312156125bd578081fd5b61168c826123da565b6000602082840312156125d7578081fd5b813561168c816129f0565b6000602082840312156125f3578081fd5b815161168c816129f0565b60006020828403121561260f578081fd5b813567ffffffffffffffff811115612625578182fd5b8201601f81018413612635578182fd5b6119c384823560208401612348565b600060208284031215612655578081fd5b5035919050565b60008151808452612674816020860160208601612918565b601f01601f19169290920160200192915050565b60008451602061269b8285838a01612918565b8551918401916126ae8184848a01612918565b85549201918390600181811c90808316806126ca57607f831692505b8583108114156126e857634e487b7160e01b88526022600452602488fd5b8080156126fc576001811461270d57612739565b60ff19851688528388019550612739565b60008b815260209020895b858110156127315781548a820152908401908801612718565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277d9083018461265c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127bf578351835292840192918401916001016127a3565b50909695505050505050565b60208152600061168c602083018461265c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128c9576128c96129ae565b500190565b6000826128dd576128dd6129c4565b500490565b60008160001904831182151516156128fc576128fc6129ae565b500290565b600082821015612913576129136129ae565b500390565b60005b8381101561293357818101518382015260200161291b565b838111156114d75750506000910152565b600181811c9082168061295857607f821691505b6020821081141561297957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612993576129936129ae565b5060010190565b6000826129a9576129a96129c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5257600080fdfea26469706673582212209299451a6670555cb3c570175eb79d4c4b1f104db3fa0cc0c41b95f4f6135f0c64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000054261627958000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000542616279580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003f697066733a2f2f516d51477935415a4d334455564d5a6e6138397a58784a326236433150737357704152725145587444586b7739422f7669616c2e6a736f6e00

-----Decoded View---------------
Arg [0] : _name (string): BabyX
Arg [1] : _symbol (string): BabyX
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string): ipfs://QmQGy5AZM3DUVMZna89zXxJ2b6C1PssWpARrQEXtDXkw9B/vial.json

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 4261627958000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4261627958000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000003f
Arg [10] : 697066733a2f2f516d51477935415a4d334455564d5a6e6138397a58784a3262
Arg [11] : 36433150737357704152725145587444586b7739422f7669616c2e6a736f6e00


Deployed Bytecode Sourcemap

43615:4238:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37394:224;;;;;;;;;;-1:-1:-1;37394:224:0;;;;;:::i;:::-;;:::i;:::-;;;8634:14:1;;8627:22;8609:41;;8597:2;8582:18;37394:224:0;;;;;;;;47366:73;;;;;;;;;;-1:-1:-1;47366:73:0;;;;;:::i;:::-;;:::i;:::-;;25286:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26845:221::-;;;;;;;;;;-1:-1:-1;26845:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7292:32:1;;;7274:51;;7262:2;7247:18;26845:221:0;7229:102:1;43764:28:0;;;;;;;;;;;;;:::i;26368:411::-;;;;;;;;;;-1:-1:-1;26368:411:0;;;;;:::i;:::-;;:::i;43797:32::-;;;;;;;;;;;;;;;;;;;18757:25:1;;;18745:2;18730:18;43797:32:0;18712:76:1;38034:113:0;;;;;;;;;;-1:-1:-1;38122:10:0;:17;38034:113;;44095:55;;;;;;;;;;-1:-1:-1;44095:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43870:32;;;;;;;;;;;;;;;;27735:339;;;;;;;;;;-1:-1:-1;27735:339:0;;;;;:::i;:::-;;:::i;37702:256::-;;;;;;;;;;-1:-1:-1;37702:256:0;;;;;:::i;:::-;;:::i;45495:239::-;;;;;;;;;;-1:-1:-1;45495:239:0;;;;;:::i;:::-;;:::i;47447:95::-;;;;;;;;;;-1:-1:-1;47447:95:0;;;;;:::i;:::-;;:::i;47701:149::-;;;:::i;28145:185::-;;;;;;;;;;-1:-1:-1;28145:185:0;;;;;:::i;:::-;;:::i;45740:348::-;;;;;;;;;;-1:-1:-1;45740:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46798:80::-;;;;;;;;;;-1:-1:-1;46798:80:0;;;;;:::i;:::-;;:::i;38224:233::-;;;;;;;;;;-1:-1:-1;38224:233:0;;;;;:::i;:::-;;:::i;43981:28::-;;;;;;;;;;-1:-1:-1;43981:28:0;;;;;;;;;;;47006:98;;;;;;;;;;-1:-1:-1;47006:98:0;;;;;:::i;:::-;;:::i;43950:26::-;;;;;;;;;;-1:-1:-1;43950:26:0;;;;;;;;24980:239;;;;;;;;;;-1:-1:-1;24980:239:0;;;;;:::i;:::-;;:::i;43696:21::-;;;;;;;;;;;;;:::i;24710:208::-;;;;;;;;;;-1:-1:-1;24710:208:0;;;;;:::i;:::-;;:::i;4985:94::-;;;;;;;;;;;;;:::i;46884:116::-;;;;;;;;;;-1:-1:-1;46884:116:0;;;;;:::i;:::-;;:::i;4334:87::-;;;;;;;;;;-1:-1:-1;4407:6:0;;-1:-1:-1;;;;;4407:6:0;4334:87;;25455:104;;;;;;;;;;;;;:::i;44014:34::-;;;;;;;;;;-1:-1:-1;44014:34:0;;;;;;;;;;;44550:937;;;;;;:::i;:::-;;:::i;27138:295::-;;;;;;;;;;-1:-1:-1;27138:295:0;;;;;:::i;:::-;;:::i;46613:65::-;;;;;;;;;;;;;:::i;28401:328::-;;;;;;;;;;-1:-1:-1;28401:328:0;;;;;:::i;:::-;;:::i;44053:37::-;;;;;;;;;;-1:-1:-1;44053:37:0;;;;;:::i;:::-;;:::i;43907:38::-;;;;;;;;;;;;;;;;43722:37;;;;;;;;;;;;;:::i;46094:497::-;;;;;;;;;;-1:-1:-1;46094:497:0;;;;;:::i;:::-;;:::i;46686:104::-;;;;;;;;;;-1:-1:-1;46686:104:0;;;;;:::i;:::-;;:::i;43834:31::-;;;;;;;;;;;;;;;;47110:122;;;;;;;;;;-1:-1:-1;47110:122:0;;;;;:::i;:::-;;:::i;27504:164::-;;;;;;;;;;-1:-1:-1;27504:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27625:25:0;;;27601:4;27625:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27504:164;47550:144;;;;;;;;;;-1:-1:-1;47550:144:0;;;;;:::i;:::-;;:::i;47240:120::-;;;;;;;;;;-1:-1:-1;47240:120:0;;;;;:::i;:::-;;:::i;5234:192::-;;;;;;;;;;-1:-1:-1;5234:192:0;;;;;:::i;:::-;;:::i;37394:224::-;37496:4;-1:-1:-1;;;;;;37520:50:0;;-1:-1:-1;;;37520:50:0;;:90;;;37574:36;37598:11;37574:23;:36::i;:::-;37513:97;37394:224;-1:-1:-1;;37394:224:0:o;47366:73::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;;;;;;;;;47418:6:::1;:15:::0;;-1:-1:-1;;47418:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47366:73::o;25286:100::-;25340:13;25373:5;25366:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25286:100;:::o;26845:221::-;26921:7;30328:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30328:16:0;26941:73;;;;-1:-1:-1;;;26941:73:0;;14574:2:1;26941:73:0;;;14556:21:1;14613:2;14593:18;;;14586:30;14652:34;14632:18;;;14625:62;-1:-1:-1;;;14703:18:1;;;14696:42;14755:19;;26941:73:0;14546:234:1;26941:73:0;-1:-1:-1;27034:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27034:24:0;;26845:221::o;43764:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26368:411::-;26449:13;26465:23;26480:7;26465:14;:23::i;:::-;26449:39;;26513:5;-1:-1:-1;;;;;26507:11:0;:2;-1:-1:-1;;;;;26507:11:0;;;26499:57;;;;-1:-1:-1;;;26499:57:0;;16525:2:1;26499:57:0;;;16507:21:1;16564:2;16544:18;;;16537:30;16603:34;16583:18;;;16576:62;-1:-1:-1;;;16654:18:1;;;16647:31;16695:19;;26499:57:0;16497:223:1;26499:57:0;3202:10;-1:-1:-1;;;;;26591:21:0;;;;:62;;-1:-1:-1;26616:37:0;26633:5;3202:10;27504:164;:::i;26616:37::-;26569:168;;;;-1:-1:-1;;;26569:168:0;;12211:2:1;26569:168:0;;;12193:21:1;12250:2;12230:18;;;12223:30;12289:34;12269:18;;;12262:62;12360:26;12340:18;;;12333:54;12404:19;;26569:168:0;12183:246:1;26569:168:0;26750:21;26759:2;26763:7;26750:8;:21::i;:::-;26368:411;;;:::o;27735:339::-;27930:41;3202:10;27963:7;27930:18;:41::i;:::-;27922:103;;;;-1:-1:-1;;;27922:103:0;;;;;;;:::i;:::-;28038:28;28048:4;28054:2;28058:7;28038:9;:28::i;37702:256::-;37799:7;37835:23;37852:5;37835:16;:23::i;:::-;37827:5;:31;37819:87;;;;-1:-1:-1;;;37819:87:0;;9087:2:1;37819:87:0;;;9069:21:1;9126:2;9106:18;;;9099:30;9165:34;9145:18;;;9138:62;-1:-1:-1;;;9216:18:1;;;9209:41;9267:19;;37819:87:0;9059:233:1;37819:87:0;-1:-1:-1;;;;;;37924:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37702:256::o;45495:239::-;45554:4;;45567:143;45588:20;:27;45584:31;;45567:143;;;45662:5;-1:-1:-1;;;;;45635:32:0;:20;45656:1;45635:23;;;;;;-1:-1:-1;;;45635:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45635:23:0;:32;45631:72;;;-1:-1:-1;45689:4:0;;45495:239;-1:-1:-1;;45495:239:0:o;45631:72::-;45617:3;;;;:::i;:::-;;;;45567:143;;;-1:-1:-1;45723:5:0;;45495:239;-1:-1:-1;;45495:239:0:o;47447:95::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;47512:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47512:24:0;;::::1;::::0;;;::::1;::::0;;47447:95::o;47701:149::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;47756:7:::1;47777;4407:6:::0;;-1:-1:-1;;;;;4407:6:0;;4334:87;47777:7:::1;-1:-1:-1::0;;;;;47769:21:0::1;47798;47769:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47755:69;;;47839:2;47831:11;;;::::0;::::1;;4625:1;47701:149::o:0;28145:185::-;28283:39;28300:4;28306:2;28310:7;28283:39;;;;;;;;;;;;:16;:39::i;45740:348::-;45815:16;45843:23;45869:17;45879:6;45869:9;:17::i;:::-;45843:43;;45893:25;45935:15;45921:30;;;;;;-1:-1:-1;;;45921:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45921:30:0;;45893:58;;45963:9;45958:103;45978:15;45974:1;:19;45958:103;;;46023:30;46043:6;46051:1;46023:19;:30::i;:::-;46009:8;46018:1;46009:11;;;;;;-1:-1:-1;;;46009:11:0;;;;;;;;;;;;;;;;;;:44;45995:3;;;;:::i;:::-;;;;45958:103;;;-1:-1:-1;46074:8:0;45740:348;-1:-1:-1;;;45740:348:0:o;46798:80::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;46857:4:::1;:15:::0;46798:80::o;38224:233::-;38299:7;38335:30;38122:10;:17;;38034:113;38335:30;38327:5;:38;38319:95;;;;-1:-1:-1;;;38319:95:0;;17692:2:1;38319:95:0;;;17674:21:1;17731:2;17711:18;;;17704:30;17770:34;17750:18;;;17743:62;-1:-1:-1;;;17821:18:1;;;17814:42;17873:19;;38319:95:0;17664:234:1;38319:95:0;38432:10;38443:5;38432:17;;;;;;-1:-1:-1;;;38432:17:0;;;;;;;;;;;;;;;;;38425:24;;38224:233;;;:::o;47006:98::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;47077:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47006:98:::0;:::o;24980:239::-;25052:7;25088:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25088:16:0;25123:19;25115:73;;;;-1:-1:-1;;;25115:73:0;;13047:2:1;25115:73:0;;;13029:21:1;13086:2;13066:18;;;13059:30;13125:34;13105:18;;;13098:62;-1:-1:-1;;;13176:18:1;;;13169:39;13225:19;;25115:73:0;13019:231:1;43696:21:0;;;;;;;:::i;24710:208::-;24782:7;-1:-1:-1;;;;;24810:19:0;;24802:74;;;;-1:-1:-1;;;24802:74:0;;12636:2:1;24802:74:0;;;12618:21:1;12675:2;12655:18;;;12648:30;12714:34;12694:18;;;12687:62;-1:-1:-1;;;12765:18:1;;;12758:40;12815:19;;24802:74:0;12608:232:1;24802:74:0;-1:-1:-1;;;;;;24894:16:0;;;;;:9;:16;;;;;;;24710:208::o;4985:94::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;5050:21:::1;5068:1;5050:9;:21::i;:::-;4985:94::o:0;46884:116::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;46961:13:::1;:33:::0;46884:116::o;25455:104::-;25511:13;25544:7;25537:14;;;;;:::i;44550:937::-;44616:6;;;;44615:7;44607:42;;;;-1:-1:-1;;;44607:42:0;;15348:2:1;44607:42:0;;;15330:21:1;15387:2;15367:18;;;15360:30;-1:-1:-1;;;15406:18:1;;;15399:52;15468:18;;44607:42:0;15320:172:1;44607:42:0;44656:14;44673:13;38122:10;:17;;38034:113;44673:13;44656:30;;44715:1;44701:11;:15;44693:55;;;;-1:-1:-1;;;44693:55:0;;18457:2:1;44693:55:0;;;18439:21:1;18496:2;18476:18;;;18469:30;18535:29;18515:18;;;18508:57;18582:18;;44693:55:0;18429:177:1;44693:55:0;44778:13;;44763:11;:28;;44755:77;;;;-1:-1:-1;;;44755:77:0;;13808:2:1;44755:77:0;;;13790:21:1;13847:2;13827:18;;;13820:30;13886:34;13866:18;;;13859:62;-1:-1:-1;;;13937:18:1;;;13930:34;13981:19;;44755:77:0;13780:226:1;44755:77:0;44871:9;;44847:20;44856:11;44847:6;:20;:::i;:::-;:33;;44839:68;;;;-1:-1:-1;;;44839:68:0;;13457:2:1;44839:68:0;;;13439:21:1;13496:2;13476:18;;;13469:30;-1:-1:-1;;;13515:18:1;;;13508:52;13577:18;;44839:68:0;13429:172:1;44839:68:0;4407:6;;-1:-1:-1;;;;;4407:6:0;44920:10;:21;44916:416;;44957:15;;;;;;;:23;;44976:4;44957:23;44954:298;;;45005:25;45019:10;45005:13;:25::i;:::-;44997:61;;;;-1:-1:-1;;;44997:61:0;;18105:2:1;44997:61:0;;;18087:21:1;18144:2;18124:18;;;18117:30;18183:25;18163:18;;;18156:53;18226:18;;44997:61:0;18077:173:1;44997:61:0;45121:10;45073:24;45100:32;;;:20;:32;;;;;;45189:18;;45155:30;45174:11;45100:32;45155:30;:::i;:::-;:52;;45147:93;;;;-1:-1:-1;;;45147:93:0;;10682:2:1;45147:93:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760;10740:18;;;10733:58;10808:18;;45147:93:0;10654:178:1;45147:93:0;44954:298;;45290:11;45283:4;;:18;;;;:::i;:::-;45270:9;:31;;45262:62;;;;-1:-1:-1;;;45262:62:0;;16927:2:1;45262:62:0;;;16909:21:1;16966:2;16946:18;;;16939:30;-1:-1:-1;;;16985:18:1;;;16978:48;17043:18;;45262:62:0;16899:168:1;45262:62:0;45361:1;45344:138;45369:11;45364:1;:16;45344:138;;45419:10;45398:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;45441:33:0;;-1:-1:-1;45451:10:0;45463;45472:1;45463:6;:10;:::i;:::-;45441:9;:33::i;:::-;45382:3;;;;:::i;:::-;;;;45344:138;;27138:295;-1:-1:-1;;;;;27241:24:0;;3202:10;27241:24;;27233:62;;;;-1:-1:-1;;;27233:62:0;;11444:2:1;27233:62:0;;;11426:21:1;11483:2;11463:18;;;11456:30;11522:27;11502:18;;;11495:55;11567:18;;27233:62:0;11416:175:1;27233:62:0;3202:10;27308:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27308:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27308:53:0;;;;;;;;;;27377:48;;8609:41:1;;;27308:42:0;;3202:10;27377:48;;8582:18:1;27377:48:0;;;;;;;27138:295;;:::o;46613:65::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;46657:8:::1;:15:::0;;-1:-1:-1;;46657:15:0::1;;;::::0;;46613:65::o;28401:328::-;28576:41;3202:10;28609:7;28576:18;:41::i;:::-;28568:103;;;;-1:-1:-1;;;28568:103:0;;;;;;;:::i;:::-;28682:39;28696:4;28702:2;28706:7;28715:5;28682:13;:39::i;:::-;28401:328;;;;:::o;44053:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44053:37:0;;-1:-1:-1;44053:37:0;:::o;43722:::-;;;;;;;:::i;46094:497::-;30304:4;30328:16;;;:7;:16;;;;;;46192:13;;-1:-1:-1;;;;;30328:16:0;46217:97;;;;-1:-1:-1;;;46217:97:0;;16109:2:1;46217:97:0;;;16091:21:1;16148:2;16128:18;;;16121:30;16187:34;16167:18;;;16160:62;-1:-1:-1;;;16238:18:1;;;16231:45;16293:19;;46217:97:0;16081:237:1;46217:97:0;46330:8;;;;;;;46327:62;;46367:14;46360:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46094:497;;;:::o;46327:62::-;46397:28;46428:10;:8;:10::i;:::-;46397:41;;46483:1;46458:14;46452:28;:32;:133;;;;;;;;;;;;;;;;;46520:14;46536:18;:7;:16;:18::i;:::-;46556:13;46503:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46452:133;46445:140;46094:497;-1:-1:-1;;;46094:497:0:o;46686:104::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;46757:18:::1;:27:::0;46686:104::o;47110:122::-;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;47193:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47550:144::-:0;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;47625:27:::1;47632:20;;47625:27;:::i;:::-;47659:29;:20;47682:6:::0;;47659:29:::1;:::i;47240:120::-:0;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;47322:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5234:192::-:0;4407:6;;-1:-1:-1;;;;;4407:6:0;3202:10;4554:23;4546:68;;;;-1:-1:-1;;;4546:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5323:22:0;::::1;5315:73;;;::::0;-1:-1:-1;;;5315:73:0;;9918:2:1;5315:73:0::1;::::0;::::1;9900:21:1::0;9957:2;9937:18;;;9930:30;9996:34;9976:18;;;9969:62;-1:-1:-1;;;10047:18:1;;;10040:36;10093:19;;5315:73:0::1;9890:228:1::0;5315:73:0::1;5399:19;5409:8;5399:9;:19::i;24341:305::-:0;24443:4;-1:-1:-1;;;;;;24480:40:0;;-1:-1:-1;;;24480:40:0;;:105;;-1:-1:-1;;;;;;;24537:48:0;;-1:-1:-1;;;24537:48:0;24480:105;:158;;;-1:-1:-1;;;;;;;;;;16429:40:0;;;24602:36;16320:157;34221:174;34296:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34296:29:0;-1:-1:-1;;;;;34296:29:0;;;;;;;;:24;;34350:23;34296:24;34350:14;:23::i;:::-;-1:-1:-1;;;;;34341:46:0;;;;;;;;;;;34221:174;;:::o;30533:348::-;30626:4;30328:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30328:16:0;30643:73;;;;-1:-1:-1;;;30643:73:0;;11798:2:1;30643:73:0;;;11780:21:1;11837:2;11817:18;;;11810:30;11876:34;11856:18;;;11849:62;-1:-1:-1;;;11927:18:1;;;11920:42;11979:19;;30643:73:0;11770:234:1;30643:73:0;30727:13;30743:23;30758:7;30743:14;:23::i;:::-;30727:39;;30796:5;-1:-1:-1;;;;;30785:16:0;:7;-1:-1:-1;;;;;30785:16:0;;:51;;;;30829:7;-1:-1:-1;;;;;30805:31:0;:20;30817:7;30805:11;:20::i;:::-;-1:-1:-1;;;;;30805:31:0;;30785:51;:87;;;-1:-1:-1;;;;;;27625:25:0;;;27601:4;27625:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30840:32;30777:96;30533:348;-1:-1:-1;;;;30533:348:0:o;33525:578::-;33684:4;-1:-1:-1;;;;;33657:31:0;:23;33672:7;33657:14;:23::i;:::-;-1:-1:-1;;;;;33657:31:0;;33649:85;;;;-1:-1:-1;;;33649:85:0;;15699:2:1;33649:85:0;;;15681:21:1;15738:2;15718:18;;;15711:30;15777:34;15757:18;;;15750:62;-1:-1:-1;;;15828:18:1;;;15821:39;15877:19;;33649:85:0;15671:231:1;33649:85:0;-1:-1:-1;;;;;33753:16:0;;33745:65;;;;-1:-1:-1;;;33745:65:0;;11039:2:1;33745:65:0;;;11021:21:1;11078:2;11058:18;;;11051:30;11117:34;11097:18;;;11090:62;-1:-1:-1;;;11168:18:1;;;11161:34;11212:19;;33745:65:0;11011:226:1;33745:65:0;33823:39;33844:4;33850:2;33854:7;33823:20;:39::i;:::-;33927:29;33944:1;33948:7;33927:8;:29::i;:::-;-1:-1:-1;;;;;33969:15:0;;;;;;:9;:15;;;;;:20;;33988:1;;33969:15;:20;;33988:1;;33969:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34000:13:0;;;;;;:9;:13;;;;;:18;;34017:1;;34000:13;:18;;34017:1;;34000:18;:::i;:::-;;;;-1:-1:-1;;34029:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34029:21:0;-1:-1:-1;;;;;34029:21:0;;;;;;;;;34068:27;;34029:16;;34068:27;;;;;;;33525:578;;;:::o;5434:173::-;5509:6;;;-1:-1:-1;;;;;5526:17:0;;;-1:-1:-1;;;;;;5526:17:0;;;;;;;5559:40;;5509:6;;;5526:17;5509:6;;5559:40;;5490:16;;5559:40;5434:173;;:::o;31223:110::-;31299:26;31309:2;31313:7;31299:26;;;;;;;;;;;;:9;:26::i;29611:315::-;29768:28;29778:4;29784:2;29788:7;29768:9;:28::i;:::-;29815:48;29838:4;29844:2;29848:7;29857:5;29815:22;:48::i;:::-;29807:111;;;;-1:-1:-1;;;29807:111:0;;;;;;;:::i;44429:102::-;44489:13;44518:7;44511:14;;;;;:::i;738:723::-;794:13;1015:10;1011:53;;-1:-1:-1;;1042:10:0;;;;;;;;;;;;-1:-1:-1;;;1042:10:0;;;;;738:723::o;1011:53::-;1089:5;1074:12;1130:78;1137:9;;1130:78;;1163:8;;;;:::i;:::-;;-1:-1:-1;1186:10:0;;-1:-1:-1;1194:2:0;1186:10;;:::i;:::-;;;1130:78;;;1218:19;1250:6;1240:17;;;;;;-1:-1:-1;;;1240:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1240:17:0;;1218:39;;1268:154;1275:10;;1268:154;;1302:11;1312:1;1302:11;;:::i;:::-;;-1:-1:-1;1371:10:0;1379:2;1371:5;:10;:::i;:::-;1358:24;;:2;:24;:::i;:::-;1345:39;;1328:6;1335;1328:14;;;;;;-1:-1:-1;;;1328:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;1328:56:0;;;;;;;;-1:-1:-1;1399:11:0;1408:2;1399:11;;:::i;:::-;;;1268:154;;39070:589;-1:-1:-1;;;;;39276:18:0;;39272:187;;39311:40;39343:7;40486:10;:17;;40459:24;;;;:15;:24;;;;;:44;;;40514:24;;;;;;;;;;;;40382:164;39311:40;39272:187;;;39381:2;-1:-1:-1;;;;;39373:10:0;:4;-1:-1:-1;;;;;39373:10:0;;39369:90;;39400:47;39433:4;39439:7;39400:32;:47::i;:::-;-1:-1:-1;;;;;39473:16:0;;39469:183;;39506:45;39543:7;39506:36;:45::i;39469:183::-;39579:4;-1:-1:-1;;;;;39573:10:0;:2;-1:-1:-1;;;;;39573:10:0;;39569:83;;39600:40;39628:2;39632:7;39600:27;:40::i;31560:321::-;31690:18;31696:2;31700:7;31690:5;:18::i;:::-;31741:54;31772:1;31776:2;31780:7;31789:5;31741:22;:54::i;:::-;31719:154;;;;-1:-1:-1;;;31719:154:0;;;;;;;:::i;34960:799::-;35115:4;-1:-1:-1;;;;;35136:13:0;;6703:20;6751:8;35132:620;;35172:72;;-1:-1:-1;;;35172:72:0;;-1:-1:-1;;;;;35172:36:0;;;;;:72;;3202:10;;35223:4;;35229:7;;35238:5;;35172:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35172:72:0;;;;;;;;-1:-1:-1;;35172:72:0;;;;;;;;;;;;:::i;:::-;;;35168:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35414:13:0;;35410:272;;35457:60;;-1:-1:-1;;;35457:60:0;;;;;;;:::i;35410:272::-;35632:6;35626:13;35617:6;35613:2;35609:15;35602:38;35168:529;-1:-1:-1;;;;;;35295:51:0;-1:-1:-1;;;35295:51:0;;-1:-1:-1;35288:58:0;;35132:620;-1:-1:-1;35736:4:0;34960:799;;;;;;:::o;41173:988::-;41439:22;41489:1;41464:22;41481:4;41464:16;:22::i;:::-;:26;;;;:::i;:::-;41501:18;41522:26;;;:17;:26;;;;;;41439:51;;-1:-1:-1;41655:28:0;;;41651:328;;-1:-1:-1;;;;;41722:18:0;;41700:19;41722:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41773:30;;;;;;:44;;;41890:30;;:17;:30;;;;;:43;;;41651:328;-1:-1:-1;42075:26:0;;;;:17;:26;;;;;;;;42068:33;;;-1:-1:-1;;;;;42119:18:0;;;;;:12;:18;;;;;:34;;;;;;;42112:41;41173:988::o;42456:1079::-;42734:10;:17;42709:22;;42734:21;;42754:1;;42734:21;:::i;:::-;42766:18;42787:24;;;:15;:24;;;;;;43160:10;:26;;42709:46;;-1:-1:-1;42787:24:0;;42709:46;;43160:26;;;;-1:-1:-1;;;43160:26:0;;;;;;;;;;;;;;;;;43138:48;;43224:11;43199:10;43210;43199:22;;;;;;-1:-1:-1;;;43199:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;43304:28;;;:15;:28;;;;;;;:41;;;43476:24;;;;;43469:31;43511:10;:16;;;;;-1:-1:-1;;;43511:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42456:1079;;;;:::o;39960:221::-;40045:14;40062:20;40079:2;40062:16;:20::i;:::-;-1:-1:-1;;;;;40093:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40138:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39960:221:0:o;32217:382::-;-1:-1:-1;;;;;32297:16:0;;32289:61;;;;-1:-1:-1;;;32289:61:0;;14213:2:1;32289:61:0;;;14195:21:1;;;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;14343:18;;32289:61:0;14185:182:1;32289:61:0;30304:4;30328:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30328:16:0;:30;32361:58;;;;-1:-1:-1;;;32361:58:0;;10325:2:1;32361:58:0;;;10307:21:1;10364:2;10344:18;;;10337:30;10403;10383:18;;;10376:58;10451:18;;32361:58:0;10297:178:1;32361:58:0;32432:45;32461:1;32465:2;32469:7;32432:20;:45::i;:::-;-1:-1:-1;;;;;32490:13:0;;;;;;:9;:13;;;;;:18;;32507:1;;32490:13;:18;;32507:1;;32490:18;:::i;:::-;;;;-1:-1:-1;;32519:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32519:21:0;-1:-1:-1;;;;;32519:21:0;;;;;;;;32558:33;;32519:16;;;32558:33;;32519:16;;32558:33;32217:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:665::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3620:7;3615:2;3605:6;3602:1;3598:14;3594:2;3590:23;3586:32;3583:45;3580:2;;;3646:6;3638;3631:22;3580:2;3682;3674:11;;;;;3704:6;;-1:-1:-1;3156:560:1;;-1:-1:-1;;;;3156:560:1:o;3721:190::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:2;;;3851:6;3843;3836:22;3798:2;3879:26;3895:9;3879:26;:::i;3916:255::-;3974:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:2;;;4048:6;4040;4033:22;3995:2;4092:9;4079:23;4111:30;4135:5;4111:30;:::i;4176:259::-;4245:6;4298:2;4286:9;4277:7;4273:23;4269:32;4266:2;;;4319:6;4311;4304:22;4266:2;4356:9;4350:16;4375:30;4399:5;4375:30;:::i;4440:480::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:2;;;4583:6;4575;4568:22;4530:2;4628:9;4615:23;4661:18;4653:6;4650:30;4647:2;;;4698:6;4690;4683:22;4647:2;4726:22;;4779:4;4771:13;;4767:27;-1:-1:-1;4757:2:1;;4813:6;4805;4798:22;4757:2;4841:73;4906:7;4901:2;4888:16;4883:2;4879;4875:11;4841:73;:::i;4925:190::-;4984:6;5037:2;5025:9;5016:7;5012:23;5008:32;5005:2;;;5058:6;5050;5043:22;5005:2;-1:-1:-1;5086:23:1;;4995:120;-1:-1:-1;4995:120:1:o;5120:257::-;5161:3;5199:5;5193:12;5226:6;5221:3;5214:19;5242:63;5298:6;5291:4;5286:3;5282:14;5275:4;5268:5;5264:16;5242:63;:::i;:::-;5359:2;5338:15;-1:-1:-1;;5334:29:1;5325:39;;;;5366:4;5321:50;;5169:208;-1:-1:-1;;5169:208:1:o;5382:1531::-;5606:3;5644:6;5638:13;5670:4;5683:51;5727:6;5722:3;5717:2;5709:6;5705:15;5683:51;:::i;:::-;5797:13;;5756:16;;;;5819:55;5797:13;5756:16;5841:15;;;5819:55;:::i;:::-;5965:13;;5896:20;;;5936:3;;6025:1;6047:18;;;;6100;;;;6127:2;;6205:4;6195:8;6191:19;6179:31;;6127:2;6268;6258:8;6255:16;6235:18;6232:40;6229:2;;;-1:-1:-1;;;6295:33:1;;6351:4;6348:1;6341:15;6381:4;6302:3;6369:17;6229:2;6412:18;6439:110;;;;6563:1;6558:330;;;;6405:483;;6439:110;-1:-1:-1;;6474:24:1;;6460:39;;6519:20;;;;-1:-1:-1;6439:110:1;;6558:330;18840:4;18859:17;;;18909:4;18893:21;;6653:3;6669:169;6683:8;6680:1;6677:15;6669:169;;;6765:14;;6750:13;;;6743:37;6808:16;;;;6700:10;;6669:169;;;6673:3;;6869:8;6862:5;6858:20;6851:27;;6405:483;-1:-1:-1;6904:3:1;;5614:1299;-1:-1:-1;;;;;;;;;;;5614:1299:1:o;7336:488::-;-1:-1:-1;;;;;7605:15:1;;;7587:34;;7657:15;;7652:2;7637:18;;7630:43;7704:2;7689:18;;7682:34;;;7752:3;7747:2;7732:18;;7725:31;;;7530:4;;7773:45;;7798:19;;7790:6;7773:45;:::i;:::-;7765:53;7539:285;-1:-1:-1;;;;;;7539:285:1:o;7829:635::-;8000:2;8052:21;;;8122:13;;8025:18;;;8144:22;;;7971:4;;8000:2;8223:15;;;;8197:2;8182:18;;;7971:4;8269:169;8283:6;8280:1;8277:13;8269:169;;;8344:13;;8332:26;;8413:15;;;;8378:12;;;;8305:1;8298:9;8269:169;;;-1:-1:-1;8455:3:1;;7980:484;-1:-1:-1;;;;;;7980:484:1:o;8661:219::-;8810:2;8799:9;8792:21;8773:4;8830:44;8870:2;8859:9;8855:18;8847:6;8830:44;:::i;9297:414::-;9499:2;9481:21;;;9538:2;9518:18;;;9511:30;9577:34;9572:2;9557:18;;9550:62;-1:-1:-1;;;9643:2:1;9628:18;;9621:48;9701:3;9686:19;;9471:240::o;14785:356::-;14987:2;14969:21;;;15006:18;;;14999:30;15065:34;15060:2;15045:18;;15038:62;15132:2;15117:18;;14959:182::o;17072:413::-;17274:2;17256:21;;;17313:2;17293:18;;;17286:30;17352:34;17347:2;17332:18;;17325:62;-1:-1:-1;;;17418:2:1;17403:18;;17396:47;17475:3;17460:19;;17246:239::o;18925:128::-;18965:3;18996:1;18992:6;18989:1;18986:13;18983:2;;;19002:18;;:::i;:::-;-1:-1:-1;19038:9:1;;18973:80::o;19058:120::-;19098:1;19124;19114:2;;19129:18;;:::i;:::-;-1:-1:-1;19163:9:1;;19104:74::o;19183:168::-;19223:7;19289:1;19285;19281:6;19277:14;19274:1;19271:21;19266:1;19259:9;19252:17;19248:45;19245:2;;;19296:18;;:::i;:::-;-1:-1:-1;19336:9:1;;19235:116::o;19356:125::-;19396:4;19424:1;19421;19418:8;19415:2;;;19429:18;;:::i;:::-;-1:-1:-1;19466:9:1;;19405:76::o;19486:258::-;19558:1;19568:113;19582:6;19579:1;19576:13;19568:113;;;19658:11;;;19652:18;19639:11;;;19632:39;19604:2;19597:10;19568:113;;;19699:6;19696:1;19693:13;19690:2;;;-1:-1:-1;;19734:1:1;19716:16;;19709:27;19539:205::o;19749:380::-;19828:1;19824:12;;;;19871;;;19892:2;;19946:4;19938:6;19934:17;19924:27;;19892:2;19999;19991:6;19988:14;19968:18;19965:38;19962:2;;;20045:10;20040:3;20036:20;20033:1;20026:31;20080:4;20077:1;20070:15;20108:4;20105:1;20098:15;19962:2;;19804:325;;;:::o;20134:135::-;20173:3;-1:-1:-1;;20194:17:1;;20191:2;;;20214:18;;:::i;:::-;-1:-1:-1;20261:1:1;20250:13;;20181:88::o;20274:112::-;20306:1;20332;20322:2;;20337:18;;:::i;:::-;-1:-1:-1;20371:9:1;;20312:74::o;20391:127::-;20452:10;20447:3;20443:20;20440:1;20433:31;20483:4;20480:1;20473:15;20507:4;20504:1;20497:15;20523:127;20584:10;20579:3;20575:20;20572:1;20565:31;20615:4;20612:1;20605:15;20639:4;20636:1;20629:15;20655:127;20716:10;20711:3;20707:20;20704:1;20697:31;20747:4;20744:1;20737:15;20771:4;20768:1;20761:15;20787:131;-1:-1:-1;;;;;;20861:32:1;;20851:43;;20841:2;;20908:1;20905;20898:12

Swarm Source

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