ETH Price: $3,460.96 (+2.75%)

Token

PixelBots (PXLBTS)
 

Overview

Max Total Supply

164 PXLBTS

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
logical.eth
Balance
1 PXLBTS
0x9417AB659e81411DC3D0385B2dd27fa0a4f38392
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:
PixelBots

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIXED

// File @openzeppelin/contracts/utils/introspection/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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

// File @openzeppelin/contracts/utils/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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/utils/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/utils/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 @openzeppelin/contracts/access/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/security/[email protected]
// License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File contracts_src/PixelBots.sol
//License-Identifier: Unlicense
pragma solidity ^0.8.11;



contract PixelBots is ERC721Enumerable, Ownable, ReentrancyGuard {
    string private _baseTokenURI;
    uint256 private _maxSupply = 3000;
    uint256 private _price = 0.023 ether;
    uint256 public _reserved = 778;
    bool private _mainSaleActive = false;

    address private wal1 = 0x5ec952853A89d5684925737fF99C8dB12169Bc9e;
    address private wal2 = 0xb8258175018a494ca3E241e709e7A1E74Aef8116;
    address private wal3 = 0xdF09b919392687072AD42eE6986c861751C2559D;
    address private wal4 = 0x3D2198fC3907e9D095c2D973D7EC3f42B7C62Dfc;
    address private wal5 = 0xfaf11366F81eE8E8F0Ef47696325B0cB6B863Ea7;

    constructor() ERC721("PixelBots", "PXLBTS") {}

    function mintMainSale(uint256 num) public payable {
        uint256 supply = totalSupply();
        require(_mainSaleActive, "Main Sale is not available yet");
        require(num < 21, "Only 1 to 20 mints per transaction");
        require(
            _reserved + supply + num <= _maxSupply,
            "No more available to mint"
        );
        require(
            msg.value >= _price * num,
            "Please send correct amount of ether"
        );

        for (uint256 i = 0; i < num; i++) {
            _safeMint(msg.sender, supply + i + 1);
        }
    }

    function tokensOwnedBy(address _publicAddress)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_publicAddress);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_publicAddress, i);
        }
        return tokensId;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        _price = _newPrice;
    }

    function flipMainSale() public onlyOwner {
        _mainSaleActive = !_mainSaleActive;
    }

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

    function setBaseURI(string memory uri) public onlyOwner {
        _baseTokenURI = string(uri);
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }

    function getTokensLeft() public view returns (uint256) {
        uint256 supply = totalSupply();
        return _maxSupply - supply - _reserved;
    }

    function giveAway(address to) external onlyOwner {
        uint256 supply = totalSupply();

        if (supply + _reserved >= _maxSupply) {
            require(_reserved >= 1, "No tokens left");
            _reserved -= 1;
        }
        _safeMint(to, supply + 1);
    }

    function giveAwayMany(address[] calldata recipients) external onlyOwner {
        uint256 supply = totalSupply();
        require(
            _maxSupply - supply >= recipients.length,
            "Too large to mint this amount"
        );

        uint256 amountFromNonReserved = 0;
        if (supply + _reserved < _maxSupply) {
            amountFromNonReserved = _maxSupply - _reserved - supply;
        }

        for (uint256 i = 0; i < recipients.length; i++) {
            if (i >= amountFromNonReserved) {
                _reserved -= 1;
            }
            _safeMint(recipients[i], supply + i + 1);
        }
    }

    function withdrawAll() public payable nonReentrant {
        uint256 currAmount = address(this).balance;
        uint256 fiveP = (currAmount * 5) / 100;
        require(payable(wal1).send((currAmount * 2) / 100), "Withdraw1 Failed");
        require(payable(wal2).send(fiveP), "Withdraw2 Failed");
        require(payable(wal3).send(fiveP), "Withdraw3 Failed");
        require(payable(wal4).send(fiveP), "Withdraw4 Failed");
        require(payable(wal5).send(address(this).balance), "Withdraw5 Failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":[],"name":"_reserved","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":"flipMainSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokensLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"giveAwayMany","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"num","type":"uint256"}],"name":"mintMainSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":[{"internalType":"address","name":"_publicAddress","type":"address"}],"name":"tokensOwnedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052610bb8600d556651b660cdd58000600e5561030a600f5560108054745ec952853a89d5684925737ff99c8db12169bc9e006001600160a81b0319909116179055601180546001600160a01b031990811673b8258175018a494ca3e241e709e7a1e74aef81161790915560128054821673df09b919392687072ad42ee6986c861751c2559d179055601380548216733d2198fc3907e9d095c2d973d7ec3f42b7c62dfc1790556014805490911673faf11366f81ee8e8f0ef47696325b0cb6b863ea7179055348015620000d557600080fd5b506040805180820182526009815268506978656c426f747360b81b60208083019182528351808501909452600684526550584c42545360d01b9084015281519192916200012591600091620001b9565b5080516200013b906001906020840190620001b9565b50505062000158620001526200016360201b60201c565b62000167565b6001600b556200029c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c7906200025f565b90600052602060002090601f016020900481019282620001eb576000855562000236565b82601f106200020657805160ff191683800117855562000236565b8280016001018555821562000236579182015b828111156200023657825182559160200191906001019062000219565b506200024492915062000248565b5090565b5b8082111562000244576000815560010162000249565b600181811c908216806200027457607f821691505b602082108114156200029657634e487b7160e01b600052602260045260246000fd5b50919050565b61261980620002ac6000396000f3fe6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063de5f986611610064578063de5f9866146104e5578063e985e9c5146104fa578063ea66aeb314610543578063f2fde38b1461057057600080fd5b8063a22cb46514610470578063b775b4f314610490578063b88d4fde146104a5578063c87b56dd146104c557600080fd5b806391b7f5ed116100d157806391b7f5ed1461040657806395d89b411461042657806398d5fdca1461043b5780639e2407851461045057600080fd5b8063715018a6146103cb578063853828b6146103e05780638da5cb5b146103e857600080fd5b80632f745c591161016f57806355f804b31161013e57806355f804b3146103555780636352211e146103755780636aaa571d1461039557806370a08231146103ab57600080fd5b80632f745c59146102e257806342842e0e146103025780634a759ecc146103225780634f6ccce71461033557600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806323b872dd146102c257600080fd5b806301ffc9a7146101d257806306c40cd61461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611fa7565b610590565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611fc4565b6105bb565b005b34801561023557600080fd5b5061023e610719565b6040516101fe9190612091565b34801561025757600080fd5b5061026b6102663660046120a4565b6107ab565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e3660046120d9565b610840565b3480156102af57600080fd5b506008545b6040519081526020016101fe565b3480156102ce57600080fd5b506102276102dd366004612103565b610956565b3480156102ee57600080fd5b506102b46102fd3660046120d9565b610987565b34801561030e57600080fd5b5061022761031d366004612103565b610a1d565b6102276103303660046120a4565b610a38565b34801561034157600080fd5b506102b46103503660046120a4565b610bf1565b34801561036157600080fd5b506102276103703660046121cb565b610c84565b34801561038157600080fd5b5061026b6103903660046120a4565b610cc5565b3480156103a157600080fd5b506102b4600f5481565b3480156103b757600080fd5b506102b46103c6366004612214565b610d3c565b3480156103d757600080fd5b50610227610dc3565b610227610df9565b3480156103f457600080fd5b50600a546001600160a01b031661026b565b34801561041257600080fd5b506102276104213660046120a4565b611097565b34801561043257600080fd5b5061023e6110c6565b34801561044757600080fd5b50600e546102b4565b34801561045c57600080fd5b5061022761046b366004612214565b6110d5565b34801561047c57600080fd5b5061022761048b36600461222f565b61118e565b34801561049c57600080fd5b50610227611199565b3480156104b157600080fd5b506102276104c036600461226b565b6111d7565b3480156104d157600080fd5b5061023e6104e03660046120a4565b61120f565b3480156104f157600080fd5b506102b46112ea565b34801561050657600080fd5b506101f26105153660046122e7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054f57600080fd5b5061056361055e366004612214565b611319565b6040516101fe919061231a565b34801561057c57600080fd5b5061022761058b366004612214565b6113bb565b60006001600160e01b0319821663780e9d6360e01b14806105b557506105b582611456565b92915050565b600a546001600160a01b031633146105ee5760405162461bcd60e51b81526004016105e59061235e565b60405180910390fd5b60006105f960085490565b600d54909150829061060c9083906123a9565b101561065a5760405162461bcd60e51b815260206004820152601d60248201527f546f6f206c6172676520746f206d696e74207468697320616d6f756e7400000060448201526064016105e5565b6000600d54600f548361066d91906123c0565b10156106915781600f54600d5461068491906123a9565b61068e91906123a9565b90505b60005b83811015610712578181106106bc576001600f60008282546106b691906123a9565b90915550505b6107008585838181106106d1576106d16123d8565b90506020020160208101906106e69190612214565b6106f083866123c0565b6106fb9060016123c0565b6114a6565b8061070a816123ee565b915050610694565b5050505050565b60606000805461072890612409565b80601f016020809104026020016040519081016040528092919081815260200182805461075490612409565b80156107a15780601f10610776576101008083540402835291602001916107a1565b820191906000526020600020905b81548152906001019060200180831161078457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e5565b506000908152600460205260409020546001600160a01b031690565b600061084b82610cc5565b9050806001600160a01b0316836001600160a01b031614156108b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e5565b336001600160a01b03821614806108d557506108d58133610515565b6109475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e5565b61095183836114c0565b505050565b610960338261152e565b61097c5760405162461bcd60e51b81526004016105e590612444565b610951838383611625565b600061099283610d3c565b82106109f45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105e5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610951838383604051806020016040528060008152506111d7565b6000610a4360085490565b60105490915060ff16610a985760405162461bcd60e51b815260206004820152601e60248201527f4d61696e2053616c65206973206e6f7420617661696c61626c6520796574000060448201526064016105e5565b60158210610af35760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79203120746f203230206d696e747320706572207472616e736163746960448201526137b760f11b60648201526084016105e5565b600d548282600f54610b0591906123c0565b610b0f91906123c0565b1115610b5d5760405162461bcd60e51b815260206004820152601960248201527f4e6f206d6f726520617661696c61626c6520746f206d696e740000000000000060448201526064016105e5565b81600e54610b6b9190612495565b341015610bc65760405162461bcd60e51b815260206004820152602360248201527f506c656173652073656e6420636f727265637420616d6f756e74206f662065746044820152623432b960e91b60648201526084016105e5565b60005b8281101561095157610bdf336106f083856123c0565b80610be9816123ee565b915050610bc9565b6000610bfc60085490565b8210610c5f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105e5565b60088281548110610c7257610c726123d8565b90600052602060002001549050919050565b600a546001600160a01b03163314610cae5760405162461bcd60e51b81526004016105e59061235e565b8051610cc190600c906020840190611ef8565b5050565b6000818152600260205260408120546001600160a01b0316806105b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e5565b60006001600160a01b038216610da75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ded5760405162461bcd60e51b81526004016105e59061235e565b610df760006117d0565b565b6002600b541415610e4c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105e5565b6002600b554760006064610e61836005612495565b610e6b91906124ca565b60105490915061010090046001600160a01b03166108fc6064610e8f856002612495565b610e9991906124ca565b6040518115909202916000818181858888f19350505050610eef5760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dcc4811985a5b195960821b60448201526064016105e5565b6011546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610f575760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dcc8811985a5b195960821b60448201526064016105e5565b6012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610fbf5760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dccc811985a5b195960821b60448201526064016105e5565b6013546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506110275760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dcd0811985a5b195960821b60448201526064016105e5565b6014546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505061108e5760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dcd4811985a5b195960821b60448201526064016105e5565b50506001600b55565b600a546001600160a01b031633146110c15760405162461bcd60e51b81526004016105e59061235e565b600e55565b60606001805461072890612409565b600a546001600160a01b031633146110ff5760405162461bcd60e51b81526004016105e59061235e565b600061110a60085490565b9050600d54600f548261111d91906123c0565b1061117f576001600f5410156111665760405162461bcd60e51b815260206004820152600e60248201526d139bc81d1bdad95b9cc81b19599d60921b60448201526064016105e5565b6001600f600082825461117991906123a9565b90915550505b610cc1826106fb8360016123c0565b610cc1338383611822565b600a546001600160a01b031633146111c35760405162461bcd60e51b81526004016105e59061235e565b6010805460ff19811660ff90911615179055565b6111e1338361152e565b6111fd5760405162461bcd60e51b81526004016105e590612444565b611209848484846118f1565b50505050565b6000818152600260205260409020546060906001600160a01b031661128e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e5565b6000611298611924565b905060008151116112b857604051806020016040528060008152506112e3565b806112c284611933565b6040516020016112d39291906124de565b6040516020818303038152906040525b9392505050565b6000806112f660085490565b9050600f5481600d5461130991906123a9565b61131391906123a9565b91505090565b6060600061132683610d3c565b905060008167ffffffffffffffff8111156113435761134361213f565b60405190808252806020026020018201604052801561136c578160200160208202803683370190505b50905060005b828110156113b3576113848582610987565b828281518110611396576113966123d8565b6020908102919091010152806113ab816123ee565b915050611372565b509392505050565b600a546001600160a01b031633146113e55760405162461bcd60e51b81526004016105e59061235e565b6001600160a01b03811661144a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e5565b611453816117d0565b50565b60006001600160e01b031982166380ac58cd60e01b148061148757506001600160e01b03198216635b5e139f60e01b145b806105b557506301ffc9a760e01b6001600160e01b03198316146105b5565b610cc1828260405180602001604052806000815250611a31565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f582610cc5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e5565b60006115b283610cc5565b9050806001600160a01b0316846001600160a01b031614806115ed5750836001600160a01b03166115e2846107ab565b6001600160a01b0316145b8061161d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163882610cc5565b6001600160a01b0316146116a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e5565b6001600160a01b0382166117025760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e5565b61170d838383611a64565b6117186000826114c0565b6001600160a01b03831660009081526003602052604081208054600192906117419084906123a9565b90915550506001600160a01b038216600090815260036020526040812080546001929061176f9084906123c0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118fc848484611625565b61190884848484611b1c565b6112095760405162461bcd60e51b81526004016105e59061250d565b6060600c805461072890612409565b6060816119575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611981578061196b816123ee565b915061197a9050600a836124ca565b915061195b565b60008167ffffffffffffffff81111561199c5761199c61213f565b6040519080825280601f01601f1916602001820160405280156119c6576020820181803683370190505b5090505b841561161d576119db6001836123a9565b91506119e8600a8661255f565b6119f39060306123c0565b60f81b818381518110611a0857611a086123d8565b60200101906001600160f81b031916908160001a905350611a2a600a866124ca565b94506119ca565b611a3b8383611c1a565b611a486000848484611b1c565b6109515760405162461bcd60e51b81526004016105e59061250d565b6001600160a01b038316611abf57611aba81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ae2565b816001600160a01b0316836001600160a01b031614611ae257611ae28382611d68565b6001600160a01b038216611af95761095181611e05565b826001600160a01b0316826001600160a01b031614610951576109518282611eb4565b60006001600160a01b0384163b15611c0f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b60903390899088908890600401612573565b6020604051808303816000875af1925050508015611b9b575060408051601f3d908101601f19168201909252611b98918101906125b0565b60015b611bf5573d808015611bc9576040519150601f19603f3d011682016040523d82523d6000602084013e611bce565b606091505b508051611bed5760405162461bcd60e51b81526004016105e59061250d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061161d565b506001949350505050565b6001600160a01b038216611c705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e5565b6000818152600260205260409020546001600160a01b031615611cd55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e5565b611ce160008383611a64565b6001600160a01b0382166000908152600360205260408120805460019290611d0a9084906123c0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611d7584610d3c565b611d7f91906123a9565b600083815260076020526040902054909150808214611dd2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e17906001906123a9565b60008381526009602052604081205460088054939450909284908110611e3f57611e3f6123d8565b906000526020600020015490508060088381548110611e6057611e606123d8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e9857611e986125cd565b6001900381819060005260206000200160009055905550505050565b6000611ebf83610d3c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f0490612409565b90600052602060002090601f016020900481019282611f265760008555611f6c565b82601f10611f3f57805160ff1916838001178555611f6c565b82800160010185558215611f6c579182015b82811115611f6c578251825591602001919060010190611f51565b50611f78929150611f7c565b5090565b5b80821115611f785760008155600101611f7d565b6001600160e01b03198116811461145357600080fd5b600060208284031215611fb957600080fd5b81356112e381611f91565b60008060208385031215611fd757600080fd5b823567ffffffffffffffff80821115611fef57600080fd5b818501915085601f83011261200357600080fd5b81358181111561201257600080fd5b8660208260051b850101111561202757600080fd5b60209290920196919550909350505050565b60005b8381101561205457818101518382015260200161203c565b838111156112095750506000910152565b6000815180845261207d816020860160208601612039565b601f01601f19169290920160200192915050565b6020815260006112e36020830184612065565b6000602082840312156120b657600080fd5b5035919050565b80356001600160a01b03811681146120d457600080fd5b919050565b600080604083850312156120ec57600080fd5b6120f5836120bd565b946020939093013593505050565b60008060006060848603121561211857600080fd5b612121846120bd565b925061212f602085016120bd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121705761217061213f565b604051601f8501601f19908116603f011681019082821181831017156121985761219861213f565b816040528093508581528686860111156121b157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121dd57600080fd5b813567ffffffffffffffff8111156121f457600080fd5b8201601f8101841361220557600080fd5b61161d84823560208401612155565b60006020828403121561222657600080fd5b6112e3826120bd565b6000806040838503121561224257600080fd5b61224b836120bd565b91506020830135801515811461226057600080fd5b809150509250929050565b6000806000806080858703121561228157600080fd5b61228a856120bd565b9350612298602086016120bd565b925060408501359150606085013567ffffffffffffffff8111156122bb57600080fd5b8501601f810187136122cc57600080fd5b6122db87823560208401612155565b91505092959194509250565b600080604083850312156122fa57600080fd5b612303836120bd565b9150612311602084016120bd565b90509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561235257835183529284019291840191600101612336565b50909695505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156123bb576123bb612393565b500390565b600082198211156123d3576123d3612393565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561240257612402612393565b5060010190565b600181811c9082168061241d57607f821691505b6020821081141561243e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156124af576124af612393565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826124d9576124d96124b4565b500490565b600083516124f0818460208801612039565b835190830190612504818360208801612039565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261256e5761256e6124b4565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125a690830184612065565b9695505050505050565b6000602082840312156125c257600080fd5b81516112e381611f91565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202ac488be3df4362a9492e686530f023d809cd36a007484c2a1110c801fb877be64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063715018a6116100f7578063a22cb46511610095578063de5f986611610064578063de5f9866146104e5578063e985e9c5146104fa578063ea66aeb314610543578063f2fde38b1461057057600080fd5b8063a22cb46514610470578063b775b4f314610490578063b88d4fde146104a5578063c87b56dd146104c557600080fd5b806391b7f5ed116100d157806391b7f5ed1461040657806395d89b411461042657806398d5fdca1461043b5780639e2407851461045057600080fd5b8063715018a6146103cb578063853828b6146103e05780638da5cb5b146103e857600080fd5b80632f745c591161016f57806355f804b31161013e57806355f804b3146103555780636352211e146103755780636aaa571d1461039557806370a08231146103ab57600080fd5b80632f745c59146102e257806342842e0e146103025780634a759ecc146103225780634f6ccce71461033557600080fd5b8063081812fc116101ab578063081812fc1461024b578063095ea7b31461028357806318160ddd146102a357806323b872dd146102c257600080fd5b806301ffc9a7146101d257806306c40cd61461020757806306fdde0314610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611fa7565b610590565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610227610222366004611fc4565b6105bb565b005b34801561023557600080fd5b5061023e610719565b6040516101fe9190612091565b34801561025757600080fd5b5061026b6102663660046120a4565b6107ab565b6040516001600160a01b0390911681526020016101fe565b34801561028f57600080fd5b5061022761029e3660046120d9565b610840565b3480156102af57600080fd5b506008545b6040519081526020016101fe565b3480156102ce57600080fd5b506102276102dd366004612103565b610956565b3480156102ee57600080fd5b506102b46102fd3660046120d9565b610987565b34801561030e57600080fd5b5061022761031d366004612103565b610a1d565b6102276103303660046120a4565b610a38565b34801561034157600080fd5b506102b46103503660046120a4565b610bf1565b34801561036157600080fd5b506102276103703660046121cb565b610c84565b34801561038157600080fd5b5061026b6103903660046120a4565b610cc5565b3480156103a157600080fd5b506102b4600f5481565b3480156103b757600080fd5b506102b46103c6366004612214565b610d3c565b3480156103d757600080fd5b50610227610dc3565b610227610df9565b3480156103f457600080fd5b50600a546001600160a01b031661026b565b34801561041257600080fd5b506102276104213660046120a4565b611097565b34801561043257600080fd5b5061023e6110c6565b34801561044757600080fd5b50600e546102b4565b34801561045c57600080fd5b5061022761046b366004612214565b6110d5565b34801561047c57600080fd5b5061022761048b36600461222f565b61118e565b34801561049c57600080fd5b50610227611199565b3480156104b157600080fd5b506102276104c036600461226b565b6111d7565b3480156104d157600080fd5b5061023e6104e03660046120a4565b61120f565b3480156104f157600080fd5b506102b46112ea565b34801561050657600080fd5b506101f26105153660046122e7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561054f57600080fd5b5061056361055e366004612214565b611319565b6040516101fe919061231a565b34801561057c57600080fd5b5061022761058b366004612214565b6113bb565b60006001600160e01b0319821663780e9d6360e01b14806105b557506105b582611456565b92915050565b600a546001600160a01b031633146105ee5760405162461bcd60e51b81526004016105e59061235e565b60405180910390fd5b60006105f960085490565b600d54909150829061060c9083906123a9565b101561065a5760405162461bcd60e51b815260206004820152601d60248201527f546f6f206c6172676520746f206d696e74207468697320616d6f756e7400000060448201526064016105e5565b6000600d54600f548361066d91906123c0565b10156106915781600f54600d5461068491906123a9565b61068e91906123a9565b90505b60005b83811015610712578181106106bc576001600f60008282546106b691906123a9565b90915550505b6107008585838181106106d1576106d16123d8565b90506020020160208101906106e69190612214565b6106f083866123c0565b6106fb9060016123c0565b6114a6565b8061070a816123ee565b915050610694565b5050505050565b60606000805461072890612409565b80601f016020809104026020016040519081016040528092919081815260200182805461075490612409565b80156107a15780601f10610776576101008083540402835291602001916107a1565b820191906000526020600020905b81548152906001019060200180831161078457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e5565b506000908152600460205260409020546001600160a01b031690565b600061084b82610cc5565b9050806001600160a01b0316836001600160a01b031614156108b95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105e5565b336001600160a01b03821614806108d557506108d58133610515565b6109475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105e5565b61095183836114c0565b505050565b610960338261152e565b61097c5760405162461bcd60e51b81526004016105e590612444565b610951838383611625565b600061099283610d3c565b82106109f45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016105e5565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610951838383604051806020016040528060008152506111d7565b6000610a4360085490565b60105490915060ff16610a985760405162461bcd60e51b815260206004820152601e60248201527f4d61696e2053616c65206973206e6f7420617661696c61626c6520796574000060448201526064016105e5565b60158210610af35760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79203120746f203230206d696e747320706572207472616e736163746960448201526137b760f11b60648201526084016105e5565b600d548282600f54610b0591906123c0565b610b0f91906123c0565b1115610b5d5760405162461bcd60e51b815260206004820152601960248201527f4e6f206d6f726520617661696c61626c6520746f206d696e740000000000000060448201526064016105e5565b81600e54610b6b9190612495565b341015610bc65760405162461bcd60e51b815260206004820152602360248201527f506c656173652073656e6420636f727265637420616d6f756e74206f662065746044820152623432b960e91b60648201526084016105e5565b60005b8281101561095157610bdf336106f083856123c0565b80610be9816123ee565b915050610bc9565b6000610bfc60085490565b8210610c5f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016105e5565b60088281548110610c7257610c726123d8565b90600052602060002001549050919050565b600a546001600160a01b03163314610cae5760405162461bcd60e51b81526004016105e59061235e565b8051610cc190600c906020840190611ef8565b5050565b6000818152600260205260408120546001600160a01b0316806105b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105e5565b60006001600160a01b038216610da75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105e5565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ded5760405162461bcd60e51b81526004016105e59061235e565b610df760006117d0565b565b6002600b541415610e4c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105e5565b6002600b554760006064610e61836005612495565b610e6b91906124ca565b60105490915061010090046001600160a01b03166108fc6064610e8f856002612495565b610e9991906124ca565b6040518115909202916000818181858888f19350505050610eef5760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dcc4811985a5b195960821b60448201526064016105e5565b6011546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610f575760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dcc8811985a5b195960821b60448201526064016105e5565b6012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610fbf5760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dccc811985a5b195960821b60448201526064016105e5565b6013546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506110275760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dcd0811985a5b195960821b60448201526064016105e5565b6014546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505061108e5760405162461bcd60e51b815260206004820152601060248201526f15da5d1a191c985dcd4811985a5b195960821b60448201526064016105e5565b50506001600b55565b600a546001600160a01b031633146110c15760405162461bcd60e51b81526004016105e59061235e565b600e55565b60606001805461072890612409565b600a546001600160a01b031633146110ff5760405162461bcd60e51b81526004016105e59061235e565b600061110a60085490565b9050600d54600f548261111d91906123c0565b1061117f576001600f5410156111665760405162461bcd60e51b815260206004820152600e60248201526d139bc81d1bdad95b9cc81b19599d60921b60448201526064016105e5565b6001600f600082825461117991906123a9565b90915550505b610cc1826106fb8360016123c0565b610cc1338383611822565b600a546001600160a01b031633146111c35760405162461bcd60e51b81526004016105e59061235e565b6010805460ff19811660ff90911615179055565b6111e1338361152e565b6111fd5760405162461bcd60e51b81526004016105e590612444565b611209848484846118f1565b50505050565b6000818152600260205260409020546060906001600160a01b031661128e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105e5565b6000611298611924565b905060008151116112b857604051806020016040528060008152506112e3565b806112c284611933565b6040516020016112d39291906124de565b6040516020818303038152906040525b9392505050565b6000806112f660085490565b9050600f5481600d5461130991906123a9565b61131391906123a9565b91505090565b6060600061132683610d3c565b905060008167ffffffffffffffff8111156113435761134361213f565b60405190808252806020026020018201604052801561136c578160200160208202803683370190505b50905060005b828110156113b3576113848582610987565b828281518110611396576113966123d8565b6020908102919091010152806113ab816123ee565b915050611372565b509392505050565b600a546001600160a01b031633146113e55760405162461bcd60e51b81526004016105e59061235e565b6001600160a01b03811661144a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105e5565b611453816117d0565b50565b60006001600160e01b031982166380ac58cd60e01b148061148757506001600160e01b03198216635b5e139f60e01b145b806105b557506301ffc9a760e01b6001600160e01b03198316146105b5565b610cc1828260405180602001604052806000815250611a31565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906114f582610cc5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166115a75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105e5565b60006115b283610cc5565b9050806001600160a01b0316846001600160a01b031614806115ed5750836001600160a01b03166115e2846107ab565b6001600160a01b0316145b8061161d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661163882610cc5565b6001600160a01b0316146116a05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105e5565b6001600160a01b0382166117025760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105e5565b61170d838383611a64565b6117186000826114c0565b6001600160a01b03831660009081526003602052604081208054600192906117419084906123a9565b90915550506001600160a01b038216600090815260036020526040812080546001929061176f9084906123c0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118845760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105e5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6118fc848484611625565b61190884848484611b1c565b6112095760405162461bcd60e51b81526004016105e59061250d565b6060600c805461072890612409565b6060816119575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611981578061196b816123ee565b915061197a9050600a836124ca565b915061195b565b60008167ffffffffffffffff81111561199c5761199c61213f565b6040519080825280601f01601f1916602001820160405280156119c6576020820181803683370190505b5090505b841561161d576119db6001836123a9565b91506119e8600a8661255f565b6119f39060306123c0565b60f81b818381518110611a0857611a086123d8565b60200101906001600160f81b031916908160001a905350611a2a600a866124ca565b94506119ca565b611a3b8383611c1a565b611a486000848484611b1c565b6109515760405162461bcd60e51b81526004016105e59061250d565b6001600160a01b038316611abf57611aba81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ae2565b816001600160a01b0316836001600160a01b031614611ae257611ae28382611d68565b6001600160a01b038216611af95761095181611e05565b826001600160a01b0316826001600160a01b031614610951576109518282611eb4565b60006001600160a01b0384163b15611c0f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b60903390899088908890600401612573565b6020604051808303816000875af1925050508015611b9b575060408051601f3d908101601f19168201909252611b98918101906125b0565b60015b611bf5573d808015611bc9576040519150601f19603f3d011682016040523d82523d6000602084013e611bce565b606091505b508051611bed5760405162461bcd60e51b81526004016105e59061250d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061161d565b506001949350505050565b6001600160a01b038216611c705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105e5565b6000818152600260205260409020546001600160a01b031615611cd55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105e5565b611ce160008383611a64565b6001600160a01b0382166000908152600360205260408120805460019290611d0a9084906123c0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611d7584610d3c565b611d7f91906123a9565b600083815260076020526040902054909150808214611dd2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e17906001906123a9565b60008381526009602052604081205460088054939450909284908110611e3f57611e3f6123d8565b906000526020600020015490508060088381548110611e6057611e606123d8565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e9857611e986125cd565b6001900381819060005260206000200160009055905550505050565b6000611ebf83610d3c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f0490612409565b90600052602060002090601f016020900481019282611f265760008555611f6c565b82601f10611f3f57805160ff1916838001178555611f6c565b82800160010185558215611f6c579182015b82811115611f6c578251825591602001919060010190611f51565b50611f78929150611f7c565b5090565b5b80821115611f785760008155600101611f7d565b6001600160e01b03198116811461145357600080fd5b600060208284031215611fb957600080fd5b81356112e381611f91565b60008060208385031215611fd757600080fd5b823567ffffffffffffffff80821115611fef57600080fd5b818501915085601f83011261200357600080fd5b81358181111561201257600080fd5b8660208260051b850101111561202757600080fd5b60209290920196919550909350505050565b60005b8381101561205457818101518382015260200161203c565b838111156112095750506000910152565b6000815180845261207d816020860160208601612039565b601f01601f19169290920160200192915050565b6020815260006112e36020830184612065565b6000602082840312156120b657600080fd5b5035919050565b80356001600160a01b03811681146120d457600080fd5b919050565b600080604083850312156120ec57600080fd5b6120f5836120bd565b946020939093013593505050565b60008060006060848603121561211857600080fd5b612121846120bd565b925061212f602085016120bd565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156121705761217061213f565b604051601f8501601f19908116603f011681019082821181831017156121985761219861213f565b816040528093508581528686860111156121b157600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121dd57600080fd5b813567ffffffffffffffff8111156121f457600080fd5b8201601f8101841361220557600080fd5b61161d84823560208401612155565b60006020828403121561222657600080fd5b6112e3826120bd565b6000806040838503121561224257600080fd5b61224b836120bd565b91506020830135801515811461226057600080fd5b809150509250929050565b6000806000806080858703121561228157600080fd5b61228a856120bd565b9350612298602086016120bd565b925060408501359150606085013567ffffffffffffffff8111156122bb57600080fd5b8501601f810187136122cc57600080fd5b6122db87823560208401612155565b91505092959194509250565b600080604083850312156122fa57600080fd5b612303836120bd565b9150612311602084016120bd565b90509250929050565b6020808252825182820181905260009190848201906040850190845b8181101561235257835183529284019291840191600101612336565b50909695505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000828210156123bb576123bb612393565b500390565b600082198211156123d3576123d3612393565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561240257612402612393565b5060010190565b600181811c9082168061241d57607f821691505b6020821081141561243e57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008160001904831182151516156124af576124af612393565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826124d9576124d96124b4565b500490565b600083516124f0818460208801612039565b835190830190612504818360208801612039565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261256e5761256e6124b4565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125a690830184612065565b9695505050505050565b6000602082840312156125c257600080fd5b81516112e381611f91565b634e487b7160e01b600052603160045260246000fdfea26469706673582212202ac488be3df4362a9492e686530f023d809cd36a007484c2a1110c801fb877be64736f6c634300080b0033

Deployed Bytecode Sourcemap

47688:3849:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36091:224;;;;;;;;;;-1:-1:-1;36091:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36091:224:0;;;;;;;;50359:648;;;;;;;;;;-1:-1:-1;50359:648:0;;;;;:::i;:::-;;:::i;:::-;;22456:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24015:221::-;;;;;;;;;;-1:-1:-1;24015:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2312:32:1;;;2294:51;;2282:2;2267:18;24015:221:0;2148:203:1;23538:411:0;;;;;;;;;;-1:-1:-1;23538:411:0;;;;;:::i;:::-;;:::i;36731:113::-;;;;;;;;;;-1:-1:-1;36819:10:0;:17;36731:113;;;2939:25:1;;;2927:2;2912:18;36731:113:0;2793:177:1;24765:339:0;;;;;;;;;;-1:-1:-1;24765:339:0;;;;;:::i;:::-;;:::i;36399:256::-;;;;;;;;;;-1:-1:-1;36399:256:0;;;;;:::i;:::-;;:::i;25175:185::-;;;;;;;;;;-1:-1:-1;25175:185:0;;;;;:::i;:::-;;:::i;48376:589::-;;;;;;:::i;:::-;;:::i;36921:233::-;;;;;;;;;;-1:-1:-1;36921:233:0;;;;;:::i;:::-;;:::i;49709:102::-;;;;;;;;;;-1:-1:-1;49709:102:0;;;;;:::i;:::-;;:::i;22150:239::-;;;;;;;;;;-1:-1:-1;22150:239:0;;;;;:::i;:::-;;:::i;47878:30::-;;;;;;;;;;;;;;;;21880:208;;;;;;;;;;-1:-1:-1;21880:208:0;;;;;:::i;:::-;;:::i;43980:103::-;;;;;;;;;;;;;:::i;51015:519::-;;;:::i;43329:87::-;;;;;;;;;;-1:-1:-1;43402:6:0;;-1:-1:-1;;;;;43402:6:0;43329:87;;49386:91;;;;;;;;;;-1:-1:-1;49386:91:0;;;;;:::i;:::-;;:::i;22625:104::-;;;;;;;;;;;;;:::i;49819:82::-;;;;;;;;;;-1:-1:-1;49887:6:0;;49819:82;;50070:281;;;;;;;;;;-1:-1:-1;50070:281:0;;;;;:::i;:::-;;:::i;24308:155::-;;;;;;;;;;-1:-1:-1;24308:155:0;;;;;:::i;:::-;;:::i;49485:94::-;;;;;;;;;;;;;:::i;25431:328::-;;;;;;;;;;-1:-1:-1;25431:328:0;;;;;:::i;:::-;;:::i;22800:334::-;;;;;;;;;;-1:-1:-1;22800:334:0;;;;;:::i;:::-;;:::i;49909:153::-;;;;;;;;;;;;;:::i;24534:164::-;;;;;;;;;;-1:-1:-1;24534:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24655:25:0;;;24631:4;24655:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24534:164;48973:405;;;;;;;;;;-1:-1:-1;48973:405:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44238:201::-;;;;;;;;;;-1:-1:-1;44238:201:0;;;;;:::i;:::-;;:::i;36091:224::-;36193:4;-1:-1:-1;;;;;;36217:50:0;;-1:-1:-1;;;36217:50:0;;:90;;;36271:36;36295:11;36271:23;:36::i;:::-;36210:97;36091:224;-1:-1:-1;;36091:224:0:o;50359:648::-;43402:6;;-1:-1:-1;;;;;43402:6:0;16746:10;43549:23;43541:68;;;;-1:-1:-1;;;43541:68:0;;;;;;;:::i;:::-;;;;;;;;;50442:14:::1;50459:13;36819:10:::0;:17;;36731:113;50459:13:::1;50505:10;::::0;50442:30;;-1:-1:-1;50528:10:0;;50505:19:::1;::::0;50442:30;;50505:19:::1;:::i;:::-;:40;;50483:119;;;::::0;-1:-1:-1;;;50483:119:0;;7475:2:1;50483:119:0::1;::::0;::::1;7457:21:1::0;7514:2;7494:18;;;7487:30;7553:31;7533:18;;;7526:59;7602:18;;50483:119:0::1;7273:353:1::0;50483:119:0::1;50615:29;50684:10;;50672:9;;50663:6;:18;;;;:::i;:::-;:31;50659:119;;;50760:6;50748:9;;50735:10;;:22;;;;:::i;:::-;:31;;;;:::i;:::-;50711:55;;50659:119;50795:9;50790:210;50810:21:::0;;::::1;50790:210;;;50862:21;50857:1;:26;50853:81;;50917:1;50904:9;;:14;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50853:81:0::1;50948:40;50958:10;;50969:1;50958:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50973:10;50982:1:::0;50973:6;:10:::1;:::i;:::-;:14;::::0;50986:1:::1;50973:14;:::i;:::-;50948:9;:40::i;:::-;50833:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50790:210;;;;50431:576;;50359:648:::0;;:::o;22456:100::-;22510:13;22543:5;22536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22456:100;:::o;24015:221::-;24091:7;27358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27358:16:0;24111:73;;;;-1:-1:-1;;;24111:73:0;;8623:2:1;24111:73:0;;;8605:21:1;8662:2;8642:18;;;8635:30;8701:34;8681:18;;;8674:62;-1:-1:-1;;;8752:18:1;;;8745:42;8804:19;;24111:73:0;8421:408:1;24111:73:0;-1:-1:-1;24204:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24204:24:0;;24015:221::o;23538:411::-;23619:13;23635:23;23650:7;23635:14;:23::i;:::-;23619:39;;23683:5;-1:-1:-1;;;;;23677:11:0;:2;-1:-1:-1;;;;;23677:11:0;;;23669:57;;;;-1:-1:-1;;;23669:57:0;;9036:2:1;23669:57:0;;;9018:21:1;9075:2;9055:18;;;9048:30;9114:34;9094:18;;;9087:62;-1:-1:-1;;;9165:18:1;;;9158:31;9206:19;;23669:57:0;8834:397:1;23669:57:0;16746:10;-1:-1:-1;;;;;23761:21:0;;;;:62;;-1:-1:-1;23786:37:0;23803:5;16746:10;24534:164;:::i;23786:37::-;23739:168;;;;-1:-1:-1;;;23739:168:0;;9438:2:1;23739:168:0;;;9420:21:1;9477:2;9457:18;;;9450:30;9516:34;9496:18;;;9489:62;9587:26;9567:18;;;9560:54;9631:19;;23739:168:0;9236:420:1;23739:168:0;23920:21;23929:2;23933:7;23920:8;:21::i;:::-;23608:341;23538:411;;:::o;24765:339::-;24960:41;16746:10;24993:7;24960:18;:41::i;:::-;24952:103;;;;-1:-1:-1;;;24952:103:0;;;;;;;:::i;:::-;25068:28;25078:4;25084:2;25088:7;25068:9;:28::i;36399:256::-;36496:7;36532:23;36549:5;36532:16;:23::i;:::-;36524:5;:31;36516:87;;;;-1:-1:-1;;;36516:87:0;;10281:2:1;36516:87:0;;;10263:21:1;10320:2;10300:18;;;10293:30;10359:34;10339:18;;;10332:62;-1:-1:-1;;;10410:18:1;;;10403:41;10461:19;;36516:87:0;10079:407:1;36516:87:0;-1:-1:-1;;;;;;36621:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36399:256::o;25175:185::-;25313:39;25330:4;25336:2;25340:7;25313:39;;;;;;;;;;;;:16;:39::i;48376:589::-;48437:14;48454:13;36819:10;:17;;36731:113;48454:13;48486:15;;48437:30;;-1:-1:-1;48486:15:0;;48478:58;;;;-1:-1:-1;;;48478:58:0;;10693:2:1;48478:58:0;;;10675:21:1;10732:2;10712:18;;;10705:30;10771:32;10751:18;;;10744:60;10821:18;;48478:58:0;10491:354:1;48478:58:0;48561:2;48555:3;:8;48547:55;;;;-1:-1:-1;;;48547:55:0;;11052:2:1;48547:55:0;;;11034:21:1;11091:2;11071:18;;;11064:30;11130:34;11110:18;;;11103:62;-1:-1:-1;;;11181:18:1;;;11174:32;11223:19;;48547:55:0;10850:398:1;48547:55:0;48663:10;;48656:3;48647:6;48635:9;;:18;;;;:::i;:::-;:24;;;;:::i;:::-;:38;;48613:113;;;;-1:-1:-1;;;48613:113:0;;11455:2:1;48613:113:0;;;11437:21:1;11494:2;11474:18;;;11467:30;11533:27;11513:18;;;11506:55;11578:18;;48613:113:0;11253:349:1;48613:113:0;48781:3;48772:6;;:12;;;;:::i;:::-;48759:9;:25;;48737:110;;;;-1:-1:-1;;;48737:110:0;;11982:2:1;48737:110:0;;;11964:21:1;12021:2;12001:18;;;11994:30;12060:34;12040:18;;;12033:62;-1:-1:-1;;;12111:18:1;;;12104:33;12154:19;;48737:110:0;11780:399:1;48737:110:0;48865:9;48860:98;48884:3;48880:1;:7;48860:98;;;48909:37;48919:10;48931;48940:1;48931:6;:10;:::i;48909:37::-;48889:3;;;;:::i;:::-;;;;48860:98;;36921:233;36996:7;37032:30;36819:10;:17;;36731:113;37032:30;37024:5;:38;37016:95;;;;-1:-1:-1;;;37016:95:0;;12386:2:1;37016:95:0;;;12368:21:1;12425:2;12405:18;;;12398:30;12464:34;12444:18;;;12437:62;-1:-1:-1;;;12515:18:1;;;12508:42;12567:19;;37016:95:0;12184:408:1;37016:95:0;37129:10;37140:5;37129:17;;;;;;;;:::i;:::-;;;;;;;;;37122:24;;36921:233;;;:::o;49709:102::-;43402:6;;-1:-1:-1;;;;;43402:6:0;16746:10;43549:23;43541:68;;;;-1:-1:-1;;;43541:68:0;;;;;;;:::i;:::-;49776:27;;::::1;::::0;:13:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49709:102:::0;:::o;22150:239::-;22222:7;22258:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22258:16:0;22293:19;22285:73;;;;-1:-1:-1;;;22285:73:0;;12799:2:1;22285:73:0;;;12781:21:1;12838:2;12818:18;;;12811:30;12877:34;12857:18;;;12850:62;-1:-1:-1;;;12928:18:1;;;12921:39;12977:19;;22285:73:0;12597:405:1;21880:208:0;21952:7;-1:-1:-1;;;;;21980:19:0;;21972:74;;;;-1:-1:-1;;;21972:74:0;;13209:2:1;21972:74:0;;;13191:21:1;13248:2;13228:18;;;13221:30;13287:34;13267:18;;;13260:62;-1:-1:-1;;;13338:18:1;;;13331:40;13388:19;;21972:74:0;13007:406:1;21972:74:0;-1:-1:-1;;;;;;22064:16:0;;;;;:9;:16;;;;;;;21880:208::o;43980:103::-;43402:6;;-1:-1:-1;;;;;43402:6:0;16746:10;43549:23;43541:68;;;;-1:-1:-1;;;43541:68:0;;;;;;;:::i;:::-;44045:30:::1;44072:1;44045:18;:30::i;:::-;43980:103::o:0;51015:519::-;46639:1;47237:7;;:19;;47229:63;;;;-1:-1:-1;;;47229:63:0;;13620:2:1;47229:63:0;;;13602:21:1;13659:2;13639:18;;;13632:30;13698:33;13678:18;;;13671:61;13749:18;;47229:63:0;13418:355:1;47229:63:0;46639:1;47370:7;:18;51098:21:::1;51077:18;51165:3;51147:14;51098:21:::0;51160:1:::1;51147:14;:::i;:::-;51146:22;;;;:::i;:::-;51195:4;::::0;51130:38;;-1:-1:-1;51195:4:0::1;::::0;::::1;-1:-1:-1::0;;;;;51195:4:0::1;51187:42;51225:3;51207:14;:10:::0;51220:1:::1;51207:14;:::i;:::-;51206:22;;;;:::i;:::-;51187:42;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;51179:71;;;::::0;-1:-1:-1;;;51179:71:0;;14237:2:1;51179:71:0::1;::::0;::::1;14219:21:1::0;14276:2;14256:18;;;14249:30;-1:-1:-1;;;14295:18:1;;;14288:46;14351:18;;51179:71:0::1;14035:340:1::0;51179:71:0::1;51277:4;::::0;51269:25:::1;::::0;-1:-1:-1;;;;;51277:4:0;;::::1;::::0;51269:25;::::1;;;::::0;51288:5;;51277:4:::1;51269:25:::0;51277:4;51269:25;51288:5;51277:4;51269:25;::::1;;;;;;51261:54;;;::::0;-1:-1:-1;;;51261:54:0;;14582:2:1;51261:54:0::1;::::0;::::1;14564:21:1::0;14621:2;14601:18;;;14594:30;-1:-1:-1;;;14640:18:1;;;14633:46;14696:18;;51261:54:0::1;14380:340:1::0;51261:54:0::1;51342:4;::::0;51334:25:::1;::::0;-1:-1:-1;;;;;51342:4:0;;::::1;::::0;51334:25;::::1;;;::::0;51353:5;;51342:4:::1;51334:25:::0;51342:4;51334:25;51353:5;51342:4;51334:25;::::1;;;;;;51326:54;;;::::0;-1:-1:-1;;;51326:54:0;;14927:2:1;51326:54:0::1;::::0;::::1;14909:21:1::0;14966:2;14946:18;;;14939:30;-1:-1:-1;;;14985:18:1;;;14978:46;15041:18;;51326:54:0::1;14725:340:1::0;51326:54:0::1;51407:4;::::0;51399:25:::1;::::0;-1:-1:-1;;;;;51407:4:0;;::::1;::::0;51399:25;::::1;;;::::0;51418:5;;51407:4:::1;51399:25:::0;51407:4;51399:25;51418:5;51407:4;51399:25;::::1;;;;;;51391:54;;;::::0;-1:-1:-1;;;51391:54:0;;15272:2:1;51391:54:0::1;::::0;::::1;15254:21:1::0;15311:2;15291:18;;;15284:30;-1:-1:-1;;;15330:18:1;;;15323:46;15386:18;;51391:54:0::1;15070:340:1::0;51391:54:0::1;51472:4;::::0;51464:41:::1;::::0;-1:-1:-1;;;;;51472:4:0;;::::1;::::0;51483:21:::1;51464:41:::0;::::1;;;::::0;51472:4:::1;51464:41:::0;51472:4;51464:41;51483:21;51472:4;51464:41;::::1;;;;;;51456:70;;;::::0;-1:-1:-1;;;51456:70:0;;15617:2:1;51456:70:0::1;::::0;::::1;15599:21:1::0;15656:2;15636:18;;;15629:30;-1:-1:-1;;;15675:18:1;;;15668:46;15731:18;;51456:70:0::1;15415:340:1::0;51456:70:0::1;-1:-1:-1::0;;46595:1:0;47549:7;:22;51015:519::o;49386:91::-;43402:6;;-1:-1:-1;;;;;43402:6:0;16746:10;43549:23;43541:68;;;;-1:-1:-1;;;43541:68:0;;;;;;;:::i;:::-;49451:6:::1;:18:::0;49386:91::o;22625:104::-;22681:13;22714:7;22707:14;;;;;:::i;50070:281::-;43402:6;;-1:-1:-1;;;;;43402:6:0;16746:10;43549:23;43541:68;;;;-1:-1:-1;;;43541:68:0;;;;;;;:::i;:::-;50130:14:::1;50147:13;36819:10:::0;:17;;36731:113;50147:13:::1;50130:30;;50199:10;;50186:9;;50177:6;:18;;;;:::i;:::-;:32;50173:135;;50247:1;50234:9;;:14;;50226:41;;;::::0;-1:-1:-1;;;50226:41:0;;15962:2:1;50226:41:0::1;::::0;::::1;15944:21:1::0;16001:2;15981:18;;;15974:30;-1:-1:-1;;;16020:18:1;;;16013:44;16074:18;;50226:41:0::1;15760:338:1::0;50226:41:0::1;50295:1;50282:9;;:14;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;50173:135:0::1;50318:25;50328:2:::0;50332:10:::1;:6:::0;50341:1:::1;50332:10;:::i;24308:155::-:0;24403:52;16746:10;24436:8;24446;24403:18;:52::i;49485:94::-;43402:6;;-1:-1:-1;;;;;43402:6:0;16746:10;43549:23;43541:68;;;;-1:-1:-1;;;43541:68:0;;;;;;;:::i;:::-;49556:15:::1;::::0;;-1:-1:-1;;49537:34:0;::::1;49556:15;::::0;;::::1;49555:16;49537:34;::::0;;49485:94::o;25431:328::-;25606:41;16746:10;25639:7;25606:18;:41::i;:::-;25598:103;;;;-1:-1:-1;;;25598:103:0;;;;;;;:::i;:::-;25712:39;25726:4;25732:2;25736:7;25745:5;25712:13;:39::i;:::-;25431:328;;;;:::o;22800:334::-;27334:4;27358:16;;;:7;:16;;;;;;22873:13;;-1:-1:-1;;;;;27358:16:0;22899:76;;;;-1:-1:-1;;;22899:76:0;;16305:2:1;22899:76:0;;;16287:21:1;16344:2;16324:18;;;16317:30;16383:34;16363:18;;;16356:62;-1:-1:-1;;;16434:18:1;;;16427:45;16489:19;;22899:76:0;16103:411:1;22899:76:0;22988:21;23012:10;:8;:10::i;:::-;22988:34;;23064:1;23046:7;23040:21;:25;:86;;;;;;;;;;;;;;;;;23092:7;23101:18;:7;:16;:18::i;:::-;23075:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23040:86;23033:93;22800:334;-1:-1:-1;;;22800:334:0:o;49909:153::-;49955:7;49975:14;49992:13;36819:10;:17;;36731:113;49992:13;49975:30;;50045:9;;50036:6;50023:10;;:19;;;;:::i;:::-;:31;;;;:::i;:::-;50016:38;;;49909:153;:::o;48973:405::-;49068:16;49102:18;49123:25;49133:14;49123:9;:25::i;:::-;49102:46;;49161:25;49203:10;49189:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49189:25:0;;49161:53;;49230:9;49225:120;49249:10;49245:1;:14;49225:120;;;49295:38;49315:14;49331:1;49295:19;:38::i;:::-;49281:8;49290:1;49281:11;;;;;;;;:::i;:::-;;;;;;;;;;:52;49261:3;;;;:::i;:::-;;;;49225:120;;;-1:-1:-1;49362:8:0;48973:405;-1:-1:-1;;;48973:405:0:o;44238:201::-;43402:6;;-1:-1:-1;;;;;43402:6:0;16746:10;43549:23;43541:68;;;;-1:-1:-1;;;43541:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44327:22:0;::::1;44319:73;;;::::0;-1:-1:-1;;;44319:73:0;;17196:2:1;44319:73:0::1;::::0;::::1;17178:21:1::0;17235:2;17215:18;;;17208:30;17274:34;17254:18;;;17247:62;-1:-1:-1;;;17325:18:1;;;17318:36;17371:19;;44319:73:0::1;16994:402:1::0;44319:73:0::1;44403:28;44422:8;44403:18;:28::i;:::-;44238:201:::0;:::o;21511:305::-;21613:4;-1:-1:-1;;;;;;21650:40:0;;-1:-1:-1;;;21650:40:0;;:105;;-1:-1:-1;;;;;;;21707:48:0;;-1:-1:-1;;;21707:48:0;21650:105;:158;;;-1:-1:-1;;;;;;;;;;20036:40:0;;;21772:36;19927:157;28253:110;28329:26;28339:2;28343:7;28329:26;;;;;;;;;;;;:9;:26::i;31251:174::-;31326:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31326:29:0;-1:-1:-1;;;;;31326:29:0;;;;;;;;:24;;31380:23;31326:24;31380:14;:23::i;:::-;-1:-1:-1;;;;;31371:46:0;;;;;;;;;;;31251:174;;:::o;27563:348::-;27656:4;27358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27358:16:0;27673:73;;;;-1:-1:-1;;;27673:73:0;;17603:2:1;27673:73:0;;;17585:21:1;17642:2;17622:18;;;17615:30;17681:34;17661:18;;;17654:62;-1:-1:-1;;;17732:18:1;;;17725:42;17784:19;;27673:73:0;17401:408:1;27673:73:0;27757:13;27773:23;27788:7;27773:14;:23::i;:::-;27757:39;;27826:5;-1:-1:-1;;;;;27815:16:0;:7;-1:-1:-1;;;;;27815:16:0;;:51;;;;27859:7;-1:-1:-1;;;;;27835:31:0;:20;27847:7;27835:11;:20::i;:::-;-1:-1:-1;;;;;27835:31:0;;27815:51;:87;;;-1:-1:-1;;;;;;24655:25:0;;;24631:4;24655:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27870:32;27807:96;27563:348;-1:-1:-1;;;;27563:348:0:o;30555:578::-;30714:4;-1:-1:-1;;;;;30687:31:0;:23;30702:7;30687:14;:23::i;:::-;-1:-1:-1;;;;;30687:31:0;;30679:85;;;;-1:-1:-1;;;30679:85:0;;18016:2:1;30679:85:0;;;17998:21:1;18055:2;18035:18;;;18028:30;18094:34;18074:18;;;18067:62;-1:-1:-1;;;18145:18:1;;;18138:39;18194:19;;30679:85:0;17814:405:1;30679:85:0;-1:-1:-1;;;;;30783:16:0;;30775:65;;;;-1:-1:-1;;;30775:65:0;;18426:2:1;30775:65:0;;;18408:21:1;18465:2;18445:18;;;18438:30;18504:34;18484:18;;;18477:62;-1:-1:-1;;;18555:18:1;;;18548:34;18599:19;;30775:65:0;18224:400:1;30775:65:0;30853:39;30874:4;30880:2;30884:7;30853:20;:39::i;:::-;30957:29;30974:1;30978:7;30957:8;:29::i;:::-;-1:-1:-1;;;;;30999:15:0;;;;;;:9;:15;;;;;:20;;31018:1;;30999:15;:20;;31018:1;;30999:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31030:13:0;;;;;;:9;:13;;;;;:18;;31047:1;;31030:13;:18;;31047:1;;31030:18;:::i;:::-;;;;-1:-1:-1;;31059:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31059:21:0;-1:-1:-1;;;;;31059:21:0;;;;;;;;;31098:27;;31059:16;;31098:27;;;;;;;30555:578;;;:::o;44599:191::-;44692:6;;;-1:-1:-1;;;;;44709:17:0;;;-1:-1:-1;;;;;;44709:17:0;;;;;;;44742:40;;44692:6;;;44709:17;44692:6;;44742:40;;44673:16;;44742:40;44662:128;44599:191;:::o;31567:315::-;31722:8;-1:-1:-1;;;;;31713:17:0;:5;-1:-1:-1;;;;;31713:17:0;;;31705:55;;;;-1:-1:-1;;;31705:55:0;;18831:2:1;31705:55:0;;;18813:21:1;18870:2;18850:18;;;18843:30;18909:27;18889:18;;;18882:55;18954:18;;31705:55:0;18629:349:1;31705:55:0;-1:-1:-1;;;;;31771:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31771:46:0;;;;;;;;;;31833:41;;540::1;;;31833::0;;513:18:1;31833:41:0;;;;;;;31567:315;;;:::o;26641:::-;26798:28;26808:4;26814:2;26818:7;26798:9;:28::i;:::-;26845:48;26868:4;26874:2;26878:7;26887:5;26845:22;:48::i;:::-;26837:111;;;;-1:-1:-1;;;26837:111:0;;;;;;;:::i;49587:114::-;49647:13;49680;49673:20;;;;;:::i;17275:723::-;17331:13;17552:10;17548:53;;-1:-1:-1;;17579:10:0;;;;;;;;;;;;-1:-1:-1;;;17579:10:0;;;;;17275:723::o;17548:53::-;17626:5;17611:12;17667:78;17674:9;;17667:78;;17700:8;;;;:::i;:::-;;-1:-1:-1;17723:10:0;;-1:-1:-1;17731:2:0;17723:10;;:::i;:::-;;;17667:78;;;17755:19;17787:6;17777:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17777:17:0;;17755:39;;17805:154;17812:10;;17805:154;;17839:11;17849:1;17839:11;;:::i;:::-;;-1:-1:-1;17908:10:0;17916:2;17908:5;:10;:::i;:::-;17895:24;;:2;:24;:::i;:::-;17882:39;;17865:6;17872;17865:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17865:56:0;;;;;;;;-1:-1:-1;17936:11:0;17945:2;17936:11;;:::i;:::-;;;17805:154;;28590:321;28720:18;28726:2;28730:7;28720:5;:18::i;:::-;28771:54;28802:1;28806:2;28810:7;28819:5;28771:22;:54::i;:::-;28749:154;;;;-1:-1:-1;;;28749:154:0;;;;;;;:::i;37767:589::-;-1:-1:-1;;;;;37973:18:0;;37969:187;;38008:40;38040:7;39183:10;:17;;39156:24;;;;:15;:24;;;;;:44;;;39211:24;;;;;;;;;;;;39079:164;38008:40;37969:187;;;38078:2;-1:-1:-1;;;;;38070:10:0;:4;-1:-1:-1;;;;;38070:10:0;;38066:90;;38097:47;38130:4;38136:7;38097:32;:47::i;:::-;-1:-1:-1;;;;;38170:16:0;;38166:183;;38203:45;38240:7;38203:36;:45::i;38166:183::-;38276:4;-1:-1:-1;;;;;38270:10:0;:2;-1:-1:-1;;;;;38270:10:0;;38266:83;;38297:40;38325:2;38329:7;38297:27;:40::i;32447:799::-;32602:4;-1:-1:-1;;;;;32623:13:0;;8949:20;8997:8;32619:620;;32659:72;;-1:-1:-1;;;32659:72:0;;-1:-1:-1;;;;;32659:36:0;;;;;:72;;16746:10;;32710:4;;32716:7;;32725:5;;32659:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32659:72:0;;;;;;;;-1:-1:-1;;32659:72:0;;;;;;;;;;;;:::i;:::-;;;32655:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32901:13:0;;32897:272;;32944:60;;-1:-1:-1;;;32944:60:0;;;;;;;:::i;32897:272::-;33119:6;33113:13;33104:6;33100:2;33096:15;33089:38;32655:529;-1:-1:-1;;;;;;32782:51:0;-1:-1:-1;;;32782:51:0;;-1:-1:-1;32775:58:0;;32619:620;-1:-1:-1;33223:4:0;32447:799;;;;;;:::o;29247:382::-;-1:-1:-1;;;;;29327:16:0;;29319:61;;;;-1:-1:-1;;;29319:61:0;;20469:2:1;29319:61:0;;;20451:21:1;;;20488:18;;;20481:30;20547:34;20527:18;;;20520:62;20599:18;;29319:61:0;20267:356:1;29319:61:0;27334:4;27358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27358:16:0;:30;29391:58;;;;-1:-1:-1;;;29391:58:0;;20830:2:1;29391:58:0;;;20812:21:1;20869:2;20849:18;;;20842:30;20908;20888:18;;;20881:58;20956:18;;29391:58:0;20628:352:1;29391:58:0;29462:45;29491:1;29495:2;29499:7;29462:20;:45::i;:::-;-1:-1:-1;;;;;29520:13:0;;;;;;:9;:13;;;;;:18;;29537:1;;29520:13;:18;;29537:1;;29520:18;:::i;:::-;;;;-1:-1:-1;;29549:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29549:21:0;-1:-1:-1;;;;;29549:21:0;;;;;;;;29588:33;;29549:16;;;29588:33;;29549:16;;29588:33;29247:382;;:::o;39870:988::-;40136:22;40186:1;40161:22;40178:4;40161:16;:22::i;:::-;:26;;;;:::i;:::-;40198:18;40219:26;;;:17;:26;;;;;;40136:51;;-1:-1:-1;40352:28:0;;;40348:328;;-1:-1:-1;;;;;40419:18:0;;40397:19;40419:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40470:30;;;;;;:44;;;40587:30;;:17;:30;;;;;:43;;;40348:328;-1:-1:-1;40772:26:0;;;;:17;:26;;;;;;;;40765:33;;;-1:-1:-1;;;;;40816:18:0;;;;;:12;:18;;;;;:34;;;;;;;40809:41;39870:988::o;41153:1079::-;41431:10;:17;41406:22;;41431:21;;41451:1;;41431:21;:::i;:::-;41463:18;41484:24;;;:15;:24;;;;;;41857:10;:26;;41406:46;;-1:-1:-1;41484:24:0;;41406:46;;41857:26;;;;;;:::i;:::-;;;;;;;;;41835:48;;41921:11;41896:10;41907;41896:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42001:28;;;:15;:28;;;;;;;:41;;;42173:24;;;;;42166:31;42208:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41224:1008;;;41153:1079;:::o;38657:221::-;38742:14;38759:20;38776:2;38759:16;:20::i;:::-;-1:-1:-1;;;;;38790:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38835:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38657:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:615::-;678:6;686;739:2;727:9;718:7;714:23;710:32;707:52;;;755:1;752;745:12;707:52;795:9;782:23;824:18;865:2;857:6;854:14;851:34;;;881:1;878;871:12;851:34;919:6;908:9;904:22;894:32;;964:7;957:4;953:2;949:13;945:27;935:55;;986:1;983;976:12;935:55;1026:2;1013:16;1052:2;1044:6;1041:14;1038:34;;;1068:1;1065;1058:12;1038:34;1121:7;1116:2;1106:6;1103:1;1099:14;1095:2;1091:23;1087:32;1084:45;1081:65;;;1142:1;1139;1132:12;1081:65;1173:2;1165:11;;;;;1195:6;;-1:-1:-1;592:615:1;;-1:-1:-1;;;;592:615:1:o;1212:258::-;1284:1;1294:113;1308:6;1305:1;1302:13;1294:113;;;1384:11;;;1378:18;1365:11;;;1358:39;1330:2;1323:10;1294:113;;;1425:6;1422:1;1419:13;1416:48;;;-1:-1:-1;;1460:1:1;1442:16;;1435:27;1212:258::o;1475:::-;1517:3;1555:5;1549:12;1582:6;1577:3;1570:19;1598:63;1654:6;1647:4;1642:3;1638:14;1631:4;1624:5;1620:16;1598:63;:::i;:::-;1715:2;1694:15;-1:-1:-1;;1690:29:1;1681:39;;;;1722:4;1677:50;;1475:258;-1:-1:-1;;1475:258:1:o;1738:220::-;1887:2;1876:9;1869:21;1850:4;1907:45;1948:2;1937:9;1933:18;1925:6;1907:45;:::i;1963:180::-;2022:6;2075:2;2063:9;2054:7;2050:23;2046:32;2043:52;;;2091:1;2088;2081:12;2043:52;-1:-1:-1;2114:23:1;;1963:180;-1:-1:-1;1963:180:1:o;2356:173::-;2424:20;;-1:-1:-1;;;;;2473:31:1;;2463:42;;2453:70;;2519:1;2516;2509:12;2453:70;2356:173;;;:::o;2534:254::-;2602:6;2610;2663:2;2651:9;2642:7;2638:23;2634:32;2631:52;;;2679:1;2676;2669:12;2631:52;2702:29;2721:9;2702:29;:::i;:::-;2692:39;2778:2;2763:18;;;;2750:32;;-1:-1:-1;;;2534:254:1:o;2975:328::-;3052:6;3060;3068;3121:2;3109:9;3100:7;3096:23;3092:32;3089:52;;;3137:1;3134;3127:12;3089:52;3160:29;3179:9;3160:29;:::i;:::-;3150:39;;3208:38;3242:2;3231:9;3227:18;3208:38;:::i;:::-;3198:48;;3293:2;3282:9;3278:18;3265:32;3255:42;;2975:328;;;;;:::o;3308:127::-;3369:10;3364:3;3360:20;3357:1;3350:31;3400:4;3397:1;3390:15;3424:4;3421:1;3414:15;3440:632;3505:5;3535:18;3576:2;3568:6;3565:14;3562:40;;;3582:18;;:::i;:::-;3657:2;3651:9;3625:2;3711:15;;-1:-1:-1;;3707:24:1;;;3733:2;3703:33;3699:42;3687:55;;;3757:18;;;3777:22;;;3754:46;3751:72;;;3803:18;;:::i;:::-;3843:10;3839:2;3832:22;3872:6;3863:15;;3902:6;3894;3887:22;3942:3;3933:6;3928:3;3924:16;3921:25;3918:45;;;3959:1;3956;3949:12;3918:45;4009:6;4004:3;3997:4;3989:6;3985:17;3972:44;4064:1;4057:4;4048:6;4040;4036:19;4032:30;4025:41;;;;3440:632;;;;;:::o;4077:451::-;4146:6;4199:2;4187:9;4178:7;4174:23;4170:32;4167:52;;;4215:1;4212;4205:12;4167:52;4255:9;4242:23;4288:18;4280:6;4277:30;4274:50;;;4320:1;4317;4310:12;4274:50;4343:22;;4396:4;4388:13;;4384:27;-1:-1:-1;4374:55:1;;4425:1;4422;4415:12;4374:55;4448:74;4514:7;4509:2;4496:16;4491:2;4487;4483:11;4448:74;:::i;4533:186::-;4592:6;4645:2;4633:9;4624:7;4620:23;4616:32;4613:52;;;4661:1;4658;4651:12;4613:52;4684:29;4703:9;4684:29;:::i;4724:347::-;4789:6;4797;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;4889:29;4908:9;4889:29;:::i;:::-;4879:39;;4968:2;4957:9;4953:18;4940:32;5015:5;5008:13;5001:21;4994:5;4991:32;4981:60;;5037:1;5034;5027:12;4981:60;5060:5;5050:15;;;4724:347;;;;;:::o;5076:667::-;5171:6;5179;5187;5195;5248:3;5236:9;5227:7;5223:23;5219:33;5216:53;;;5265:1;5262;5255:12;5216:53;5288:29;5307:9;5288:29;:::i;:::-;5278:39;;5336:38;5370:2;5359:9;5355:18;5336:38;:::i;:::-;5326:48;;5421:2;5410:9;5406:18;5393:32;5383:42;;5476:2;5465:9;5461:18;5448:32;5503:18;5495:6;5492:30;5489:50;;;5535:1;5532;5525:12;5489:50;5558:22;;5611:4;5603:13;;5599:27;-1:-1:-1;5589:55:1;;5640:1;5637;5630:12;5589:55;5663:74;5729:7;5724:2;5711:16;5706:2;5702;5698:11;5663:74;:::i;:::-;5653:84;;;5076:667;;;;;;;:::o;5748:260::-;5816:6;5824;5877:2;5865:9;5856:7;5852:23;5848:32;5845:52;;;5893:1;5890;5883:12;5845:52;5916:29;5935:9;5916:29;:::i;:::-;5906:39;;5964:38;5998:2;5987:9;5983:18;5964:38;:::i;:::-;5954:48;;5748:260;;;;;:::o;6013:632::-;6184:2;6236:21;;;6306:13;;6209:18;;;6328:22;;;6155:4;;6184:2;6407:15;;;;6381:2;6366:18;;;6155:4;6450:169;6464:6;6461:1;6458:13;6450:169;;;6525:13;;6513:26;;6594:15;;;;6559:12;;;;6486:1;6479:9;6450:169;;;-1:-1:-1;6636:3:1;;6013:632;-1:-1:-1;;;;;;6013:632:1:o;6650:356::-;6852:2;6834:21;;;6871:18;;;6864:30;6930:34;6925:2;6910:18;;6903:62;6997:2;6982:18;;6650:356::o;7011:127::-;7072:10;7067:3;7063:20;7060:1;7053:31;7103:4;7100:1;7093:15;7127:4;7124:1;7117:15;7143:125;7183:4;7211:1;7208;7205:8;7202:34;;;7216:18;;:::i;:::-;-1:-1:-1;7253:9:1;;7143:125::o;7631:128::-;7671:3;7702:1;7698:6;7695:1;7692:13;7689:39;;;7708:18;;:::i;:::-;-1:-1:-1;7744:9:1;;7631:128::o;7764:127::-;7825:10;7820:3;7816:20;7813:1;7806:31;7856:4;7853:1;7846:15;7880:4;7877:1;7870:15;7896:135;7935:3;-1:-1:-1;;7956:17:1;;7953:43;;;7976:18;;:::i;:::-;-1:-1:-1;8023:1:1;8012:13;;7896:135::o;8036:380::-;8115:1;8111:12;;;;8158;;;8179:61;;8233:4;8225:6;8221:17;8211:27;;8179:61;8286:2;8278:6;8275:14;8255:18;8252:38;8249:161;;;8332:10;8327:3;8323:20;8320:1;8313:31;8367:4;8364:1;8357:15;8395:4;8392:1;8385:15;8249:161;;8036:380;;;:::o;9661:413::-;9863:2;9845:21;;;9902:2;9882:18;;;9875:30;9941:34;9936:2;9921:18;;9914:62;-1:-1:-1;;;10007:2:1;9992:18;;9985:47;10064:3;10049:19;;9661:413::o;11607:168::-;11647:7;11713:1;11709;11705:6;11701:14;11698:1;11695:21;11690:1;11683:9;11676:17;11672:45;11669:71;;;11720:18;;:::i;:::-;-1:-1:-1;11760:9:1;;11607:168::o;13778:127::-;13839:10;13834:3;13830:20;13827:1;13820:31;13870:4;13867:1;13860:15;13894:4;13891:1;13884:15;13910:120;13950:1;13976;13966:35;;13981:18;;:::i;:::-;-1:-1:-1;14015:9:1;;13910:120::o;16519:470::-;16698:3;16736:6;16730:13;16752:53;16798:6;16793:3;16786:4;16778:6;16774:17;16752:53;:::i;:::-;16868:13;;16827:16;;;;16890:57;16868:13;16827:16;16924:4;16912:17;;16890:57;:::i;:::-;16963:20;;16519:470;-1:-1:-1;;;;16519:470:1:o;18983:414::-;19185:2;19167:21;;;19224:2;19204:18;;;19197:30;19263:34;19258:2;19243:18;;19236:62;-1:-1:-1;;;19329:2:1;19314:18;;19307:48;19387:3;19372:19;;18983:414::o;19402:112::-;19434:1;19460;19450:35;;19465:18;;:::i;:::-;-1:-1:-1;19499:9:1;;19402:112::o;19519:489::-;-1:-1:-1;;;;;19788:15:1;;;19770:34;;19840:15;;19835:2;19820:18;;19813:43;19887:2;19872:18;;19865:34;;;19935:3;19930:2;19915:18;;19908:31;;;19713:4;;19956:46;;19982:19;;19974:6;19956:46;:::i;:::-;19948:54;19519:489;-1:-1:-1;;;;;;19519:489:1:o;20013:249::-;20082:6;20135:2;20123:9;20114:7;20110:23;20106:32;20103:52;;;20151:1;20148;20141:12;20103:52;20183:9;20177:16;20202:30;20226:5;20202:30;:::i;20985:127::-;21046:10;21041:3;21037:20;21034:1;21027:31;21077:4;21074:1;21067:15;21101:4;21098:1;21091:15

Swarm Source

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